planner

planner is an agent for coding agents from SyloRei/claude-godmode. It costs 66 tokens per session (821 once invoked), scanned A, original, MIT.

A planning agent that turns a written project brief into one ordered build plan. It records dependencies between steps and explains how each requirement will be checked.

In plain words
What is it for?
Use it before implementation to create a PLAN.md with mechanical steps, affected files, dependencies, and verification commands for a project task.
Why use it?
It removes the guesswork from deciding what to build first and how to verify the result. It also keeps planning separate from writing source code.

Agent

Part of the claude-godmode plugin — 14 skills, 4 commands, 19 agents, 7 hooks, 3 MCP servers 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 agents/sylorei/claude-godmode/planner
Clone the repo
git clone --depth 1 https://github.com/SyloRei/claude-godmode

Or install claude-godmode, the plugin that ships this one along with the rest of its 14 skills, 4 commands, 19 agents, 7 hooks, 3 MCP servers.

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/sylorei/claude-godmode/planner.svg)](https://agentmods.dev/agents/sylorei/claude-godmode/planner)
Your own site
<a href="https://agentmods.dev/agents/sylorei/claude-godmode/planner"><img src="https://agentmods.dev/badge/agents/sylorei/claude-godmode/planner.svg" alt="Measured on agentmods" height="20"></a>
Per session 66 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 821 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.00066 $0.00821
Opus 5 $0.00033 $0.00411
Sonnet 5 $0.00013 $0.00164
Haiku 4.5 $0.00007 $0.00082

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

Security

Grade A, and why

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

agents/planner.md · 60 lines

How it starts

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

You are a senior engineer who turns a brief into a tactical plan that makes building mechanical. You read the brief, think hard about ordering and dependencies, and write exactly one PLAN.md. You do not implement the work and you do not edit source files — the only file you write is the plan, and the only commands you run are bin/godmode-state reads/writes.

The plan skill is preloaded into your context: follow its process. Your job is to apply senior judgment on top of it.

What you produce

For roadmap unit N, read .planning/missions/<mission_id>/briefs/NN-name/BRIEF.md and write a single .planning/missions/<mission_id>/briefs/NN-name/PLAN.md containing:

  1. Ordered steps — small, mechanical, one concern each. Each step names the files it touches and the change it makes.
  2. Dependency relationships — every step declares dependsOn (the step IDs it requires, or none). This lets /build group independent steps into parallel waves.
  3. A verification plan — for each brief acceptance criterion (referenced by ID), state exactly how it will be checked (command to run, output to observe, file to inspect).

Two artifact files per unit, never three. The unit owns BRIEF.md and PLAN.md only. Do not introduce an EXECUTE.md or any third execution-log file — the git log is the execution log.

Principles

  • Mechanical steps — a step should be unambiguous enough that an executor needs no extra judgment.
  • Honest dependencies — only declare dependsOn where a real ordering constraint exists; spurious dependencies serialize work that could run in parallel.
  • Every criterion is covered — no brief acceptance criterion may be left without a verification entry. If a criterion can't be verified, flag it back rather than inventing a check.
  • Cite by ID — steps and verification entries reference brief criteria by their ID so coverage is auditable.
  • Respect constraints — honor .planning/PROJECT.md decisions and constraints; do not plan work the brief put out of scope.

Read the full file on GitHub · 60 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 · 60 lines · 66 tokens per session scan A 441cc5aa8402

Subscribe to this mod's changes

planner is an agent published in the GitHub repository SyloRei/claude-godmode (3 stars, last pushed 2mo ago), licensed MIT. It adds 66 tokens to every session and 821 once invoked, about $0.0003 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.

Related

Other agents, from other repositories

tasks-agent

Expert development lead that converts technical designs into actionable, incremental coding tasks for implementation.

NikiforovAll/claude-code-rules · 18 tokens

mcg

Product management author and coach. Founder and partner of Silicon Valley Product Group (SVPG, 2001). Author of Inspired: How to Create Tech Products Customers Love (2008, 2017), Empowered: Ordinary People, Extraordinary Products (2020), Loved: How to Rethink Marketing for Tech Products (2022 with Lea Hickman), and…

punt-labs/prfaq · 124 tokens

task-executor

Use this agent to execute a single tracked task with TDD, commit, and PR creation in an isolated git worktree. Dispatched by /coco:loop for parallel execution. Context: Multiple tasks are ready with non-overlapping file ownership. /coco:loop dispatches parallel agents. assistant: "I'll dispatch task-executor agents…

skullninja/coco-workflow · 97 tokens

engineering-manager

Use to turn an approved plan or goal into a sequenced delivery plan — decomposing work into tasks with acceptance criteria, estimating effort, mapping dependencies into parallelizable waves, and flagging risks and blockers. Pick this for any workflow step that plans who-does-what-and-when before code is written. Does…

e1024kb/wise-claude · 74 tokens

himawari

Master Orchestrator for large-scale complex projects. Decomposes multi-phase, cross-domain work into a phase plan; the bigproject skill then runs each phase as its own full start workflow.

seokan-jeong/team-shinchan · 43 tokens

duplication-detector

Detects stories with overlapping implementation concerns using hybrid keyword pre-filter and LLM semantic verification. Spawned by the dag-validator coordinator.

andyzengmath/quantum-loop · 31 tokens