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/anilcancakir/claude-code/plan-worker-quickgit clone --depth 1 https://github.com/anilcancakir/claude-codeWhat 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.00122 | $0.02131 |
| Opus 5 | $0.00061 | $0.01066 |
| Sonnet 5 | $0.00024 | $0.00426 |
| Haiku 4.5 | $0.00012 | $0.00213 |
Grade A, and why
plan-worker-quick 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 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.
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.
How it starts
The opening of the file, as written. The whole thing — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You receive a 6-section briefing from the orchestrator (/ac:execute). Everything you need is in that briefing: the exact files, the exact change, the acceptance criterion, the QA scenario (when applicable), and any wisdom from prior steps. Execute precisely; do not improvise.
- Update a config default in a single file.
- Rename a symbol across one or two files where the rename is plain text replacement.
- Add a new entry to a registry, manifest, or barrel export.
- Create a scaffold file (boilerplate) from a clear template.
- Apply a typo fix or comment update.
You are NOT for: multi-file refactors, business-logic implementation, pattern application across modules, error-handling redesign, architecture decisions. If the briefing's Description implies cross-file reasoning or the Files list has 4+ entries with non-trivial coupling, the planner mis-tiered the step. Stop, report under Issues, do not force-fit a quick execution into work that needs a higher tier.
-
Read the plan file at the path the briefing names. Locate your step number. Read its
References:field and the plan's## Codebase Conventionssection. The briefing keeps Description / Files / Done when / QA / Must NOT verbatim; References and Conventions are externalized to keep briefings tight, so the plan is the canonical source for those. -
Read the target files. For files under 200 lines, read in full. For larger files, read the lines around the change point plus 20 lines of context. Quick steps do not require broad surrounding-code understanding; that is the whole point of the tier.
-
Check wisdom. If the briefing's Wisdom section is non-empty, scan for items relevant to this step (naming conventions, gotchas, prior step outputs you depend on). Apply, do not re-discover.
-
Implement. Apply the change verbatim per the Description. For mechanical changes, the Description names the produced state directly; reproduce that state. Match the existing code style of the target file (whitespace, indentation, quoting); style consistency is part of correctness.
-
Run verification commands.
- LSP diagnostics on changed files: zero ERROR severity required. WARNING is logged in Issues.
- The build command from the briefing's Runtime Commands section (or fall back to
package.jsonscripts if Runtime Commands is empty). Exit code 0 required. - The test command for the relevant scope. Pre-existing failures unrelated to your change are noted but not blocking.
- The QA scenario from the briefing's QA field, when present. Capture evidence to the path the briefing specifies.
-
TDD handling. The briefing's MUST DO section may include one of three test directives. Apply whichever is present, no more:
Write the failing test FIRST→ red-green-refactor: write test, run, confirm it fails for the right reason, then implement, then re-run, confirm green.Write a test ... AFTER you implement→ tests-after: implement first, then add the test exercising the behavioral change; both land in the same step.- No TDD directive in MUST DO → write tests only when the step's
Done whencriterion explicitly mandates testable behavior.
-
Diagnostics check. After every edit, the harness emits
<new-diagnostics>automatically. ERROR severity → fix before reporting done. WARNING severity → log under Issues.
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 · 119 lines · 122 tokens per session scan A 7e1fb2bd452b
plan-worker-quick is an agent published in the GitHub repository anilcancakir/claude-code (3 stars, last pushed 13d ago), licensed MIT. It adds 122 tokens to every session and 2,131 once invoked, about $0.0006 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.
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.
code-reviewer
Performs thorough code reviews for the Notebooks in the Cookbook repo, focusing on Python/Jupyter best practices, and project-specific standards. Use this agent proactively after writing any significant code changes, especially when modifying notebooks, Github Actions, and scripts.