interpret-feedback
Interpret third-party feedback by running parallel internal and peer interpretations to surface intent, correctness concerns, and ambiguities. Use w…
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
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
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.
Internal Interpretation
Spawn a subagent with the feedback items and all available context. Instruct it to:
- Read all referenced code and surrounding context
- 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
- 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:
- Intent — what the author most likely wants changed and why (one to two sentences)
- Correctness — whether the suggestion is technically sound. If not, explain what the reviewer likely misunderstood, with evidence from the code
- Ambiguity — if the intent supports multiple valid readings, list each reading and which has stronger evidence
- 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.
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
同名技能的其他版本
有 2 个不同仓库或目录里都有叫 interpret-feedback 的技能。它们内容并不相同,别混用:
- tobihagemann/turbo — Interpret third-party feedback by running parallel internal and peer interpretations to su