Help us improve
Share bugs, ideas, or general feedback.
From blueprints
Analyzes full codebase to generate or update Markdown blueprint files documenting all major systems in repo root/blueprints/.
npx claudepluginhub thebushidocollective/han --plugin blueprintsHow 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
Researches codebase systems and generates or updates technical blueprint docs in repo root blueprints/ directory with architecture diagrams and data flows.
Generates documentation explaining codebase architecture, key components, data flow, and development guidelines. Useful for understanding unfamiliar code, creating onboarding docs, or documenting system architecture.
Share bugs, ideas, or general feedback.
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.