claude-sdd-planner CLAUDE.md

claude-sdd-planner CLAUDE.md is an instructions file for coding agents from danweinerdev/claude-sdd-planner. It costs 5,768 tokens per session, scanned A, original, MIT.

A set of Claude Code instructions for a spec-driven development planner, a tool that organizes software work around written requirements. It also explains how one source project produces versions for Claude Code, Codex, and OpenCode.

In plain words
What is it for?
For planning and reviewing development work, following the project’s directory and frontmatter rules, and synchronizing plugin trees for different coding-agent tools.
Why use it?
It prevents generated plugin files from being edited directly and keeps the supported versions consistent. It documents the project’s file structure and conventions.

Instructions file

Installs and runs on its own, but its text points at files inside the plugin that ships it — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed.

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 instructions/danweinerdev/claude-sdd-planner/claude-md
Clone the repo
git clone --depth 1 https://github.com/danweinerdev/claude-sdd-planner

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 claude-sdd-planner CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/danweinerdev/claude-sdd-planner/claude-md.svg)](https://agentmods.dev/instructions/danweinerdev/claude-sdd-planner/claude-md)
Your own site
<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>
Per session 5,768 This file is loaded in full into every session.
When invoked 5,768 The same file — it is already loaded in full.
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.05768 $0.05768
Opus 5 $0.02884 $0.02884
Sonnet 5 $0.01154 $0.01154
Haiku 4.5 $0.00577 $0.00577

Measured yesterday against content hash 58cb738736d0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

CLAUDE.md · 219 lines

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 by sdd plugin sync. Never hand-edited; drift fails make 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`

Read the full file on GitHub · 219 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. yesterday Changed · +239 tokens per session 58cb738736d0
  2. 5d ago First seen · 219 lines · 5,529 tokens per session scan A 563f47e6f80e

Subscribe to this mod's changes

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.