review-fixes-plan

review-fixes-plan is a skill for Claude Code from juanmhidalgo/claude-plugins. It costs 35 tokens per session (633 once invoked), scanned A, original, MIT.

A format and workflow for tracking issues found during a code review, which is the process of checking proposed code for problems before it is merged.

In plain words
What is it for?
Use it to create review-fix files, record critical-to-low-priority issues, log implementations, and track checks after merging a change.
Why use it?
It keeps review findings, priorities, fixes, progress, and follow-up checks in one predictable document.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the code-review plugin — 5 skills, 14 commands, 13 agents shipped together

Good fit Use it to create review-fix files, record critical-to-low-priority issues, log implementations, and track checks after merging a change.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/juanmhidalgo/claude-plugins/review-fixes-plan
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.

Any agent
npx skills add juanmhidalgo/claude-plugins --skill review-fixes-plan
Clone the repo
git clone --depth 1 https://github.com/juanmhidalgo/claude-plugins

Made for: Claude Code.

Or install code-review, the plugin that ships this one along with the rest of its 5 skills, 14 commands, 13 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for review-fixes-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/juanmhidalgo/claude-plugins/review-fixes-plan/github.svg)](https://agentmods.dev/skills/juanmhidalgo/claude-plugins/review-fixes-plan)
Your own site
<a href="https://agentmods.dev/skills/juanmhidalgo/claude-plugins/review-fixes-plan"><img src="https://agentmods.dev/badge/skills/juanmhidalgo/claude-plugins/review-fixes-plan/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for review-fixes-plan

Your own site · 80×15
<a href="https://agentmods.dev/skills/juanmhidalgo/claude-plugins/review-fixes-plan"><img src="https://agentmods.dev/badge/skills/juanmhidalgo/claude-plugins/review-fixes-plan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 633 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00035 $0.00633
Opus 5 $0.00017 $0.00316
Sonnet 5 $0.00007 $0.00127
Haiku 4.5 $0.00003 $0.00063

Measured 10d ago against content hash f8fe301897de, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

review-fixes-plan 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 10d 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.

code-review/skills/review-fixes-plan/SKILL.md · 101 lines

How it starts

The opening of the file, as written. The whole thing — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Review Fixes Plan

Standard format for tracking code review issues and their resolution.

When to Use

  • After /code-review/branch to create actionable fix list
  • After /code-review/triage to document verified issues
  • When planning fixes for a feature branch
  • To track implementation progress across sessions

File Naming Convention

docs/review-fixes-{branch-name}.md

Or in project root:

REVIEW_FIXES.md

Template

See template.md for the full template with all sections.

Key sections:

  • YAML frontmatter (type, branch, feature, pr, status)
  • Progress summary table
  • Issues by priority (CRITICAL, HIGH, MEDIUM, LOW)
  • Implementation log
  • Post-merge monitoring checklist

Priority Guidelines

CRITICAL

  • Security vulnerabilities
  • Data loss/corruption risks
  • Blocking bugs that break functionality
  • Migration issues that could fail in production

HIGH

  • N+1 queries affecting performance
  • Race conditions
  • Missing validation on important fields
  • Memory issues in bulk operations

MEDIUM

  • Code inconsistencies
  • Missing indexes (non-critical paths)
  • Deprecated API usage
  • Code duplication

LOW

  • Style improvements
  • Documentation gaps
  • Refactoring opportunities
  • Nice-to-have optimizations

Best Practices

  1. One issue per section - Keep issues atomic and focused
  2. Include solution code - Makes implementation faster
  3. Add file paths with lines - Easy navigation
  4. Preserve ref_id from triage - Enables auto-resolving on GitHub
  5. Update progress table - Track completion at a glance
  6. Use implementation log - Document decisions and blockers
  7. Add post-merge monitoring - Don't forget to verify in prod

Integration with Other Commands

  1. /code-review/branch → identifies issues
  2. /code-review/triage → adds verified AI feedback issues (includes ref_id)
  3. /code-review/fixes-plan → creates/updates this document
  4. /code-review/implement-fix → implement fixes
  5. /code-review/mark-fixed → verify and mark as fixed
  6. /code-review/resolve-fixed → resolve GitHub threads for fixed issues
  7. Post-merge → verify monitoring items

Read the full file on GitHub · 101 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 101 lines · 35 tokens per session scan A f8fe301897de

Subscribe to this mod's changes

review-fixes-plan is a skill published in the GitHub repository juanmhidalgo/claude-plugins (8 stars, last pushed 2d ago), licensed MIT. It adds 35 tokens to every session and 633 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-31.