Feedback triage
This skill should be used when the user asks to "process beta reader feedback", "alpha reader feedback", "feedback round", "synthesize reader feedback", "reader notes", "beta feedback", "readiness check", or wants to collect, reconcile, and act on external reader feedback for a story project.
How to use it
Claude Code
- Run the line below. It pulls the whole folder into
~/.claude/skills/feedback-triage, including the files SKILL.md points to. - Describe your job in plain words. Claude Code follows the skill from there.
npx degit danjdewhurst/story-skills/skills/feedback-triage#main ~/.claude/skills/feedback-triageFor one project only, change the path to .claude/skills/feedback-triage. This skill also uses story.md — copying SKILL.md alone won't be enough. See the folder on GitHub.
Claude (web or desktop app)
- On this page open ⋯ → Download .md.
- Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
- Pick the file and Save. Claude shows the name and description and runs a security scan.
- Check the skill is switched on.
- Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
- ChatGPT: make a Project and paste it into Instructions.
- Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
- Check which app you pasted it into — the steps above name the right one.
- Some skills need the paid tier of Claude or ChatGPT.
Paste into Claude, ChatGPT or Cursor.
Source of Feedback triage
Show the full text120 lines
| name | description |
|---|---|
| feedback-triage | This skill should be used when the user asks to "process beta reader feedback", "alpha reader feedback", "feedback round", "synthesize reader feedback", "reader notes", "beta feedback", "readiness check", or wants to collect, reconcile, and act on external reader feedback for a story project. |
Feedback Triage
Overview
Process alpha/beta reader feedback as a structured, reconcilable workflow:
collect per-reader feedback files, hold all revision until the round is
complete, synthesize convergent/divergent/single-reader findings into a
decision record with a readiness verdict, and hand a concrete revision plan
to the revision-continuity skill.
Prerequisites
A story project with at least one drafted chapter (or a complete draft) that
readers have read. Verify story.md exists in the project root.
When to Use
- Starting a feedback round (recruiting readers, sending chapters out)
- Recording feedback as it arrives
- Synthesizing a completed round into decisions
- NOT for revising the manuscript (use
revision-continuitywith the synthesis's revision plan) - NOT for the agent's own critique of the draft (use
revision-continuityaudits; reader feedback is external input)
Workflow
1. Set up the round
- Decide the round scope: which chapters readers get (
chapters-readrange) and how many readers (2–4 per round is typical; one reader is a data point, not a round). - Create the round folder:
feedback/round-{N}/. - For each expected reader, create a stub file from
references/feedback-template.mdatfeedback/round-{N}/{reader-kebab}.mdwith frontmatter filled in and the body sections empty. The stub list is the round's checklist.
2. Collect feedback (the discipline)
- As each reader's notes arrive, record them in their file using the template. Quote or closely paraphrase; do not editorialize yet.
- Run the canon check on each problem note: verified against the bible, contradicts canon (usually a setup problem — note the canon file), or outside canon scope. Record the result in the file.
- Do NOT revise until all feedback for the round is in. Revising on partial feedback optimizes for the first reader and invalidates the others' reads. If a reader is late, either wait or formally close the round without them (note it in the synthesis) — never silently proceed on a partial set.
3. Synthesize
Only when every expected reader file is collected:
- Read all reader files for the round.
- Sort every finding into exactly one category:
- Convergent — ≥2 readers agree independently. Strongest signal; becomes a revision item by default.
- Divergent — readers disagree. Adjudicate: check both sides against canon and premise, record which side wins and why.
- Single-reader — one reader only. Weigh by specificity: specific + canon-verifiable → investigate or accept; vague + taste-based → usually decline.
- Declined-with-reason — explicitly rejected, with a recorded reason referencing canon, premise, genre contract, or craft principle.
- Write
feedback/round-{N}/synthesis.mdusingreferences/synthesis-template.md, including the frontmatter readiness verdict:ready|needs-revision|not-ready. - Build the numbered revision plan with concrete file targets.
4. Hand off the revision plan
- Present the synthesis summary and readiness verdict to the user.
- If the verdict is
needs-revisionornot-ready, hand the revision plan to therevision-continuityskill for execution. The synthesis is the input; revision-continuity owns the edits. - If the verdict is
ready, the round is closed — proceed to the next round, the next drafting stage, export, or thesubmissionskill.
Conventions
- Feedback lives under
feedback/round-{N}/;{N}is a plain integer (round-1,round-2). - Reader files use kebab-case reader ids:
feedback/round-1/maria-chen.md. - Every feedback file and the synthesis carry YAML frontmatter
(
reader,round,chapters-read,overall-verdict/readers,readiness). - Findings are quoted or closely paraphrased from readers, never invented. If a note is ambiguous, mark it ambiguous in the file rather than resolving it silently.
- Declined findings always carry a recorded reason. A synthesis with unexplained rejections is incomplete.
- Bidirectional discipline: when synthesis creates or resolves
continuity/questions/entries (reader confusion often reveals clarity gaps), update those files too.
CLI Maintenance
Use the Story CLI when it is available. If story is not installed, use bun run story -- from the Story Skills repository checkout or the bundled fallback node ../story-maintenance/scripts/story.js with the same arguments, resolving the path relative to this skill folder. If no CLI is available, perform the registry, backlink, and word-count checks manually.
After creating or updating feedback files and synthesis:
story reindex .
story links .
story validate .
story continuity .
Reference Files
references/feedback-template.md- Per-reader feedback file template with frontmatter (reader,round,chapters-read,overall-verdict) and canon-check disciplinereferences/synthesis-template.md- Round synthesis template: convergent/divergent/single-reader/declined-with-reason categories, readiness verdict, revision plan
| 1 | |
| 2 | name feedback-triage |
| 3 | description This skill should be used when the user asks to "process beta reader feedback", "alpha reader feedback", "feedback round", "synthesize reader feedback", "reader notes", "beta feedback", "readiness check", or wants to collect, reconcile, and act on external reader feedback for a story project. |
| 4 | |
| 5 | |
| 6 | # Feedback Triage |
| 7 | |
| 8 | ## Overview |
| 9 | |
| 10 | Process alpha/beta reader feedback as a structured, reconcilable workflow: |
| 11 | collect per-reader feedback files, hold all revision until the round is |
| 12 | complete, synthesize convergent/divergent/single-reader findings into a |
| 13 | decision record with a readiness verdict, and hand a concrete revision plan |
| 14 | to the `revision-continuity` skill. |
| 15 | |
| 16 | ## Prerequisites |
| 17 | |
| 18 | A story project with at least one drafted chapter (or a complete draft) that |
| 19 | readers have read. Verify `story.md` exists in the project root. |
| 20 | |
| 21 | ## When to Use |
| 22 | |
| 23 | Starting a feedback round (recruiting readers, sending chapters out) |
| 24 | Recording feedback as it arrives |
| 25 | Synthesizing a completed round into decisions |
| 26 | NOT for revising the manuscript (use `revision-continuity` with the |
| 27 | synthesis's revision plan) |
| 28 | NOT for the agent's own critique of the draft (use `revision-continuity` |
| 29 | audits; reader feedback is external input) |
| 30 | |
| 31 | ## Workflow |
| 32 | |
| 33 | ### 1. Set up the round |
| 34 | |
| 35 | Decide the round scope: which chapters readers get (`chapters-read` range) |
| 36 | and how many readers (2–4 per round is typical; one reader is a data |
| 37 | point, not a round). |
| 38 | Create the round folder: `feedback/round-{N}/`. |
| 39 | For each expected reader, create a stub file from |
| 40 | `references/feedback-template.md` at |
| 41 | `feedback/round-{N}/{reader-kebab}.md` with frontmatter filled in and the |
| 42 | body sections empty. The stub list is the round's checklist. |
| 43 | |
| 44 | ### 2. Collect feedback (the discipline) |
| 45 | |
| 46 | As each reader's notes arrive, record them in their file using the |
| 47 | template. Quote or closely paraphrase; do not editorialize yet. |
| 48 | Run the **canon check** on each problem note: verified against the bible, |
| 49 | contradicts canon (usually a setup problem — note the canon file), or |
| 50 | outside canon scope. Record the result in the file. |
| 51 | **Do NOT revise until all feedback for the round is in.** Revising on |
| 52 | partial feedback optimizes for the first reader and invalidates the |
| 53 | others' reads. If a reader is late, either wait or formally close the |
| 54 | round without them (note it in the synthesis) — never silently proceed |
| 55 | on a partial set. |
| 56 | |
| 57 | ### 3. Synthesize |
| 58 | |
| 59 | Only when every expected reader file is collected: |
| 60 | |
| 61 | Read all reader files for the round. |
| 62 | Sort every finding into exactly one category: |
| 63 | **Convergent** — ≥2 readers agree independently. Strongest signal; |
| 64 | becomes a revision item by default. |
| 65 | **Divergent** — readers disagree. Adjudicate: check both sides against |
| 66 | canon and premise, record which side wins and why. |
| 67 | **Single-reader** — one reader only. Weigh by specificity: |
| 68 | specific + canon-verifiable → investigate or accept; vague + |
| 69 | taste-based → usually decline. |
| 70 | **Declined-with-reason** — explicitly rejected, with a recorded reason |
| 71 | referencing canon, premise, genre contract, or craft principle. |
| 72 | Write `feedback/round-{N}/synthesis.md` using |
| 73 | `references/synthesis-template.md`, including the frontmatter readiness |
| 74 | verdict: `ready` | `needs-revision` | `not-ready`. |
| 75 | Build the numbered revision plan with concrete file targets. |
| 76 | |
| 77 | ### 4. Hand off the revision plan |
| 78 | |
| 79 | Present the synthesis summary and readiness verdict to the user. |
| 80 | If the verdict is `needs-revision` or `not-ready`, hand the revision |
| 81 | plan to the `revision-continuity` skill for execution. The synthesis is |
| 82 | the input; revision-continuity owns the edits. |
| 83 | If the verdict is `ready`, the round is closed — proceed to the next |
| 84 | round, the next drafting stage, export, or the `submission` skill. |
| 85 | |
| 86 | ## Conventions |
| 87 | |
| 88 | Feedback lives under `feedback/round-{N}/`; `{N}` is a plain integer |
| 89 | (`round-1`, `round-2`). |
| 90 | Reader files use kebab-case reader ids: `feedback/round-1/maria-chen.md`. |
| 91 | Every feedback file and the synthesis carry YAML frontmatter |
| 92 | (`reader`, `round`, `chapters-read`, `overall-verdict` / `readers`, |
| 93 | `readiness`). |
| 94 | Findings are quoted or closely paraphrased from readers, never invented. |
| 95 | If a note is ambiguous, mark it ambiguous in the file rather than |
| 96 | resolving it silently. |
| 97 | Declined findings always carry a recorded reason. A synthesis with |
| 98 | unexplained rejections is incomplete. |
| 99 | Bidirectional discipline: when synthesis creates or resolves |
| 100 | `continuity/questions/` entries (reader confusion often reveals clarity |
| 101 | gaps), update those files too. |
| 102 | |
| 103 | ## CLI Maintenance |
| 104 | |
| 105 | Use the Story CLI when it is available. If `story` is not installed, use `bun run story --` from the Story Skills repository checkout or the bundled fallback `node ../story-maintenance/scripts/story.js` with the same arguments, resolving the path relative to this skill folder. If no CLI is available, perform the registry, backlink, and word-count checks manually. |
| 106 | |
| 107 | After creating or updating feedback files and synthesis: |
| 108 | |
| 109 | |
| 110 | story reindex . |
| 111 | story links . |
| 112 | story validate . |
| 113 | story continuity . |
| 114 | |
| 115 | |
| 116 | ## Reference Files |
| 117 | |
| 118 | **`references/feedback-template.md`** - Per-reader feedback file template with frontmatter (`reader`, `round`, `chapters-read`, `overall-verdict`) and canon-check discipline |
| 119 | **`references/synthesis-template.md`** - Round synthesis template: convergent/divergent/single-reader/declined-with-reason categories, readiness verdict, revision plan |
| 120 |
Discussion
Browse more free Claude skills or everything in Product.