From blueprints
Analyzes full codebase to generate or update Markdown blueprint files documenting all major systems in repo root/blueprints/.
How this skill is triggered — by the user, by Claude, or both
Slash command
/blueprints:generate-blueprintsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
blueprints:generate-blueprints - Generate comprehensive blueprint documentation for the entire codebase
blueprints:generate-blueprints - Generate comprehensive blueprint documentation for the entire codebase
/blueprints
Comprehensively document all systems in the codebase by creating or updating the blueprints/ directory at the repository root with technical documentation for each major system.
CRITICAL: Blueprints MUST be created at the repository root, never in subdirectories or packages.
{repo-root}/blueprints/{repo-root}/packages/foo/blueprints/{repo-root}/src/blueprints/Blueprints are repository-wide system design documents. Systems may span multiple packages or directories, but all blueprints belong in a single blueprints/ directory at the repo root.
You are tasked with comprehensively documenting all systems in this codebase.
Analyze project structure to identify all major systems:
Read existing documentation:
Create a system inventory:
Audit existing documentation using native tools:
Glob("blueprints/*.md") to find all existing blueprint filesRead("blueprints/{name}.md") to check each documented system:
Order systems by importance:
For each system, use the Write tool to create or update the blueprint file:
Write("blueprints/{system-name}.md", content)
Each file MUST include YAML frontmatter:
---
name: system-name
summary: Brief one-line description
---
# {System Name}
{Brief description}
## Overview
{Purpose and role in the larger system}
## Architecture
{Structure, components, data flow}
## API / Interface
{Public methods, commands, configuration}
## Behavior
{Normal operation, error handling, edge cases}
## Files
{Key implementation files with descriptions}
## Related Systems
{Links to related blueprints}
The blueprint index is automatically managed by the SessionStart hook. When you run han blueprints sync-index, the index is updated at .claude/rules/blueprints/blueprints-index.md.
You don't need to manually create or update any index files - just focus on creating quality blueprint content using the Write tool.
When documenting, actively prevent duplicates:
Glob("blueprints/*.md") and Grep to search for existing coverageRead("blueprints/{name}.md") to check contentAfter completing:
Remember: Use native tools (Glob, Grep, Read, Write) to manage blueprint files. The frontmatter format (name and summary fields) enables discovery via the auto-generated index.
npx claudepluginhub thebushidocollective/han --plugin blueprintsResearches codebase systems and generates or updates technical blueprint docs in repo root blueprints/ directory with architecture diagrams and data flows.
Generate a structured, self-maintaining codebase map: a set of atomic Markdown docs in .claude/.codebase-info/ that ground every future Claude session in how the project is built. Use when the user asks to "map the codebase", "document the codebase", "create codebase documentation", "generate architecture docs", "onboard me to this project", "what does this codebase do", "bootstrap codebase docs", "set up codebase-mapper", or "analyze the project structure". Works for any language/stack and for both existing projects and brand-new or empty ones. To refresh an existing map after code changes, use update-codebase-map instead.