From blueprint-mode
Explain Blueprint Mode plugin and available commands. Use when the user asks about Blueprint features, how to use skills, or needs guidance on spec-driven development workflow.
How this skill is triggered — by the user, by Claude, or both
Slash command
/blueprint-mode:helpThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Explain Blueprint Mode plugin and available commands.
Explain Blueprint Mode plugin and available commands.
Invoked by: /blueprint:help or when user asks "how does blueprint work?", "what commands are available?", "how do I use specs?".
If a specific topic is provided, focus on that area. Otherwise, provide a general overview.
Topics:
commands - List all available skills with descriptionsworkflow - Explain the recommended development workflowspecs - How to work with specificationsadrs - How to work with Architecture Decision Recordspatterns - How to work with code patterns## Blueprint Mode
Blueprint Mode keeps humans in control of system design during AI-assisted development by documenting:
- **Specs** - What you're building and why (`docs/specs/`)
- **ADRs** - Architecture decisions with rationale (`docs/adrs/`)
- **Patterns** - Code examples to follow and avoid (`patterns/`)
- **Boundaries** - Rules for AI agents (`docs/specs/boundaries.md`)
### Getting Started
**New project:**
/blueprint:setup-repo
**Existing codebase:**
/blueprint:onboard
### Available Commands
| Command | Purpose |
|---------|---------|
| `/blueprint:setup-repo` | Create new project with spec structure |
| `/blueprint:onboard` | Add spec structure to existing codebase |
| `/blueprint:require` | Add functional or non-functional requirements |
| `/blueprint:decide` | Record tech/architecture decisions as ADRs |
| `/blueprint:good-pattern` | Capture approved code patterns |
| `/blueprint:bad-pattern` | Document anti-patterns to avoid |
| `/blueprint:supersede` | Replace or deprecate previous decisions |
| `/blueprint:list-adrs` | List all ADRs with status |
| `/blueprint:status` | Show overview of Blueprint structure |
| `/blueprint:validate` | Check code against documented specs |
| `/blueprint:help` | Show this help |
### Before Writing Code
**IMPORTANT:** Before implementing any feature, you should:
1. Check if a feature spec exists in `docs/specs/features/`
2. Read relevant ADRs (check `related_adrs` field in specs)
3. Review `docs/specs/boundaries.md` for rules
4. Check `patterns/good/` for examples to follow
5. Check `patterns/bad/anti-patterns.md` for what to avoid
Run `/blueprint:validate` to check if your code follows documented specs.
## Blueprint Commands
### Setup & Onboarding
| Command | Use When |
|---------|----------|
| `/blueprint:setup-repo` | Starting a brand new project |
| `/blueprint:onboard` | Adding Blueprint to an existing codebase |
### Documentation
| Command | Use When |
|---------|----------|
| `/blueprint:require [desc]` | Adding a new feature or quality requirement |
| `/blueprint:decide [topic]` | Making a technology or architecture choice |
| `/blueprint:good-pattern [file]` | Capturing code others should emulate |
| `/blueprint:bad-pattern [desc]` | Documenting code to avoid |
| `/blueprint:supersede [ADR]` | Replacing or retiring a previous decision |
### Discovery & Validation
| Command | Use When |
|---------|----------|
| `/blueprint:status` | Checking what's been documented |
| `/blueprint:list-adrs` | Reviewing all architecture decisions |
| `/blueprint:validate` | Verifying code matches specs |
| `/blueprint:help [topic]` | Getting help with Blueprint |
## Recommended Workflow
### 1. Set Up (Once)
**New project:**
/blueprint:setup-repo
This interviews you about your project and creates the full spec structure.
**Existing project:**
/blueprint:onboard
This analyzes your codebase and creates specs from what exists.
### 2. Document Decisions
When making a tech choice:
/blueprint:decide Use PostgreSQL because the team knows it well
When adding a feature requirement:
/blueprint:require Users can reset password via email
### 3. Capture Patterns
When you see good code:
/blueprint:good-pattern src/repositories/user.repository.ts
When you see code to avoid:
/blueprint:bad-pattern Using any type in TypeScript
### 4. Before Implementing
Always check specs before coding:
1. Read `docs/specs/features/` for what to build
2. Read `docs/adrs/` for how to build it
3. Read `docs/specs/boundaries.md` for rules to follow
4. Check `patterns/good/` for examples
### 5. Validate
After implementing:
/blueprint:validate
This checks your code against documented specs and patterns.
### 6. Evolve
When decisions change:
/blueprint:supersede ADR-003
This preserves history while recording the new decision.
## Working with Specs
Specs live in `docs/specs/` and define **what** you're building.
### Files
| Path | Purpose |
|------|---------|
| `product.md` | Project vision, users, success metrics |
| `tech-stack.md` | Technology choices |
| `boundaries.md` | Rules for AI agents (Always/Ask/Never) |
| `features/*.md` | Feature specs (discovered via globbing) |
| `non-functional/*.md` | NFRs by category (discovered via globbing) |
### Adding Requirements
**Functional requirement:**
/blueprint:require Users can export data as CSV
Creates a feature spec in `docs/specs/features/`.
**Non-functional requirement:**
/blueprint:require API response under 100ms P95
Creates `docs/specs/non-functional/performance.md`.
### Feature Spec Structure
```markdown
---
status: Planned | Active | Deprecated
module: src/[path]/
related_adrs: [001, 003]
---
# Feature Name
## Overview
What this feature does.
## User Stories
- As a [user], I want [capability] so that [benefit]
## Requirements
What must be true for this feature to work.
## Acceptance Criteria (optional)
- Given [context], when [action], then [outcome]
#### ADRs Topic
```markdown
## Working with ADRs
Architecture Decision Records live in `docs/adrs/` and capture **why** you made choices.
### Creating ADRs
/blueprint:decide Use PostgreSQL because the team has experience
ADRs can be:
- **Active** - Current decisions in use
- **Draft** - Incomplete, needs more info
- **Superseded** - Replaced by a newer decision
- **Deprecated** - Retired without replacement
### ADR Structure
```markdown
---
status: Active
date: 2025-01-25
---
# ADR-001: PostgreSQL as Database
## Context
What problem we're solving.
## Options Considered
- Option A: pros/cons
- Option B: pros/cons
## Decision
We chose X because [reason].
## Consequences
What this means for the project.
## Related
Links to other ADRs or specs.
When a decision changes:
/blueprint:supersede ADR-001
This creates a new ADR and marks the old one as superseded, preserving history.
/blueprint:list-adrs
/blueprint:list-adrs active
/blueprint:list-adrs database
#### Patterns Topic
```markdown
## Working with Patterns
Patterns live in `patterns/` and show **how** to write code.
### Good Patterns
Located in `patterns/good/`. These are real code examples to emulate.
**Capturing a pattern:**
/blueprint:good-pattern src/repositories/user.repository.ts
**Pattern file structure:**
```typescript
/**
* Repository Pattern Example
*
* USE THIS PATTERN WHEN:
* - Accessing database entities
* - Need consistent data access layer
*
* KEY ELEMENTS:
* 1. Single responsibility
* 2. Interface-based
*
* Related ADRs:
* - ADR-003: Repository pattern
*/
// --- Example Implementation ---
// ADR-003: Repository pattern
export class UserRepository {
// ... actual code
}
Located in patterns/bad/anti-patterns.md. These document what NOT to do.
Documenting an anti-pattern:
/blueprint:bad-pattern Inline SQL without parameterization
Anti-pattern entry structure:
## Security: SQL Injection Risk
**Severity:** Critical
### Don't Do This
[bad code example]
### Do This Instead
[good code example]
**Why:** [explanation]
Before writing code:
patterns/good/ for relevant examplespatterns/bad/anti-patterns.md for things to avoid
## After Display
Offer contextual suggestions based on the topic:
- General → "Run `/blueprint:status` to see what's documented in this project"
- Commands → "Try `/blueprint:help workflow` for the recommended development process"
- Workflow → "Start with `/blueprint:onboard` if you haven't set up Blueprint yet"
- Specs → "Run `/blueprint:require [description]` to add a requirement"
- ADRs → "Run `/blueprint:list-adrs` to see existing decisions"
- Patterns → "Run `/blueprint:good-pattern [file]` to capture an example"
npx claudepluginhub rickardp/blueprint-mode --plugin blueprint-modeInitializes Blueprint development structure: creates manifest.json, sets up optional feature tracking from requirements docs, migrates existing Markdown files to organized docs/ folders like prds/, adrs/.
Creates or updates technical blueprint documentation for features, APIs, and architecture. Searches existing blueprints first via Glob/Grep to avoid duplication, using standard structure and frontmatter.
Applies architectural patterns from previously studied codebases to the current project. Lists available blueprints, shows patterns within a blueprint, and implements a specific pattern step by step.