Send LLM output to a browser-based feedback and commenting UI for review. Use when the user wants to annotate, comment on, or edit an LLM response with inline track changes and structured feedback export.
Install
npx skillscat add ryanlchan/hmm Install via the SkillsCat registry.
SKILL.md
Send your last response to the llm-feedback commenting UI for review.
Steps
- Determine the skill root directory (the directory containing this
SKILL.mdfile). - Write your last response to a temporary file:
TMPDIR=$(mktemp -d) cat > "$TMPDIR/.hmm_preload.txt" << 'PRELOAD_EOF' <your last response here> PRELOAD_EOF - Run the serve script, passing the preload file:
bash <skill-root>/scripts/serve.sh "$TMPDIR/.hmm_preload.txt" - Tell the user the feedback UI is open at http://localhost:8723.
What the UI does
- Displays the text in an editable view with inline track changes
- Users can select text and add comments
- The "Summarize" button exports all comments and edits as structured markdown
- Supports both desktop (sidebar comments) and mobile (bottom sheet) layouts