ryanlchan

hmm

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.

ryanlchan 0 Updated 4mo ago
GitHub

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

  1. Determine the skill root directory (the directory containing this SKILL.md file).
  2. Write your last response to a temporary file:
    TMPDIR=$(mktemp -d)
    cat > "$TMPDIR/.hmm_preload.txt" << 'PRELOAD_EOF'
    <your last response here>
    PRELOAD_EOF
  3. Run the serve script, passing the preload file:
    bash <skill-root>/scripts/serve.sh "$TMPDIR/.hmm_preload.txt"
  4. 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