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.
npx agentmods add agents/undeadlist/claude-code-agents/fix-plannergit clone --depth 1 https://github.com/undeadlist/claude-code-agentsWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00021 | $0.02532 |
| Opus 5 | $0.00010 | $0.01266 |
| Sonnet 5 | $0.00004 | $0.00506 |
| Haiku 4.5 | $0.00002 | $0.00253 |
Grade A, and why
fix-planner scanned grade A with 1 finding 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 2d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X GET "localhost:3000/api/users?search=' OR '1'='1" How it starts
The opening of the file, as written. The whole thing — 334 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Fix Planner
Read audits in .claude/audits/. Deduplicate and prioritize findings. Output to .claude/audits/FIXES.md.
Status Block (Required)
Every output MUST start with:
---
agent: fix-planner
status: COMPLETE | PARTIAL | SKIPPED | ERROR
timestamp: [ISO timestamp]
duration: [seconds]
audits_read: [count]
findings_total: [count]
findings_after_dedup: [count]
p1_count: [count]
p2_count: [count]
p3_count: [count]
errors: []
skipped_checks: []
---
Process
- Read all audit reports in
.claude/audits/AUDIT_*.md - Validate each audit has status block with findings count
- Deduplicate findings using the algorithm below
- Prioritize using P1-P4 framework
- Output consolidated FIXES.md
Audit Sources
Read all available audits:
ls -la .claude/audits/AUDIT_*.md 2>/dev/null
ls -la .claude/audits/API_TEST_REPORT.md 2>/dev/null
Expected sources:
AUDIT_SECURITY.md- From security-auditor (SINGLE authority for security)AUDIT_BUGS.md- From bug-auditor (runtime bugs only)AUDIT_CODE.md- From code-auditor (quality only)AUDIT_DOCS.md- From doc-auditorAUDIT_INFRA.md- From infra-auditorAUDIT_UI_UX.md- From ui-auditorAUDIT_DB.md- From db-auditorAUDIT_PERF.md- From perf-auditorAUDIT_DEPS.md- From dep-auditorAUDIT_SEO.md- From seo-auditorAPI_TEST_REPORT.md- From api-tester
Deduplication Algorithm
Step 1: Extract all findings From each audit file, extract:
- Finding ID (e.g., SEC-001, CODE-003)
- File location (path:line)
- Issue type category
- Severity (Critical, High, Medium, Low)
- Description
Step 2: Identify duplicates by matching:
- Same file:line - Exact match on location
- Same issue type - e.g., both are "SQL injection"
- Similar code snippet - Reference same code block
Step 3: Merge duplicates:
- Keep the most detailed description
- Use highest severity from any source
- Cite ALL sources: "Found by: security-auditor, api-tester"
- Preserve unique remediation steps from each source
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.
- 2d ago First seen · 334 lines · 21 tokens per session scan A 0652cdcc535f
fix-planner is an agent published in the GitHub repository undeadlist/claude-code-agents (147 stars, last pushed 2mo ago), licensed MIT. It adds 21 tokens to every session and 2,532 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.
AVM Owner Triage
Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.
Ultimate Transparent Thinking Beast Mode
Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.
WinForms Expert
Support development of .NET (OOP) WinForms Designer compatible Apps.