| name |
bootstrap-docs |
| model |
fast |
| description |
Add documentation structure to existing project |
| usage |
/bootstrap-docs |
Add docs-first documentation structure to an existing project.
/bootstrap-docs # Add docs/ structure to current project
- Adding documentation to an existing project that lacks
docs/
- Project already has source code but no structured docs
- Want docs-first methodology without recreating project
- NOT for new projects — use
/bootstrap-project instead
- Creates
docs/ directory structure
- Generates template files for each section
- Creates ADR template (001-template.md)
- Initializes roadmap with sections
- Creates persona template
- Sets up runbook templates (local-dev, deploy)
docs/
├── architecture/
│ └── README.md # Architecture overview
├── planning/
│ ├── roadmap.md # Sprint tracking
│ └── specs/ # Feature specs go here
├── decisions/
│ └── 001-template.md # ADR template
├── product/
│ ├── overview.md # Product overview
│ └── personas/ # User personas
└── runbooks/
├── local-dev.md # Local development setup
└── deploy.md # Deployment procedures
| File |
Purpose |
decisions/001-template.md |
ADR template with Status, Context, Decision, Consequences |
planning/roadmap.md |
Sprint tracking with Current/Backlog sections |
runbooks/local-dev.md |
Prerequisites, setup steps, common tasks |
runbooks/deploy.md |
Deployment checklist, rollback procedures |
- Full project:
/bootstrap-project (creates entire project)
- Design system:
/bootstrap-design-system (add design tokens)
- New feature:
/new-feature (use docs structure)
- New ADR:
/new-adr (create decision record)