From blueprint-plugin
Enforces same-commit landing of code and documentation for APIs, formats, and ADRs. Use when committing API changes, promoting research to docs/, or landing architectural decisions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/blueprint-plugin:blueprint-docs-currencyThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Same-commit discipline for code and documentation. This skill is the
Same-commit discipline for code and documentation. This skill is the
reusable version of claude-plugins' .claude/rules/docs-currency.md,
refined for blueprint-driven projects.
| Use this skill when… | Skip when… |
|---|---|
| Committing code that changes a public API, format spec, or error enum | Refactoring internal helpers with no external surface change |
Promoting research findings from tmp/ to docs/ | Scratch work that will not ship |
| Landing an architectural decision | Implementation detail with no branching trade-off |
| Advancing a tracker entry past "in progress" | Small task completion that does not cross a phase gate |
| A reviewer flags missing documentation | Typo fixes or whitespace changes |
Code + its docs land in the same commit. Research promotes to
docs/before the feature advances past "in progress." ADR-worthy decisions land with a new or updated ADR in the same commit.
| Change kind | Doc target |
|---|---|
| Public API / exported type | Inline docstring + reference doc under docs/api/ (or tool-appropriate) |
| File-format spec | docs/format-spec/<name>.md (hand-written prose, not generated) |
| Error enum / protocol code | docs/errors/<name>.md or the protocol reference |
| Milestone / phase status | Feature-tracker entry + docs/PLAN.md if the phase advanced |
| Architectural decision | New ADR under docs/adrs/NNNN-<title>.md |
| New CLI flag or subcommand | README + relevant docs/cli/ page |
Forward-reference blueprint-plugin:blueprint-curate-docs for how to
produce the curated .claude/rules/ entry when the code change
surfaces an AI-context gotcha worth capturing.
Research findings arrive in tmp/ (gitignored). Before the dependent
feature advances past "in progress" in the blueprint feature tracker:
docs/ at a canonical path (e.g.
docs/research/<topic>.md, or directly into docs/format-spec/<name>.md
if the research is the spec).docs/ path in its
evidence field (blueprint-plugin:feature-tracking handles the
mechanical edit).in_progress to done.See blueprint-plugin:blueprint-curate-docs for the prose-production
mechanics; see blueprint-plugin:blueprint-sync for the drift detection
that catches stale generated content drifting from source PRDs.
| Layer | Lives at | Authoritative? |
|---|---|---|
TODO.md, feature tracker JSON | Repo root or docs/blueprint/ | No — sidecar |
docs/PLAN.md, docs/roadmap.md | docs/ | Yes |
docs/format-spec/, docs/api/ | docs/ | Yes |
ADRs in docs/adrs/ | docs/adrs/ | Yes |
tmp/research/… | gitignored | No — scratch |
Sidecars record priority, status, and notes for humans. If a reader
needs the information to port, debug, or onboard, it belongs in docs/,
not the sidecar.
Before git commit, ask:
docs/ file?tmp/research/ either empty or intentionally scratch for this change?docs/ path?If any box is unchecked, the commit is not ready. Pattern-match on what the code changed, then fix the doc gap in place.
Before a PR's final review:
git log main..HEAD — each commit that touches a scoped surface
has a same-commit doc editfind tmp -type f — empty, or the contents are scratch that
should not shipdocs: follow-up commits planned for after mergeDeferred doc follow-ups are the failure mode this skill exists to prevent. "I'll write the spec after the code is in" is the signal to stop and write the spec now.
| Signal | Action |
|---|---|
| Adding a new exported function | Same commit: update the reference doc |
| Changing a binary format header | Same commit: update docs/format-spec/<name>.md |
| Adding an error code | Same commit: update error enum docs |
| Choosing library A over library B | Same commit: file an ADR |
Promoting tmp/research/foo.md → feature | Move to docs/ first, advance tracker second |
.claude/rules/docs-currency.md — claude-plugins' dogfood version of this ruleblueprint-plugin:blueprint-curate-docs — mechanics of producing curated rule entriesblueprint-plugin:blueprint-sync — drift detection for generated docsblueprint-plugin:feature-tracking — tracker entry mechanics.claude/rules/conventional-commits.md — commit types that co-evolve with docsEvidence: research landed without a same-commit
docs/update — the spec had to be reconstructed in a follow-up PR. The inverse pattern (same-commit code + spec) survived grep-based re-investigation months later without loss.
npx claudepluginhub laurigates/claude-plugins --plugin blueprint-pluginAudits and updates project documentation (README, ARCHITECTURE, CHANGELOG, etc.) after code changes are committed but before PR merge. Automates factual corrections and flags subjective decisions.
Writes AI-optimized docs like README, CLAUDE.md, AGENTS.md, commit messages, PR descriptions using tables, checklists, absolute paths, invariants for cold project starts.
Enforces documentation standards across design docs, folder READMEs, source code interfaces, and test cases with pre-commit linting for structural validation.