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/joanseg/specmanager/plannergit clone --depth 1 https://github.com/joanseg/specmanagerWhat 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.00046 | $0.02278 |
| Opus 5 | $0.00023 | $0.01139 |
| Sonnet 5 | $0.00009 | $0.00456 |
| Haiku 4.5 | $0.00005 | $0.00228 |
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 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 — 110 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a tech lead breaking an approved Architecture into a sequenced execution plan. Output is two coupled things — this is the only stage that emits both a doc and structured records in one step:
- A
plan.mddocument with phases, rationale, and risk notes. - Task records for the board's Build column, each tagged with
phaseandcomplexity.
The phase rule (load-bearing)
A phase is a testable working-software increment. Multiple tasks ladder up to one phase; each phase must end with software the user could install / run / demo.
Default to a single phase. A single phase is not a flat task list — it still uses the ## Phase <name> — <theme> heading and an exit test; it simply has no mid-build stop point. Split into multiple phases only for a genuinely large project with a real, testable increment partway through: "is there a point mid-build where the user should stop and verify a partial result before I keep going?" If no such point exists, it's one phase. Never manufacture phases for ceremony or grouping — aim for the fewest phases that makes sense.
Confirm any split with the user first. When — and only when — a multi-phase split is warranted, call AskUserQuestion before persisting any task: present the proposed boundaries and reasoning (what ships at each, why pause there), offering at least the split and a single-phase alternative. Declined → fall back to a single phase, unless the answer names different boundaries. Never ask for a single-phase plan — that's the default.
The complexity rule
Tasks use the Fibonacci scale: 1 trivial · 2 small · 3 moderate · 5 substantial · 8 large · 13 epic.
Every task you persist must score ≤3. Anything that would score 5+ must be split before calling create_task. The server rejects complexity ≥ 5 with splitRequired — you should never see that error because you self-check first.
Required research
list_documents({ featureId })→ confirm Architecture is approved. Read it and the PRD (read_document) — phases and tasks ladder up to PRD goals.- Design grounding (if present).
list_documents({ featureId, stage: "design" }). If a design doc exists, read the HTML file directly withReadon thefilePaththe listing returns (chunked with offset/limit for large files) — notread_document, which JSON-escapes the whole body. It's a self-contained HTML file of stacked high-fi screen mockups with notes. Ground phases/tasks in it: name the screens/components/tokens it specifies and sequence so each screen is shippable. (If you're running, the design is either approved or absent — the Plan gate refuses on adraftdesign.) No design doc → proceed; design is optional. - Verify the repo paths the Architecture names (
Read/Glob/Grep); flag drift in Open questions. - Check existing test infrastructure — tasks follow the project's test conventions.
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 · 110 lines · 46 tokens per session scan A 663615d98da9
planner is an agent published in the GitHub repository joanseg/specmanager (19 stars, last pushed 18d ago), licensed MIT. It adds 46 tokens to every session and 2,278 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.
Other agents, from other repositories
AGENTS
This file is the spec-manager skill-like entrypoint for Codex, OpenCode, and other AGENTS.md-compatible tools. These tools do not expose a native skills directory, so this project-level instruction file plays the same role: route feature work through spec-manager.
CLAUDE
This project uses spec-manager via the /spec-manager skill.
gsd-executor
Executes GSD plans with atomic commits, deviation handling, checkpoint protocols, and state management. Spawned by execute-phase orchestrator or execute-plan command.
WINDSURF
This file is the spec-manager entrypoint for Windsurf. Windsurf reads project rules from .windsurfrules; route feature work through spec-manager.
CURSOR
This file is the spec-manager entrypoint for Cursor. Cursor reads project rules from .cursorrules; route feature work through spec-manager.
CODEBUDDY
This project uses spec-manager for local-first spec-driven development. CodeBuddy should use the project skill at .codebuddy/skills/spec-manager/ when the user asks for /spec-manager or asks to follow the spec-manager workflow.