mark-fixed

mark-fixed is a command for coding agents from juanmhidalgo/claude-plugins. It costs 35 tokens per session (847 once invoked), scanned A, original, MIT.

A command for verifying issues recorded in a REVIEW_FIXES.md file and marking completed ones as fixed. It can check one issue or all pending issues.

In plain words
What is it for?
Confirming that code-review fixes were applied, identifying partially fixed or unresolved issues, and updating the fixes file.
Why use it?
It provides a recorded verification step so review items are not marked complete without checking the current code.

Command

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

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 commands/juanmhidalgo/claude-plugins/mark-fixed
Clone the repo
git clone --depth 1 https://github.com/juanmhidalgo/claude-plugins

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 mark-fixed

README.md
[![agentmods](https://agentmods.dev/badge/commands/juanmhidalgo/claude-plugins/mark-fixed.svg)](https://agentmods.dev/commands/juanmhidalgo/claude-plugins/mark-fixed)
Your own site
<a href="https://agentmods.dev/commands/juanmhidalgo/claude-plugins/mark-fixed"><img src="https://agentmods.dev/badge/commands/juanmhidalgo/claude-plugins/mark-fixed.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 847 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.00035 $0.00847
Opus 5 $0.00017 $0.00424
Sonnet 5 $0.00007 $0.00169
Haiku 4.5 $0.00003 $0.00085

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

Security

Grade A, and why

mark-fixed 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 4d 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/commands/mark-fixed.md · 130 lines

How it starts

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

Context

  • Branch: !git branch --show-current
  • Date: !date +%Y-%m-%d
  • Fixes file: REVIEW_FIXES.md (or find the file with type: review-fixes frontmatter)

Instructions

Step 1: Load Fixes File

Read the review fixes file found above. If not found, inform user.

Step 2: Determine Mode

Based on $ARGUMENTS:

  • Number (e.g., "3") → Verify and mark specific issue #3
  • "all" → Verify all pending issues
  • Empty → Show pending issues and ask which to verify

Step 3: For Each Issue to Verify

  1. Read the issue details:

    • File path and line numbers
    • Problem description
    • Expected solution
  2. Verify the fix:

    • Read the current file at specified path
    • Check if the suggested solution (or equivalent) was implemented
    • Look for the problem pattern - should NOT exist anymore
    • Look for the fix pattern - should exist now
  3. Determine status:

    • FIXED - Solution implemented, problem resolved
    • PARTIALLY FIXED - Some changes made, but incomplete
    • NOT FIXED - Problem still exists
    • CANNOT VERIFY - File changed significantly, manual review needed

Step 4: Update the File

For each verified fix:

  1. Update checkbox:

    - [x] **Completed**
    
  2. Add verification note:

    **Notes:**
    - ✅ Verified fixed on YYYY-MM-DD
    
  3. Update Progress Summary table:

    • Increment "Completed" count
    • Decrement "Remaining" count
  4. Update frontmatter:

    updated: YYYY-MM-DD
    
  5. Add to Implementation Log:

    | YYYY-MM-DD | 3 | Fixed | @claude | Verified: bulk_create implemented |
    

Step 5: Report

Show summary:

## Verification Results

✅ Issue #3: N+1 Query - FIXED
✅ Issue #5: Missing validation - FIXED
⚠️ Issue #7: Race condition - PARTIALLY FIXED (missing transaction)
❌ Issue #2: Data migration - NOT FIXED

Progress: 5/11 completed (was 3/11)

Verification Patterns

For code fixes:

# Check if old pattern exists (should NOT)
grep -n "old_pattern" path/to/file.py

# Check if new pattern exists (should)
grep -n "new_pattern" path/to/file.py

Read the full file on GitHub · 130 lines

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. 4d ago First seen · 130 lines · 35 tokens per session scan A 4b83d6d6d154

Subscribe to this mod's changes

mark-fixed is a command published in the GitHub repository juanmhidalgo/claude-plugins (8 stars, last pushed 9d ago), licensed MIT. It adds 35 tokens to every session and 847 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.