Skip to main content
ClaudeWave
Skill336 repo starsupdated 6d ago

interpret-feedback

The interpret-feedback skill analyzes ambiguous third-party feedback by running parallel internal and peer interpretations to extract the reviewer's likely intent, evaluate technical correctness, and identify phrasing ambiguities. Use this skill when users need clarification on feedback meaning, reviewer suggestions, code review comments, or when feedback intent is unclear and correctness is uncertain.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/tobihagemann/turbo /tmp/interpret-feedback && cp -r /tmp/interpret-feedback/claude/skills/interpret-feedback ~/.claude/skills/interpret-feedback
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# 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.

## Step 1: Identify Feedback Items

Determine the feedback to interpret:

- If feedback items are in conversation context, use them
- If a file path or URL was provided, read or fetch the content
- If called by another skill, use the items passed in

For each item, collect whatever context is available: code snippets, diffs, surrounding discussion, file paths, line numbers. More context produces better interpretation.

## Step 2: Run Two Interpretations in Parallel

Use the Agent tool to launch both agents below in a single assistant message so they run concurrently. Each Agent call uses `model: "opus"` and does not set `run_in_background`. That is two Agent tool calls total.

### Internal Interpretation

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:
   - **Intent**: What the feedback author most likely wants changed and why (one to two sentences)
   - **Correctness**: Whether the suggestion is technically sound — flag concerns if the reviewer may be mistaken, with evidence
   - **Ambiguity**: Note where the intent is unclear or where multiple valid readings exist
3. Return structured results per item

### Run `/peer-review` Skill

Launch an Agent tool call whose prompt instructs the subagent to invoke `/peer-review` via the Skill tool. Describe the request in natural language:

- **Material** — the listed third-party feedback items and their surrounding context.
- **Task** — for each item, determine what the author most likely wants changed and why, whether the suggestion is technically sound, and where the phrasing is ambiguous enough to support multiple valid readings.
- **Skepticism guidance** — do not take feedback at face value. Check whether the author's stated concern matches the code reality. Look for cases where the reviewer misread the code, confused two similar constructs, or applied a general rule that does not fit this specific context.
- **Output format** — for each feedback item, return:
  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.

## Step 3: Reconciliation

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. |

## Step 4: Output Enriched Items

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.

## Rules

- If either interpretation agent is unavailable or returns malformed output, proceed with results from the remaining agent.
answer-reviewer-questionsSkill

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 answers to PR questions\", or \"explain reviewer questions\".

apply-findingsSkill

Apply findings by making the suggested code changes. Applies accepted verdicts, escalates ambiguous findings to the user, and offers to note genuine improvements for later. Use when the user asks to \"apply findings\", \"apply fixes\", \"apply suggestions\", \"apply accepted findings\", \"fix the findings\", or \"apply the review results\".

auditSkill

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 when the user asks to \"audit the project\", \"run a full audit\", \"project health check\", \"audit my code\", \"codebase audit\", or \"comprehensive review\".

changelog-rulesSkill

Shared changelog conventions and formatting rules referenced by $create-changelog and $update-changelog. Not typically invoked directly.

code-styleSkill

Enforce mirror, reuse, and symmetry principles to keep new code consistent with surrounding code. Use when writing new code in an existing codebase, adding new features, refactoring, or making any code changes.

codex-execSkill

Run autonomous task execution using the codex CLI. Use when the user asks to \"codex exec\", \"run codex exec\", \"execute a task with codex\", or \"delegate to codex\".

codex-reviewSkill

Run AI-powered code review using the codex CLI. Use when the user asks to \"codex review\", \"run codex review\", or \"review a commit with codex\".

commit-rulesSkill

Shared commit message rules and technical constraints referenced by $stage-commit and $commit-staged. Not typically invoked directly.