mcpbeat Sign in

Interpret Feedback Skill for Codex

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

1k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
398
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/tobihagemann/turbo --skill interpret-feedback

The instruction itself

8 sections, as written by the author

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

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.

Internal Interpretation

Spawn a sub-agent 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

Spawn 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:

  • 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 branch prompt must also state explicitly that the sub-agent's final 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 call update_plan to mark this step completed and continue with the next step of the active workflow.

Rules

  • If either interpretation agent is unavailable or returns malformed output, proceed with results from the remaining agent.

Other skills for the same job

different authors, same section of the catalogue
Protocolsio Integration
by christophacham
×4

Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.

16k tokens
Tailored Resume Generator
by frostant
×4

Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances

3k tokens
Excalidraw Diagram Generator
by github
vendor ×3

Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.

36k tokens scripts
Expo Dev Client
by openai
vendor ×3

Build and distribute Expo development clients locally or via TestFlight

961 tokens
Executing Plans
by ZhanlinCui
×3

Use when you have a written implementation plan to execute in a separate session with review checkpoints

542 tokens
Anndata
by christophacham
×3

Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.

16k tokens
Benchling Integration
by christophacham
×3

Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.

14k tokens
Biopython
by christophacham
×3

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.

24k tokens

How to use it

Copy the folder

Take tobihagemann/turbo-interpret-feedback from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

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.