planner-v3

planner-v3 is an agent for Claude Code from malakhov-dmitrii/forge. It costs 48 tokens per session (2,982 once invoked), scanned A, original, MIT.

A tool for creating small, detailed implementation plans that another coding session can execute without needing extra decisions. TDD means writing tests before the code, and a DAG is a dependency map showing which tasks must happen first.

In plain words
What is it for?
Use it to plan software changes with tests, assumptions, task dependencies, claim checks, and a final review of tasks that may affect the same files or areas.
Why use it?
It turns a broad coding request into ordered tasks, verifies important claims, and checks for overlapping work. This helps prevent unclear plans and unnecessary implementation.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the beast-forge plugin — 3 skills, 2 commands, 17 agents, 3 hooks shipped together

Good fit Use it to plan software changes with tests, assumptions, task dependencies, claim…

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/malakhov-dmitrii/forge/planner-v3
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.

Clone the repo
git clone --depth 1 https://github.com/malakhov-dmitrii/forge

Made for: Claude Code.

Or install beast-forge, the plugin that ships this one along with the rest of its 3 skills, 2 commands, 17 agents, 3 hooks.

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 planner-v3

README.md
[![agentmods](https://agentmods.dev/badge/agents/malakhov-dmitrii/forge/planner-v3.svg)](https://agentmods.dev/agents/malakhov-dmitrii/forge/planner-v3)
Your own site
<a href="https://agentmods.dev/agents/malakhov-dmitrii/forge/planner-v3"><img src="https://agentmods.dev/badge/agents/malakhov-dmitrii/forge/planner-v3.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,982 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.00048 $0.02982
Opus 5 $0.00024 $0.01491
Sonnet 5 $0.00010 $0.00596
Haiku 4.5 $0.00005 $0.00298

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

Security

Grade A, and why

planner-v3 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 7d 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.

agents/planner-v3.md · 301 lines

How it starts

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

Beast-Plan Planner v3

You are an expert implementation planner. You create plans so detailed and clear that a fresh Claude session with zero context can execute them without asking a single clarifying question.

v3 adds three hard requirements on top of v2: DAG emission, Claim Verification Fan-out, and Overlap-Matrix self-check. All three are mandatory before emitting any plan.

Karpathy Guardrails (Think Before Coding)

Before emitting any plan, apply these checks (derived from Karpathy's LLM-coding observations):

  • State assumptions explicitly. If uncertain, surface it in an assumptions: block — do not pick silently.
  • Surface multiple interpretations. If the task has >1 reading, list them with tradeoffs; let the caller pick.
  • Push back on complexity. If you would write 200 lines and 50 would do, plan the 50-line version and note the rejected scope.
  • No speculative work. No features, abstractions, flexibility, or error handling that the task did not ask for.

A plan that fails these checks must be rewritten, not emitted.

Plan Philosophy

  • Bite-sized tasks: Each task should be completable in a single focused session
  • TDD-first: Tests come before implementation where applicable
  • One-shot executable: No ambiguity, no "figure it out" — every step is explicit
  • Minimal complexity: YAGNI. No over-engineering. Simplest approach that works.
  • Verified claims: Every factual assertion about the codebase must be confirmed before it enters the plan

Claim Verification Fan-out

Before writing any task that contains a fact: annotation — a claim about an existing file, API, schema, or behavior — emit parallel Task() calls to three agents:

Task(agent="skeptic",    input=claim_text)  // hunts for phantom APIs, version mismatch, file path hallucination
Task(agent="researcher", input=claim_text)  // confirms with direct file reads / grep evidence
Task(agent="critic",     input=claim_text)  // challenges necessity and scope creep

Read the full file on GitHub · 301 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. 7d ago First seen · 301 lines · 48 tokens per session scan A 54f56be526f1

Subscribe to this mod's changes

planner-v3 is an agent published in the GitHub repository malakhov-dmitrii/forge (25 stars, last pushed 1mo ago), licensed MIT. It adds 48 tokens to every session and 2,982 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.

Related

Other agents, from other repositories

verifier

Mechanical validation on the cheapest tier - runs exactly the commands it is handed, reports exit codes and counts verbatim against the handoff's baseline, and never edits, fixes or theorizes. A red suite is its product, not its failure. Spawned by the conductor at merge time and for the serial re-run of a suspect…

jjanczur/tyran · 71 tokens

tdd-guide

TDD guide agent - press RED→GREEN→IMPROVE to drive development in a cycle. First write the failure test, then write the minimum implementation, and finally refactor.

majiayu000/vibeguard · 41 tokens

test-sufficiency

Review a pull request diff and judge whether the newly added code is adequately covered by tests — especially boundary conditions, error paths, and exception branches. Output a short "covered / uncovered" table with specific line-level gaps. Use this agent on PRs that add behavior. It supplements Codex / CodeRabbit…

0xmariowu/AgentLint · 78 tokens

evolve-tdd-engineer

Test-first agent for the Evolve Loop. Writes failing tests that encode acceptance criteria BEFORE Builder writes any production code. RED phase is the proof of understanding. Runs on Opus (tier-1) for anti-cooperative-bias separation from Builder's Sonnet (tier-2).

mickeyyaya/evolve-loop · 64 tokens

qa

QA and testing expert for test strategy review, coverage analysis, assertion quality, mocking patterns, and TDD practices. Use when reviewing test code, evaluating test coverage, or assessing testing strategy.

restarter/lets-workflow · 40 tokens

evolve-spec-verifier

Spec verifier agent for the Evolve Loop. Validates and verifies acceptance criteria and specifications prior to TDD and build phases.

mickeyyaya/evolve-loop · 31 tokens