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 instructions/danweinerdev/claude-sdd-planner/claude-mdgit clone --depth 1 https://github.com/danweinerdev/claude-sdd-plannerWrote 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.
[](https://agentmods.dev/instructions/danweinerdev/claude-sdd-planner/claude-md)<a href="https://agentmods.dev/instructions/danweinerdev/claude-sdd-planner/claude-md"><img src="https://agentmods.dev/badge/instructions/danweinerdev/claude-sdd-planner/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.05768 | $0.05768 |
| Opus 5 | $0.02884 | $0.02884 |
| Sonnet 5 | $0.01154 | $0.01154 |
| Haiku 4.5 | $0.00577 | $0.00577 |
Grade A, and why
claude-sdd-planner CLAUDE.md 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 yesterday.
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 — 219 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SDD Planner
A spec-driven development toolchain: structured project planning with lifecycle skills, intent-isolated review agents, and a deterministic Go validator (sdd). This repository is the single source for every supported harness:
- Repo root — the canonical, hand-edited Claude Code plugin (
commands/,agents/,skills/,shared/,hooks/). .codex-plugin/and.opencode-plugin/— generated plugin trees for Codex and OpenCode, produced bysdd plugin sync. Never hand-edited; drift failsmake test.
Directory Structure
claude-sdd-planner/ # Repository root = canonical Claude plugin root
├── .claude-plugin/
│ └── plugin.json # Canonical manifest — single source of version + minSddVersion
├── commands/ # Slash commands (auto-namespaced /sdd-planner:*); each is a dir with SKILL.md
│ └── <name>/SKILL.portable.md # optional hand-maintained portable variant (code-review, implement, setup)
├── skills/ # Model-only reference skills (auto-loaded by description, not /-invocable)
│ ├── <lang>-specifications/ # per-language structural verification (cpp, rust, go, python, typescript, java, swift)
│ ├── decision-log/ # ad-hoc decision capture outside lifecycle skills
│ └── sdd-cli/ # how to drive the sdd binary — task→command map + write-path discipline
├── agents/ # Subagent definitions — also the source for the portable role prompts
├── hooks/ # Wrappers that locate the binary; hooks.json is NOT shipped —
│ ├── sdd-hook.sh # `sdd provision` generates it per-platform (see below)
│ └── sdd-hook.ps1
├── shared/ # Conventions + templates, shipped to every harness
│ ├── frontmatter-schema.md # single source of truth for artifact metadata
│ ├── completion-evidence.md # evidence-gated completion — what `complete` requires, per level
│ ├── decision-log.md # decision ledger — entry schema, admission test, collision procedure
│ ├── decision-framework.md # universal decision discipline for all skills and agents
│ ├── path-resolution.md # planning-root / plugin-dir / target-repo resolution (marker-managed)
│ ├── orchestration.md # orchestration model + portable prompt catalog (marker-managed)
│ ├── vcs-detection.md # VCS detection algorithm + operations table (git / p4 / plain)
│ ├── autonomy.md # cross-skill autonomy table — what runs solo vs stops for the user
│ ├── review-lanes.md # project-supplied review-lane socket (+ .portable.md variant)
│ ├── review-artifacts.md # persisted review contract incl. the phase-completion gate
│ ├── language-verification.md # language-specific verification — what good looks like
│ ├── agent-runtime.md # portable runtime conventions (resolution, delegation, resource boundary)
│ └── templates/ # document templates (+ agents-md-*, claude-md-*, custom-reviewer variants)
├── cmd/sdd/ # The `sdd` binary — validation, artifact writes, hooks, plugin sync
├── internal/ # Binary internals (rules, dlg, compile, hook, provision, schema, vcs, portable)
├── tools/ # genfixtures + the frozen regression corpus (run by `go test ./...`)
├── .codex-plugin/ # GENERATED Codex plugin tree — never hand-edit
├── .opencode-plugin/ # GENERATED OpenCode plugin tree (same content) — never hand-edit
├── portable-overrides/ # Hand-maintained portable-only sources (the portable README)
├── .plans/ # This repo's own planning artifacts (planning-config.json → ".plans")
│ └── Decisions/decisions.md # the decision ledger — D-NNNN entries are standing constraints
├── Makefile # build / test / plugins / bump-*
└── bump-version.py # patch|minor|major bumps, `set X.Y.Z`, `set-floor X.Y.Z`
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.
- yesterday Changed · +239 tokens per session 58cb738736d0
- 5d ago First seen · 219 lines · 5,529 tokens per session scan A 563f47e6f80e
claude-sdd-planner CLAUDE.md is an instructions file published in the GitHub repository danweinerdev/claude-sdd-planner (2 stars, last pushed today), licensed MIT. It adds 5,768 tokens to every session, about $0.0288 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 instructions, from other repositories
AmbyKit CLAUDE.md
Claude Code instructions for ambystechcom/AmbyKit, covering claude code — notes for the ambykit repo and claude-specific.
claude-sdlc CLAUDE.md
Claude Code instructions for lantisprime/claude-sdlc, covering claude.md, what this repo is, design intent — read this before "improving" anything, eat your own dog food and hook strictness philosophy.
harness-forge AGENTS.md
AGENTS.md instructions for ldilov/harness-forge, covering harness forge agent guidance, mode awareness, resolution rule, installed runtime map and language discovery.
harness-forge CLAUDE.md
Claude Code instructions for ldilov/harness-forge, covering harness forge, quick reference, cli commands, essential commands and living loop commands.
pinotator AGENTS.md
AGENTS.md instructions for transcendr/pinotator, covering goal queue prompt routing, goal queue processing and semantics and git tracking rules.
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.