tobihagemann/turbo-interpret-feedback
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\".
npx skills add https://github.com/tobihagemann/turbo --skill interpret-feedback
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.
Run both interpretation branches independently. Launch them with spawn_agent / wait_agent using inherited model defaults. Both branch prompts must direct them to treat the shared working tree and its git index as read-only and to interpret by reading and reasoning.
Spawn a sub-agent with the feedback items and all available context. Instruct it to:
$peer-review SkillSpawn a Codex sub-agent and instruct it to read and follow $peer-review from the installed skill directory, with the feedback items and all available context. Describe the request in natural language:
The branch prompt must also state explicitly that the sub-agent's final 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 call update_plan to mark this step completed and continue with the next step of the active workflow.
Take tobihagemann/turbo-interpret-feedback from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.