Answer Reviewer Questions
For every reviewer question thread on a PR, it recovers the original implementation reasoning and drafts a plain-text answer.
Dev & CodingIntermediate★ 399⑂ 31AI score 7/10Last updated: Aug 8, 2026
What it does
- Walks through each question-type review thread collected earlier in the conversation.
- Calls the
/recall-reasoningskill with<path>:<line>to retrieve the implementer's original reasoning, or falls back to the commit diff and surrounding code. - Composes a one-to-two-sentence answer per thread and prints it as
**Thread <id>** (<path>:<line>). - Adds a
_Grounding:_line only when no transcript was found, flagging weaker grounding for the downstream drafter. - Deliberately skips voice/formatting rules so the raw answers can be styled later.
Who it's for
- Developers who spend a lot of time responding to GitHub PR review comments.
- Teams building a review pipeline: interpret feedback → draft answers → post replies.
- Anyone tired of re-explaining why a piece of code was written a certain way.
Examples
- Ask "answer reviewer questions" and get one answer block per collected thread.
- Ask "draft answers to PR questions" to get file:line-anchored explanations ready for review.
- For code with no recorded reasoning, it reads the diff and current code, then appends
_Grounding: derived from current code_.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/tobihagemann/turbo/HEAD/claude/skills/answer-reviewer-questions/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the claude/skills/answer-reviewer-questions folder from the GitHub repo tobihagemann/turbo into my ~/.claude/skills/answer-reviewer-questions/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/tobihagemann/turbo.git /tmp/turbo && mkdir -p ~/.claude/skills && cp -r /tmp/turbo/claude/skills/answer-reviewer-questions ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/tobihagemann/turbo.git /tmp/turbo - Create the skills folder:
mkdir -p ~/.claude/skills - Copy this skill:
cp -r /tmp/turbo/claude/skills/answer-reviewer-questions ~/.claude/skills/ - Also copy its companions (
interpret-feedback,recall-reasoning, and the reply-drafting /github-voiceskills) — the workflow won't work without them. - Restart Claude Code and try: "answer reviewer questions".
View source on GitHub ↗License: MIT