answer-reviewer-questi…
For each reviewer question on a PR, recall implementation reasoning and compose a raw answer. Use when the user asks to \"answer reviewer questions\", \"draft…
Interpret third-party feedback by running parallel internal and peer interpretations to surface intent, correctness concerns, and ambiguities. Use when the user asks to \"interpret feedback\", \"interpret comments\", \"what does this feedback mean\", \"clarify reviewer intent\",
$ npx -y skills add tobihagemann/turbo --skill interpret-feedback --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/interpret-feedbackContext preview
The summary Claude sees to decide when to auto-load this skill.
Interpret third-party feedback by running parallel internal and peer interpretations to surface intent, correctness concerns, and ambiguities. Use when the user asks to \"interpret feedback\", \"interpret comments\", \"what does this feedback mean\", \"clarify reviewer intent\",
name: interpret-feedback description: "Interpret third-party feedback by running parallel internal and peer interpretations to surface intent, correctness concerns, and ambiguities. Use when the user asks to \"interpret feedback\", \"interpret comments\", \"what does this feedback mean\", \"clarify reviewer intent\", \"understand this review\", or \"interpret these suggestions\"."
Run two independent interpretations of third-party feedback in parallel (internal + codex peer), then reconcile into enriched items with clear intent summaries. Designed for feedback where the author's intent is ambiguous or the correctness of suggestions is uncertain.
Determine the feedback to interpret:
For each item, collect whatever context is available: code snippets, diffs, surrounding discussion, file paths, line numbers. More context produces better interpretation.
Emit both Agent tool calls below in one assistant message. Each Agent call uses `model: "opus"` and no `name`. Wait for every agent to report before continuing. Do not begin the next step on a partial set, and do not relaunch an agent that has not yet reported. That is two Agent tool calls total. Both agents' prompts must direct them to treat the shared working tree and its git index as read-only and to interpret by reading and reasoning. HEAD stays where it is: read other refs with `git show <ref>:<path>` rather than `git checkout` or `git switch`.
Spawn a subagent with the feedback items and all available context. Instruct it to:
1. Read all referenced code and surrounding context 2. For each feedback item, produce:
3. Return structured results per item
Launch an Agent tool call whose prompt instructs the subagent to invoke `/peer-review` via the Skill tool. Describe the request in natural language:
1. Intent — what the author most likely wants changed and why (one to two sentences) 2. Correctness — whether the suggestion is technically sound. If not, explain what the reviewer likely misunderstood, with evidence from the code 3. Ambiguity — if the intent supports multiple valid readings, list each reading and which has stronger evidence 4. Confidence — high (clear intent, sound suggestion), medium (likely intent but some uncertainty), or low (genuinely ambiguous or likely incorrect)
The prompt must also state explicitly that the subagent's final assistant message must contain the verbatim findings text `/peer-review` produced.
Merge the two interpretations for each feedback item:
| Agreement | Action | |-----------|--------| | **Both agree** on intent and correctness | High confidence. Use the shared interpretation. | | **Intent agrees, correctness differs** | Flag the correctness concern with both perspectives. | | **Intent disagrees** | Flag as ambiguous. Present both readings and note which has stronger evidence. |
For each feedback item, output the original feedback followed by the interpretation:
### Item <N>: <short label> **Original:** <feedback text, truncated if long> **File:** <path:line if applicable> **Intent:** <reconciled interpretation of what the author wants> **Correctness:** <sound | concern: <explanation>> **Confidence:** <high | medium | low> **Ambiguity:** <none | <description of unclear aspects>> <If interpreters disagreed, show both perspectives>
After all items, add a summary:
## Interpretation Summary - Total items: <N> - High confidence: <N> - Correctness concerns: <N> - Ambiguous intent: <N>
Then use the TaskList tool and proceed to any remaining task.
A composable dev process for agentic coding harnesses, packaged as modular skills. Turbo has sibling editions for Claude Code and Codex. The Claude Code edition is production-tested.
For each reviewer question on a PR, recall implementation reasoning and compose a raw answer. Use when the user asks to \"answer reviewer questions\", \"draft…
Apply findings by making the suggested code changes. Applies accepted verdicts, escalates ambiguous findings to the user, and offers to note genuine…
Assess project-wide structural technical debt: complexity hotspots, deprecated API usage, duplication clusters, and architecture rot. Ranks findings by impact…
Project-wide health audit pipeline that fans out to all analysis skills in parallel, evaluates findings, and produces a unified report at .turbo/audit.md. Use…
Shared changelog conventions and formatting rules referenced by /create-changelog and /update-changelog. Not typically invoked directly.
Enforce existence, reuse, mirror, and symmetry principles to keep new code minimal and consistent with surrounding code. Use when writing new code in an…