Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
← Back to list

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★ 403⑂ 31AI score 7/10Last updated: Sep 24, 2026

What it does

  • Walks through each question-type review thread collected earlier in the conversation.
  • Calls the /recall-reasoning skill 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

  1. Ask "answer reviewer questions" and get one answer block per collected thread.
  2. Ask "draft answers to PR questions" to get file:line-anchored explanations ready for review.
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
↓ Download 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/tobihagemann/turbo.git /tmp/turbo
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy this skill: cp -r /tmp/turbo/claude/skills/answer-reviewer-questions ~/.claude/skills/
  5. Also copy its companions (interpret-feedback, recall-reasoning, and the reply-drafting / github-voice skills) — the workflow won't work without them.
  6. Restart Claude Code and try: "answer reviewer questions".