Initialize Blueprint Development in this project.
When to Use This Skill
| Use this skill when... |
Use blueprint-upgrade instead when... |
The project has no docs/blueprint/manifest.json yet |
The project already has a manifest at an older format version |
| You're bootstrapping a new project's PRD/ADR/PRP directories |
You're migrating v1.x→v2, v2→v3, or v3.x→v3.y |
| You want to enable feature tracking and decision detection from scratch |
Use blueprint-derive-plans to populate PRDs/ADRs/PRPs after init |
| You're configuring task scheduling for the first time |
Use blueprint-execute instead when you want auto-detection of next step |
Steps
- Check if already initialized:
1a. Detect monorepo context (format_version 3.3.0+):
- Walk upward from the current directory looking for an ancestor
docs/blueprint/manifest.json (stop at the repo root or $HOME).
- If an ancestor root manifest exists, this init is creating a child
workspace. Capture the relative path from the child back to the root.
- Additionally scan descendants (max depth 4, skipping
node_modules,
.git, dist, build, target, .venv) for existing
docs/blueprint/manifest.json. If any are found, this init is creating a
root that will own existing children.
- Otherwise this is a standalone blueprint (no
workspaces block written).
Use AskUserQuestion (only when ancestor root detected):
question: "Found a parent blueprint at {parent_path}. Register this as a child workspace?"
options:
- label: "Yes - register as child"
description: "Writes workspaces.role=child + root_relative_path; root picks it up on next /blueprint:workspace-scan"
- label: "No - treat as standalone"
description: "No workspaces block written; this project is independent"
Ask about feature tracking (use AskUserQuestion):
question: "Would you like to enable feature tracking?"
options:
- label: "Yes - Track implementation against requirements"
description: "Creates feature-tracker.json to track FR codes from a requirements document"
- label: "No - Skip feature tracking"
description: "Can be added later with /blueprint:feature-tracker-sync"
If "Yes" selected:
a. Search for markdown files in the project that contain requirements, features, or user stories
b. Auto-detect the most likely source document based on content analysis
c. Create docs/blueprint/feature-tracker.json from template using the detected source
d. Set has_feature_tracker: true in manifest
Ask about document migration (use AskUserQuestion):
Search for existing markdown documentation files across the project (excluding standard files like README.md, CHANGELOG.md, CONTRIBUTING.md, LICENSE.md, CODE_OF_CONDUCT.md, SECURITY.md).
# Find markdown files that look like documentation (not standard repo files)
find . -name '*.md' -not -path '*/node_modules/*' -not -path '*/.git/*' | grep -viE '(README|CHANGELOG|CONTRIBUTING|LICENSE|CODE_OF_CONDUCT|SECURITY)\.md$'
Before recommending migration, measure cross-reference density. Migrating
a doc into docs/{prds,adrs,prps}/ rewrites its path, breaking every
reference to it. For each candidate doc, grep the repo for references to its
path from outside docs/ (README, scripts, CI, .rulesync/) and inter-doc
links:
# Count references to each candidate doc path (skip the doc itself)
for doc in $candidate_docs; do
base=$(basename "$doc")
refs=$(grep -rIl --exclude-dir=.git --exclude-dir=node_modules "$base" . | grep -v "^./$doc$" | wc -l | tr -d ' ')
ext=$(grep -rIl --exclude-dir=.git --exclude-dir=node_modules --exclude-dir=docs "$base" . | wc -l | tr -d ' ')
echo "$doc total=$refs outside_docs=$ext"
done
A doc whose path is referenced outside docs/ (build scripts, CI, README,
.rulesync/) is expensive to migrate — every reference must be rewritten,
including build-critical files. Blueprint only needs the empty
docs/{prds,adrs,prps}/ for future derived docs, so "leave in place" is a
safe default when migration is expensive.
If documentation files found (e.g., REQUIREMENTS.md, ARCHITECTURE.md, DESIGN.md, docs in non-standard locations):
- Default to recommending migration (
label: "Yes, migrate documents (Recommended)") only when no candidate doc is referenced outside docs/.
- When one or more candidate docs are referenced outside
docs/, DROP the "(Recommended)" marker from the migrate option and surface the reference count so the user judges the cost. Prefer steering toward "leave in place".
Use AskUserQuestion:
question: "Found existing documentation: {file_list}. {N} of these are referenced outside docs/ ({ref_summary}). Migrate to Blueprint-managed paths?"
options:
# When NO candidate is referenced outside docs/: keep "(Recommended)" on migrate.
# When ANY candidate IS referenced outside docs/: drop "(Recommended)" and show counts.
- label: "Yes, migrate documents"
description: "Move docs into docs/prds/, docs/adrs/, docs/prps/ based on content type. Rewrites all {total_refs} references — including build-critical files when referenced outside docs/."
- label: "No, leave them in place"
description: "Blueprint creates new docs under docs/{prds,adrs,prps}/; existing docs stay where build tooling and READMEs already point. Safe default when docs are referenced outside docs/."
If "Yes" selected:
a. Analyze each file to determine type:
- Contains requirements, features, user stories →
docs/prds/
- Contains architecture decisions, trade-offs →
docs/adrs/
- Contains implementation plans →
docs/prps/
- General documentation →
docs/
b. Move files to appropriate docs/ subdirectory
c. Rename to kebab-case if needed (REQUIREMENTS.md → requirements.md)
d. Report migration results:
Migrated documentation:
- REQUIREMENTS.md → docs/prds/requirements.md
- ARCHITECTURE.md → docs/adrs/0001-initial-architecture.md
If no documentation files found: Skip this step silently.
Ask about maintenance task scheduling (use AskUserQuestion):
question: "How should blueprint maintenance tasks run?"
options:
- label: "Prompt before running (Recommended)"
description: "Always ask before running maintenance tasks like sync, validate"
- label: "Auto-run safe tasks"
description: "Read-only tasks (validate, sync, status) run automatically when due"
- label: "Fully automatic"
description: "All tasks run automatically on schedule, including writes like rule generation"
- label: "Manual only"
description: "Tasks only run when you explicitly invoke them"
Store selection for task_registry defaults:
- Prompt: all
auto_run: false, default schedules
- Auto-run safe: read-only tasks (
adr-validate, feature-tracker-sync, sync-ids) get auto_run: true; write tasks get false
- Fully automatic: all tasks get
auto_run: true, default schedules
- Manual only: all
auto_run: false, all schedules set to on-demand
The same selection sets automation.autonomy_level (the ADR-0020 level
model — what actually executes the auto_run contract):
- Prompt / Manual only →
autonomy_level: 0 (nothing runs unattended)
- Auto-run safe →
autonomy_level: 1 (deterministic due tasks run via
the SessionStart probe; due agent tasks surface as drift findings)
- Fully automatic →
autonomy_level: 2 (quiet autopilot also runs due
agent tasks in-session; interaction_mode defaults to quiet)
4a. Ask about generated-rules output path (use AskUserQuestion):
Only prompt when .claude/rules/ already exists and contains files (i.e., hand-authored rules that pre-date blueprint). Skip silently in fresh repos and use the default.
# Only prompt if .claude/rules/ has any content not created by blueprint
find .claude/rules -maxdepth 1 -type f -name '*.md'
Use AskUserQuestion (only when .claude/rules/ has existing content):
question: "Detected existing content in .claude/rules/. Where should blueprint write generated rules?"
options:
- label: ".claude/rules/blueprint/ (Recommended)"
description: "Isolated subdirectory — keeps blueprint-managed and hand-authored rules separate, prevents collisions on regenerate"
- label: ".claude/rules/ (flat)"
description: "Write generated rules alongside hand-authored ones; risk of overwrite when filenames collide"
Store the chosen path in structure.generated_rules_path in the manifest (defaults to .claude/rules/ when unset). This keeps blueprint-generate-rules and blueprint-derive-rules from clobbering hand-curated rule files (issue #1043).
Ask about decision detection (use AskUserQuestion):
question: "Would you like to enable automatic decision detection?"
options:
- label: "Yes - Detect decisions worth documenting"
description: "Claude will notice when conversations contain architecture decisions, feature requirements, or implementation plans that should be captured as ADR/PRD/PRP documents"
- label: "No - Manual commands only"
description: "Use /blueprint:derive-plans, /blueprint:prp-create explicitly when you want to create documents"
Set has_document_detection in manifest based on response.
If enabled:
Resolve the rules output directory before writing — honour the path chosen in
Step 4a (default .claude/rules/) rather than hardcoding it, so blueprint
does not collide with rulesync-managed or hand-authored rules (issue #1675):
RULES_DIR=$(jq -r '.structure.generated_rules_path // ".claude/rules/"' docs/blueprint/manifest.json)
mkdir -p "$RULES_DIR"
When the manifest is not yet written, use the Step 4a selection directly
(default .claude/rules/).
Copy document-management-rule.md template to $RULES_DIR/document-management.md.
This rule instructs Claude to watch for:
- Architecture decisions being made during discussion → prompt to create ADR
- Feature requirements being discussed or refined → prompt to create/update PRD
- Implementation plans being formulated → prompt to create PRP
Create directory structure:
Canonical document paths are at the top level of docs/, not under docs/blueprint/. docs/blueprint/ holds blueprint machinery only (manifest, feature-tracker, work-orders); docs/{adrs,prds,prps,trps}/ hold the documents themselves. Every /blueprint:derive-* skill writes to the top-level paths — keeping them consistent prevents the dual-corpus bug where init creates one layout and derive-* writes to another.
Execute the creation explicitly so the directories exist even when no document migration happened in Step 3:
mkdir -p docs/blueprint/work-orders/completed
mkdir -p docs/blueprint/work-orders/archived
mkdir -p docs/adrs
mkdir -p docs/prds
mkdir -p docs/prps
Note: docs/trps/ is created on-demand by /blueprint:derive-tests only — init does not pre-create it.
The resulting tree:
docs/
├── blueprint/
│ ├── manifest.json # Version tracking and configuration
│ ├── feature-tracker.json # Progress tracking (if enabled)
│ ├── work-orders/ # Task packages for subagents
│ │ ├── completed/
│ │ └── archived/
│ └── README.md # Blueprint documentation
├── prds/ # Product Requirements Documents (canonical)
├── adrs/ # Architecture Decision Records (canonical)
├── prps/ # Product Requirement Prompts (canonical)
└── trps/ # Test Regression Plans (created on-demand by /blueprint:derive-tests)
Claude configuration (in .claude/): — initial rules are written under
structure.generated_rules_path (default .claude/rules/; an isolated
subdirectory like .claude/rules/blueprint/ when Step 4a detected existing
content), shown here at the default location:
.claude/
├── rules/ # $RULES_DIR — generated_rules_path (default .claude/rules/)
│ ├── development.md # Development workflow rules
│ ├── testing.md # Testing requirements
│ └── document-management.md # Document organization rules (if detection enabled)
└── skills/ # Custom skill overrides (optional)
Create manifest.json (v3.4.0 schema — canonical filename is docs/blueprint/manifest.json, no dot prefix):
{
"format_version": "3.4.0",
"created_at": "[ISO timestamp]",
"updated_at": "[ISO timestamp]",
"created_by": {
"blueprint_plugin": "3.3.0"
},
"project": {
"name": "[detected from package.json/pyproject.toml or directory name]",
"detected_stack": []
},
"structure": {
"has_prds": true,
"has_adrs": true,
"has_prps": true,
"has_work_orders": true,
"has_modular_rules": true,
"has_feature_tracker": "[based on user choice]",
"has_document_detection": "[based on user choice]",
"claude_md_mode": "both",
"generated_rules_path": "[based on Step 4a; defaults to .claude/rules/ when prompt skipped]"
},
"feature_tracker": {
"file": "feature-tracker.json",
"source_document": "[auto-detected]",
"sync_targets": ["TODO.md"]
},
"generated": {
"rules": {},
"commands": {}
},
"custom_overrides": {
"skills": [],
"commands": []
},
"automation": {
"autonomy_level": "[based on maintenance task choice: 0 for Prompt/Manual, 1 for Auto-run safe, 2 for Fully automatic]",
"interaction_mode": "normal",
"work_orders": {
"auto_draft": false,
"auto_execute": false
}
},
"task_registry": {
"derive-plans": {
"enabled": true,
"auto_run": false,
"last_completed_at": null,
"last_result": null,
"schedule": "weekly",
"stats": {},
"context": {}
},
"derive-rules": {
"enabled": true,
"auto_run": false,
"last_completed_at": null,
"last_result": null,
"schedule": "weekly",
"stats": {},
"context": {}
},
"generate-rules": {
"enabled": true,
"auto_run": false,
"last_completed_at": null,
"last_result": null,
"schedule": "on-change",
"stats": {},
"context": {}
},
"adr-validate": {
"enabled": true,
"auto_run": "[based on maintenance task choice: true if auto-run safe, false otherwise]",
"last_completed_at": null,
"last_result": null,
"schedule": "weekly",
"stats": {},
"context": {}
},
"feature-tracker-sync": {
"enabled": true,
"auto_run": "[based on maintenance task choice: true if auto-run safe, false otherwise]",
"last_completed_at": null,
"last_result": null,
"schedule": "daily",
"stats": {},
"context": {}
},
"sync-ids": {
"enabled": true,
"auto_run": "[based on maintenance task choice: true if auto-run safe, false otherwise]",
"last_completed_at": null,
"last_result": null,
"schedule": "on-change",
"stats": {},
"context": {}
},
"claude-md": {
"enabled": true,
"auto_run": false,
"last_completed_at": null,
"last_result": null,
"schedule": "on-change",
"stats": {},
"context": {}
},
"curate-docs": {
"enabled": false,
"auto_run": false,
"last_completed_at": null,
"last_result": null,
"schedule": "on-demand",
"stats": {},
"context": {}
}
}
}
Note: Include feature_tracker section only if feature tracking is enabled.
Note: As of v3.2.0, progress tracking is consolidated into feature-tracker.json (work-overview.md removed).
Monorepo workspaces block (v3.3.0+), appended to the manifest based on the
detection from Step 1a:
- Child (ancestor blueprint found and user opted in):
"workspaces": {
"role": "child",
"root_relative_path": "[relative path from this dir to the root]"
}
- Root (descendant blueprints found):
"workspaces": {
"role": "root",
"discovery_strategy": "auto-cache",
"last_scanned_at": null,
"children": []
}
After writing the manifest, run /blueprint:workspace-scan once to
populate children[].
- Standalone: omit the
workspaces block entirely.
Create initial rules under the resolved $RULES_DIR (the Step 4a
generated_rules_path, default .claude/rules/) — never a hardcoded
.claude/rules/ — so they sit alongside, not on top of, rulesync-managed or
hand-authored rules (issue #1675):
RULES_DIR=$(jq -r '.structure.generated_rules_path // ".claude/rules/"' docs/blueprint/manifest.json)
mkdir -p "$RULES_DIR"
$RULES_DIR/development.md: TDD workflow, commit conventions
$RULES_DIR/testing.md: Test requirements, coverage expectations
$RULES_DIR/document-management.md: Document organization rules (if decision detection enabled)
8a. Register the rules just written in generated.rules — this step is not
optional. /blueprint:sync and the SessionStart drift probe detect staleness
by comparing a registered record's content_hash against the file on
disk, so a rule written here but never registered is invisible to both: a
local edit is undetectable, a revised template never propagates, and sync
reports clean over a set it cannot see. Nothing surfaces as an error
(issue #2331).
Register every rule Step 8 actually wrote — pass only the filenames that
exist (document-management.md only when decision detection was enabled in
Step 5):
bash "${CLAUDE_SKILL_DIR}/../../scripts/register-generated-rules.sh" \
--source "blueprint-init" \
--plugin-version "3.4.0" \
development.md testing.md document-management.md
The script is the same one /blueprint:generate-rules Step 5 uses, so the
two producers of $RULES_DIR cannot drift apart on the record shape or on
how the hash is computed. It resolves $RULES_DIR from
structure.generated_rules_path itself and writes, per rule, a
generatedRecord (source, generated_at, plugin_version,
content_hash, status) into the generated.rules object map defined by
blueprint-plugin/schemas/manifest.schema.json.
Key form — the manifest key is the rule's bare filename relative to
$RULES_DIR, including the .md extension (development.md, never
development and never .claude/rules/development.md). A consumer resolves
a rule as "$RULES_DIR/$key" and must not append .md. Check
REGISTERED= and STATUS=OK in the script's output before continuing.
Handle .gitignore:
- Always commit
CLAUDE.md and .claude/rules/ (shared project instructions)
- Add
docs/blueprint/work-orders/ to .gitignore (task-specific, may contain sensitive details)
- If secrets detected in
.claude/, warn user and suggest .gitignore entries
Report:
Blueprint Development initialized! (v3.3.0)
Blueprint structure created:
- docs/blueprint/manifest.json
- docs/blueprint/work-orders/
- docs/blueprint/README.md
[- docs/blueprint/feature-tracker.json (if feature tracking enabled)]
Project documentation (top-level — derive-* skills write here):
- docs/prds/ (Product Requirements Documents)
- docs/adrs/ (Architecture Decision Records)
- docs/prps/ (Product Requirement Prompts)
- docs/trps/ (Test Regression Plans — created on first /blueprint:derive-tests run)
Claude configuration:
- .claude/rules/ (modular rules, including generated)
- .claude/skills/ (custom skill overrides)
Configuration:
- Rules mode: both (CLAUDE.md + .claude/rules/)
[- Feature tracking: enabled]
[- Decision detection: enabled (Claude will prompt when discussions should become ADR/PRD/PRP)]
[- Task scheduling: {prompt|auto-run safe|fully automatic|manual only}]
[Migrated documentation:]
[- {original} → {destination} (for each migrated file)]
Architecture:
- Plugin layer: Generic commands from blueprint-plugin (auto-updated)
- Generated layer: Rules/commands regeneratable from docs/prds/
- Custom layer: Your overrides in .claude/skills/
Prompt for next action (use AskUserQuestion):
question: "Blueprint initialized. What would you like to do next?"
options:
- label: "Derive plans from git history (Recommended)"
description: "Analyze commit history, PRs, and issues to build PRDs, ADRs, and PRPs from existing project decisions"
- label: "Derive rules from codebase"
description: "Analyze commit patterns and code conventions to generate .claude/rules/"
- label: "Update CLAUDE.md"
description: "Generate or update CLAUDE.md with project context and blueprint integration"
- label: "I'm done for now"
description: "Exit - you can run /blueprint:status anytime to see options"
Based on selection:
- "Derive plans from git history" → Run
/blueprint:derive-plans
- "Derive rules from codebase" → Run
/blueprint:derive-rules
- "Update CLAUDE.md" → Run
/blueprint:claude-md
- "I'm done for now" → Show quick reference and exit
Quick Reference (show if user selects "I'm done for now"):
Management commands:
- /blueprint:status - Check version and configuration
- /blueprint:upgrade - Upgrade to latest format version
- /blueprint:derive-plans - Derive PRDs, ADRs, and PRPs from git history
- /blueprint:derive-rules - Derive rules from git commit decisions
- /blueprint:prp-create - Create a Product Requirement Prompt
- /blueprint:generate-rules - Generate rules from PRDs
- /blueprint:sync - Check for stale generated content
- /blueprint:promote - Move generated content to custom layer
- /blueprint:rules - Manage modular rules
- /blueprint:claude-md - Update CLAUDE.md
- /blueprint:feature-tracker-status - View feature completion stats
- /blueprint:feature-tracker-sync - Sync tracker with project files
1---2name: blueprint-init3description: Initialize Blueprint Development structure. Use when bootstrapping docs/blueprint/ with manifest, PRD/ADR/PRP directories, and feature tracking for the first time.4---5
6Initialize Blueprint Development in this project.
7
8## When to Use This Skill
9
10| Use this skill when... | Use blueprint-upgrade instead when... |
11|---|---|
12| The project has no `docs/blueprint/manifest.json` yet | The project already has a manifest at an older format version |
13| You're bootstrapping a new project's PRD/ADR/PRP directories | You're migrating v1.x→v2, v2→v3, or v3.x→v3.y |
14| You want to enable feature tracking and decision detection from scratch | Use blueprint-derive-plans to populate PRDs/ADRs/PRPs after init |
15| You're configuring task scheduling for the first time | Use blueprint-execute instead when you want auto-detection of next step |
16
17## Steps
18
191. **Check if already initialized**:
20 - Look for `docs/blueprint/manifest.json`
21 - If exists, read version and ask user:
22 ```
23 Use AskUserQuestion:
24 question: "Blueprint already initialized (v{version}). What would you like to do?"
25 options:
26 - "Check for upgrades" → run /blueprint:upgrade
27 - "Reinitialize (will reset manifest)" → continue with step 2
28 - "Cancel" → exit
29 ```
30
311a. **Detect monorepo context** (format_version 3.3.0+):
32 - Walk upward from the current directory looking for an ancestor
33 `docs/blueprint/manifest.json` (stop at the repo root or `$HOME`).
34 - If an ancestor root manifest exists, this init is creating a **child**
35 workspace. Capture the relative path from the child back to the root.
36 - Additionally scan descendants (max depth 4, skipping `node_modules`,
37 `.git`, `dist`, `build`, `target`, `.venv`) for existing
38 `docs/blueprint/manifest.json`. If any are found, this init is creating a
39 **root** that will own existing children.
40 - Otherwise this is a **standalone** blueprint (no `workspaces` block written).
41
42 ```
43 Use AskUserQuestion (only when ancestor root detected):
44 question: "Found a parent blueprint at {parent_path}. Register this as a child workspace?"
45 options:
46 - label: "Yes - register as child"
47 description: "Writes workspaces.role=child + root_relative_path; root picks it up on next /blueprint:workspace-scan"
48 - label: "No - treat as standalone"
49 description: "No workspaces block written; this project is independent"
50 ```
51
522. **Ask about feature tracking** (use AskUserQuestion):
53 ```
54 question: "Would you like to enable feature tracking?"
55 options:
56 - label: "Yes - Track implementation against requirements"
57 description: "Creates feature-tracker.json to track FR codes from a requirements document"
58 - label: "No - Skip feature tracking"
59 description: "Can be added later with /blueprint:feature-tracker-sync"
60 ```
61
62 **If "Yes" selected:**
63 a. Search for markdown files in the project that contain requirements, features, or user stories
64 b. Auto-detect the most likely source document based on content analysis
65 c. Create `docs/blueprint/feature-tracker.json` from template using the detected source
66 d. Set `has_feature_tracker: true` in manifest
67
683. **Ask about document migration** (use AskUserQuestion):
69 Search for existing markdown documentation files across the project (excluding standard files like README.md, CHANGELOG.md, CONTRIBUTING.md, LICENSE.md, CODE_OF_CONDUCT.md, SECURITY.md).
70
71 ```bash
72 # Find markdown files that look like documentation (not standard repo files)
73 find . -name '*.md' -not -path '*/node_modules/*' -not -path '*/.git/*' | grep -viE '(README|CHANGELOG|CONTRIBUTING|LICENSE|CODE_OF_CONDUCT|SECURITY)\.md$'
74 ```
75
76 **Before recommending migration, measure cross-reference density.** Migrating
77 a doc into `docs/{prds,adrs,prps}/` rewrites its path, breaking every
78 reference to it. For each candidate doc, grep the repo for references to its
79 path **from outside `docs/`** (README, scripts, CI, `.rulesync/`) and inter-doc
80 links:
81
82 ```bash
83 # Count references to each candidate doc path (skip the doc itself)
84 for doc in $candidate_docs; do
85 base=$(basename "$doc")
86 refs=$(grep -rIl --exclude-dir=.git --exclude-dir=node_modules "$base" . | grep -v "^./$doc$" | wc -l | tr -d ' ')
87 ext=$(grep -rIl --exclude-dir=.git --exclude-dir=node_modules --exclude-dir=docs "$base" . | wc -l | tr -d ' ')
88 echo "$doc total=$refs outside_docs=$ext"
89 done
90 ```
91
92 A doc whose path is **referenced outside `docs/`** (build scripts, CI, README,
93 `.rulesync/`) is expensive to migrate — every reference must be rewritten,
94 including build-critical files. Blueprint only needs the **empty**
95 `docs/{prds,adrs,prps}/` for *future* derived docs, so "leave in place" is a
96 safe default when migration is expensive.
97
98 **If documentation files found** (e.g., REQUIREMENTS.md, ARCHITECTURE.md, DESIGN.md, docs in non-standard locations):
99
100 - **Default to recommending migration** (`label: "Yes, migrate documents (Recommended)"`) **only when no candidate doc is referenced outside `docs/`**.
101 - **When one or more candidate docs are referenced outside `docs/`**, DROP the "(Recommended)" marker from the migrate option and surface the reference count so the user judges the cost. Prefer steering toward "leave in place".
102
103 ```
104 Use AskUserQuestion:
105 question: "Found existing documentation: {file_list}. {N} of these are referenced outside docs/ ({ref_summary}). Migrate to Blueprint-managed paths?"
106 options:
107 # When NO candidate is referenced outside docs/: keep "(Recommended)" on migrate.
108 # When ANY candidate IS referenced outside docs/: drop "(Recommended)" and show counts.
109 - label: "Yes, migrate documents"
110 description: "Move docs into docs/prds/, docs/adrs/, docs/prps/ based on content type. Rewrites all {total_refs} references — including build-critical files when referenced outside docs/."
111 - label: "No, leave them in place"
112 description: "Blueprint creates new docs under docs/{prds,adrs,prps}/; existing docs stay where build tooling and READMEs already point. Safe default when docs are referenced outside docs/."
113 ```
114
115 **If "Yes" selected:**
116 a. Analyze each file to determine type:
117 - Contains requirements, features, user stories → `docs/prds/`
118 - Contains architecture decisions, trade-offs → `docs/adrs/`
119 - Contains implementation plans → `docs/prps/`
120 - General documentation → `docs/`
121 b. Move files to appropriate `docs/` subdirectory
122 c. Rename to kebab-case if needed (REQUIREMENTS.md → requirements.md)
123 d. Report migration results:
124 ```
125 Migrated documentation:
126 - REQUIREMENTS.md → docs/prds/requirements.md
127 - ARCHITECTURE.md → docs/adrs/0001-initial-architecture.md
128 ```
129
130 **If no documentation files found:** Skip this step silently.
131
1324. **Ask about maintenance task scheduling** (use AskUserQuestion):
133 ```
134 question: "How should blueprint maintenance tasks run?"
135 options:
136 - label: "Prompt before running (Recommended)"
137 description: "Always ask before running maintenance tasks like sync, validate"
138 - label: "Auto-run safe tasks"
139 description: "Read-only tasks (validate, sync, status) run automatically when due"
140 - label: "Fully automatic"
141 description: "All tasks run automatically on schedule, including writes like rule generation"
142 - label: "Manual only"
143 description: "Tasks only run when you explicitly invoke them"
144 ```
145
146 Store selection for task_registry defaults:
147 - **Prompt**: all `auto_run: false`, default schedules
148 - **Auto-run safe**: read-only tasks (`adr-validate`, `feature-tracker-sync`, `sync-ids`) get `auto_run: true`; write tasks get `false`
149 - **Fully automatic**: all tasks get `auto_run: true`, default schedules
150 - **Manual only**: all `auto_run: false`, all schedules set to `on-demand`
151
152 The same selection sets `automation.autonomy_level` (the ADR-0020 level
153 model — what actually *executes* the auto_run contract):
154 - **Prompt** / **Manual only** → `autonomy_level: 0` (nothing runs unattended)
155 - **Auto-run safe** → `autonomy_level: 1` (deterministic due tasks run via
156 the SessionStart probe; due agent tasks surface as drift findings)
157 - **Fully automatic** → `autonomy_level: 2` (quiet autopilot also runs due
158 agent tasks in-session; `interaction_mode` defaults to `quiet`)
159
1604a. **Ask about generated-rules output path** (use AskUserQuestion):
161
162 Only prompt when `.claude/rules/` already exists and contains files (i.e., hand-authored rules that pre-date blueprint). Skip silently in fresh repos and use the default.
163
164 ```bash
165 # Only prompt if .claude/rules/ has any content not created by blueprint
166 find .claude/rules -maxdepth 1 -type f -name '*.md'
167 ```
168
169 ```
170 Use AskUserQuestion (only when .claude/rules/ has existing content):
171 question: "Detected existing content in .claude/rules/. Where should blueprint write generated rules?"
172 options:
173 - label: ".claude/rules/blueprint/ (Recommended)"
174 description: "Isolated subdirectory — keeps blueprint-managed and hand-authored rules separate, prevents collisions on regenerate"
175 - label: ".claude/rules/ (flat)"
176 description: "Write generated rules alongside hand-authored ones; risk of overwrite when filenames collide"
177 ```
178
179 Store the chosen path in `structure.generated_rules_path` in the manifest (defaults to `.claude/rules/` when unset). This keeps `blueprint-generate-rules` and `blueprint-derive-rules` from clobbering hand-curated rule files (issue #1043).
180
1815. **Ask about decision detection** (use AskUserQuestion):
182 ```
183 question: "Would you like to enable automatic decision detection?"
184 options:
185 - label: "Yes - Detect decisions worth documenting"
186 description: "Claude will notice when conversations contain architecture decisions, feature requirements, or implementation plans that should be captured as ADR/PRD/PRP documents"
187 - label: "No - Manual commands only"
188 description: "Use /blueprint:derive-plans, /blueprint:prp-create explicitly when you want to create documents"
189 ```
190
191 Set `has_document_detection` in manifest based on response.
192
193 **If enabled:**
194 Resolve the rules output directory before writing — honour the path chosen in
195 Step 4a (default `.claude/rules/`) rather than hardcoding it, so blueprint
196 does not collide with rulesync-managed or hand-authored rules (issue #1675):
197
198 ```bash
199 RULES_DIR=$(jq -r '.structure.generated_rules_path // ".claude/rules/"' docs/blueprint/manifest.json)
200 mkdir -p "$RULES_DIR"
201 ```
202
203 When the manifest is not yet written, use the Step 4a selection directly
204 (default `.claude/rules/`).
205
206 Copy `document-management-rule.md` template to `$RULES_DIR/document-management.md`.
207 This rule instructs Claude to watch for:
208 - Architecture decisions being made during discussion → prompt to create ADR
209 - Feature requirements being discussed or refined → prompt to create/update PRD
210 - Implementation plans being formulated → prompt to create PRP
211
2126. **Create directory structure**:
213
214 **Canonical document paths** are at the **top level** of `docs/`, not under `docs/blueprint/`. `docs/blueprint/` holds blueprint machinery only (manifest, feature-tracker, work-orders); `docs/{adrs,prds,prps,trps}/` hold the documents themselves. Every `/blueprint:derive-*` skill writes to the top-level paths — keeping them consistent prevents the dual-corpus bug where init creates one layout and derive-* writes to another.
215
216 Execute the creation explicitly so the directories exist even when no document migration happened in Step 3:
217
218 ```bash
219 mkdir -p docs/blueprint/work-orders/completed
220 mkdir -p docs/blueprint/work-orders/archived
221 mkdir -p docs/adrs
222 mkdir -p docs/prds
223 mkdir -p docs/prps
224 ```
225
226 Note: `docs/trps/` is created on-demand by `/blueprint:derive-tests` only — init does not pre-create it.
227
228 The resulting tree:
229 ```
230 docs/
231 ├── blueprint/
232 │ ├── manifest.json # Version tracking and configuration
233 │ ├── feature-tracker.json # Progress tracking (if enabled)
234 │ ├── work-orders/ # Task packages for subagents
235 │ │ ├── completed/
236 │ │ └── archived/
237 │ └── README.md # Blueprint documentation
238 ├── prds/ # Product Requirements Documents (canonical)
239 ├── adrs/ # Architecture Decision Records (canonical)
240 ├── prps/ # Product Requirement Prompts (canonical)
241 └── trps/ # Test Regression Plans (created on-demand by /blueprint:derive-tests)
242 ```
243
244 **Claude configuration (in .claude/):** — initial rules are written under
245 `structure.generated_rules_path` (default `.claude/rules/`; an isolated
246 subdirectory like `.claude/rules/blueprint/` when Step 4a detected existing
247 content), shown here at the default location:
248 ```
249 .claude/
250 ├── rules/ # $RULES_DIR — generated_rules_path (default .claude/rules/)
251 │ ├── development.md # Development workflow rules
252 │ ├── testing.md # Testing requirements
253 │ └── document-management.md # Document organization rules (if detection enabled)
254 └── skills/ # Custom skill overrides (optional)
255 ```
256
2577. **Create `manifest.json`** (v3.4.0 schema — canonical filename is `docs/blueprint/manifest.json`, no dot prefix):
258 ```json
259 {
260 "format_version": "3.4.0",
261 "created_at": "[ISO timestamp]",
262 "updated_at": "[ISO timestamp]",
263 "created_by": {
264 "blueprint_plugin": "3.3.0"
265 },
266 "project": {
267 "name": "[detected from package.json/pyproject.toml or directory name]",
268 "detected_stack": []
269 },
270 "structure": {
271 "has_prds": true,
272 "has_adrs": true,
273 "has_prps": true,
274 "has_work_orders": true,
275 "has_modular_rules": true,
276 "has_feature_tracker": "[based on user choice]",
277 "has_document_detection": "[based on user choice]",
278 "claude_md_mode": "both",
279 "generated_rules_path": "[based on Step 4a; defaults to .claude/rules/ when prompt skipped]"
280 },
281 "feature_tracker": {
282 "file": "feature-tracker.json",
283 "source_document": "[auto-detected]",
284 "sync_targets": ["TODO.md"]
285 },
286 "generated": {
287 "rules": {},
288 "commands": {}
289 },
290 "custom_overrides": {
291 "skills": [],
292 "commands": []
293 },
294 "automation": {
295 "autonomy_level": "[based on maintenance task choice: 0 for Prompt/Manual, 1 for Auto-run safe, 2 for Fully automatic]",
296 "interaction_mode": "normal",
297 "work_orders": {
298 "auto_draft": false,
299 "auto_execute": false
300 }
301 },
302 "task_registry": {
303 "derive-plans": {
304 "enabled": true,
305 "auto_run": false,
306 "last_completed_at": null,
307 "last_result": null,
308 "schedule": "weekly",
309 "stats": {},
310 "context": {}
311 },
312 "derive-rules": {
313 "enabled": true,
314 "auto_run": false,
315 "last_completed_at": null,
316 "last_result": null,
317 "schedule": "weekly",
318 "stats": {},
319 "context": {}
320 },
321 "generate-rules": {
322 "enabled": true,
323 "auto_run": false,
324 "last_completed_at": null,
325 "last_result": null,
326 "schedule": "on-change",
327 "stats": {},
328 "context": {}
329 },
330 "adr-validate": {
331 "enabled": true,
332 "auto_run": "[based on maintenance task choice: true if auto-run safe, false otherwise]",
333 "last_completed_at": null,
334 "last_result": null,
335 "schedule": "weekly",
336 "stats": {},
337 "context": {}
338 },
339 "feature-tracker-sync": {
340 "enabled": true,
341 "auto_run": "[based on maintenance task choice: true if auto-run safe, false otherwise]",
342 "last_completed_at": null,
343 "last_result": null,
344 "schedule": "daily",
345 "stats": {},
346 "context": {}
347 },
348 "sync-ids": {
349 "enabled": true,
350 "auto_run": "[based on maintenance task choice: true if auto-run safe, false otherwise]",
351 "last_completed_at": null,
352 "last_result": null,
353 "schedule": "on-change",
354 "stats": {},
355 "context": {}
356 },
357 "claude-md": {
358 "enabled": true,
359 "auto_run": false,
360 "last_completed_at": null,
361 "last_result": null,
362 "schedule": "on-change",
363 "stats": {},
364 "context": {}
365 },
366 "curate-docs": {
367 "enabled": false,
368 "auto_run": false,
369 "last_completed_at": null,
370 "last_result": null,
371 "schedule": "on-demand",
372 "stats": {},
373 "context": {}
374 }
375 }
376 }
377 ```
378
379 Note: Include `feature_tracker` section only if feature tracking is enabled.
380 Note: As of v3.2.0, progress tracking is consolidated into feature-tracker.json (work-overview.md removed).
381
382 **Monorepo `workspaces` block (v3.3.0+)**, appended to the manifest based on the
383 detection from Step 1a:
384
385 - **Child** (ancestor blueprint found and user opted in):
386 ```json
387 "workspaces": {
388 "role": "child",
389 "root_relative_path": "[relative path from this dir to the root]"
390 }
391 ```
392 - **Root** (descendant blueprints found):
393 ```json
394 "workspaces": {
395 "role": "root",
396 "discovery_strategy": "auto-cache",
397 "last_scanned_at": null,
398 "children": []
399 }
400 ```
401 After writing the manifest, run `/blueprint:workspace-scan` once to
402 populate `children[]`.
403 - **Standalone**: omit the `workspaces` block entirely.
404
4058. **Create initial rules** under the resolved `$RULES_DIR` (the Step 4a
406 `generated_rules_path`, default `.claude/rules/`) — never a hardcoded
407 `.claude/rules/` — so they sit alongside, not on top of, rulesync-managed or
408 hand-authored rules (issue #1675):
409
410 ```bash
411 RULES_DIR=$(jq -r '.structure.generated_rules_path // ".claude/rules/"' docs/blueprint/manifest.json)
412 mkdir -p "$RULES_DIR"
413 ```
414
415 - `$RULES_DIR/development.md`: TDD workflow, commit conventions
416 - `$RULES_DIR/testing.md`: Test requirements, coverage expectations
417 - `$RULES_DIR/document-management.md`: Document organization rules (if decision detection enabled)
418
4198a. **Register the rules just written in `generated.rules`** — this step is not
420 optional. `/blueprint:sync` and the SessionStart drift probe detect staleness
421 by comparing a **registered** record's `content_hash` against the file on
422 disk, so a rule written here but never registered is invisible to both: a
423 local edit is undetectable, a revised template never propagates, and sync
424 reports clean over a set it cannot see. Nothing surfaces as an error
425 (issue #2331).
426
427 Register every rule Step 8 actually wrote — pass only the filenames that
428 exist (`document-management.md` only when decision detection was enabled in
429 Step 5):
430
431 ```bash
432 bash "${CLAUDE_SKILL_DIR}/../../scripts/register-generated-rules.sh" \
433 --source "blueprint-init" \
434 --plugin-version "3.4.0" \
435 development.md testing.md document-management.md
436 ```
437
438 The script is the same one `/blueprint:generate-rules` Step 5 uses, so the
439 two producers of `$RULES_DIR` cannot drift apart on the record shape or on
440 how the hash is computed. It resolves `$RULES_DIR` from
441 `structure.generated_rules_path` itself and writes, per rule, a
442 `generatedRecord` (`source`, `generated_at`, `plugin_version`,
443 `content_hash`, `status`) into the `generated.rules` **object map** defined by
444 `blueprint-plugin/schemas/manifest.schema.json`.
445
446 **Key form** — the manifest key is the rule's **bare filename relative to
447 `$RULES_DIR`, including the `.md` extension** (`development.md`, never
448 `development` and never `.claude/rules/development.md`). A consumer resolves
449 a rule as `"$RULES_DIR/$key"` and must **not** append `.md`. Check
450 `REGISTERED=` and `STATUS=OK` in the script's output before continuing.
451
4529. **Handle `.gitignore`**:
453 - Always commit `CLAUDE.md` and `.claude/rules/` (shared project instructions)
454 - Add `docs/blueprint/work-orders/` to `.gitignore` (task-specific, may contain sensitive details)
455 - If secrets detected in `.claude/`, warn user and suggest `.gitignore` entries
456
45710. **Report**:
458 ```
459 Blueprint Development initialized! (v3.3.0)
460
461 Blueprint structure created:
462 - docs/blueprint/manifest.json
463 - docs/blueprint/work-orders/
464 - docs/blueprint/README.md
465 [- docs/blueprint/feature-tracker.json (if feature tracking enabled)]
466
467 Project documentation (top-level — derive-* skills write here):
468 - docs/prds/ (Product Requirements Documents)
469 - docs/adrs/ (Architecture Decision Records)
470 - docs/prps/ (Product Requirement Prompts)
471 - docs/trps/ (Test Regression Plans — created on first /blueprint:derive-tests run)
472
473 Claude configuration:
474 - .claude/rules/ (modular rules, including generated)
475 - .claude/skills/ (custom skill overrides)
476
477 Configuration:
478 - Rules mode: both (CLAUDE.md + .claude/rules/)
479 [- Feature tracking: enabled]
480 [- Decision detection: enabled (Claude will prompt when discussions should become ADR/PRD/PRP)]
481 [- Task scheduling: {prompt|auto-run safe|fully automatic|manual only}]
482
483 [Migrated documentation:]
484 [- {original} → {destination} (for each migrated file)]
485
486 Architecture:
487 - Plugin layer: Generic commands from blueprint-plugin (auto-updated)
488 - Generated layer: Rules/commands regeneratable from docs/prds/
489 - Custom layer: Your overrides in .claude/skills/
490 ```
491
49211. **Prompt for next action** (use AskUserQuestion):
493 ```
494 question: "Blueprint initialized. What would you like to do next?"
495 options:
496 - label: "Derive plans from git history (Recommended)"
497 description: "Analyze commit history, PRs, and issues to build PRDs, ADRs, and PRPs from existing project decisions"
498 - label: "Derive rules from codebase"
499 description: "Analyze commit patterns and code conventions to generate .claude/rules/"
500 - label: "Update CLAUDE.md"
501 description: "Generate or update CLAUDE.md with project context and blueprint integration"
502 - label: "I'm done for now"
503 description: "Exit - you can run /blueprint:status anytime to see options"
504 ```
505
506 **Based on selection:**
507 - "Derive plans from git history" → Run `/blueprint:derive-plans`
508 - "Derive rules from codebase" → Run `/blueprint:derive-rules`
509 - "Update CLAUDE.md" → Run `/blueprint:claude-md`
510 - "I'm done for now" → Show quick reference and exit
511
512**Quick Reference** (show if user selects "I'm done for now"):
513```
514Management commands:
515- /blueprint:status - Check version and configuration
516- /blueprint:upgrade - Upgrade to latest format version
517- /blueprint:derive-plans - Derive PRDs, ADRs, and PRPs from git history
518- /blueprint:derive-rules - Derive rules from git commit decisions
519- /blueprint:prp-create - Create a Product Requirement Prompt
520- /blueprint:generate-rules - Generate rules from PRDs
521- /blueprint:sync - Check for stale generated content
522- /blueprint:promote - Move generated content to custom layer
523- /blueprint:rules - Manage modular rules
524- /blueprint:claude-md - Update CLAUDE.md
525- /blueprint:feature-tracker-status - View feature completion stats
526- /blueprint:feature-tracker-sync - Sync tracker with project files
527```