respond-review

A procedure for working through feedback from a code reviewer. It requires reading every finding, classifying it, deciding how to handle it, applying fixes, and checking that tests still pass.

In plain words
What is it for?
Use it after receiving a review report to list findings, fix correctness and security issues, document disagreements, request clarification, and verify the resulting code.
Why use it?
It prevents review comments from being ignored or changed blindly. It also separates required corrections from optional design suggestions that may need discussion.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/danielvm-git/bigpowers/respond-review
Any agent
npx skills add danielvm-git/bigpowers --skill respond-review
Clone the repo
git clone --depth 1 https://github.com/danielvm-git/bigpowers

Made for: Claude Code, Codex.

Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 504 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00042 $0.00504
Opus 5 $0.00021 $0.00252
Sonnet 5 $0.00008 $0.00101
Haiku 4.5 $0.00004 $0.00050

Measured 3d ago against content hash e7673bd61f3e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

respond-review scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cline/skills/respond-review/SKILL.md · 72 lines

What it actually says

Respond Review

HARD GATEHARD GATE — Every reviewer comment must be addressed (fix, disagree + document reason, or ask clarification). Do NOT ignore feedback and merge.

Work through reviewer findings systematically. Don't apply changes blindly — categorize first, then decide, then fix, then verify.

Process

1. Read the full review report

Read every finding before acting on any of them. Get the full picture first.

2. Categorize findings

For each finding, assign a category:

Category Meaning Action
must-fix Correctness bug, security issue, test failure, CONVENTIONS.md violation Fix before proceeding
should-fix Code quality issue, naming, clarity — worth fixing but not blocking Fix if time allows
consider Architectural suggestion, alternative approach — may or may not apply Discuss with user

Create a numbered list of all findings with their categories.

3. Confirm with user (for consider-category items)

For each "consider" item, briefly describe the trade-off and ask: "Apply, skip, or discuss?"

4. Apply must-fix items first

Fix every must-fix item. For each one:

  • Describe what you're changing and why
  • Make the change
  • Run the verify command if one exists for this area

5. Apply should-fix items

Apply should-fix items. If any are large enough to warrant their own commit, note them separately.

6. Run the full suite

After all changes are applied:

<full test command>
<typecheck command>
<lint command>
  • All tests pass
  • No type errors
  • No lint violations

7. Report

Summarize what was applied and what was skipped:

Applied (must-fix): #1, #2, #3
Applied (should-fix): #4
Skipped (consider): #5 — agreed with user to defer
All tests pass.

Suggest next skill: commit-message.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 72 lines · 42 tokens per session scan A e7673bd61f3e

Subscribe to this mod's changes

respond-review is a skill published in the GitHub repository danielvm-git/bigpowers (156 stars, last pushed 26d ago), licensed MIT. It adds 42 tokens to every session and 504 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.