Project Bootstrap Wizard
This skill guides you through an interactive 8-phase project setup wizard. It handles everything from initial planning to a fully configured, development-ready project.
Core Principles
- Follow the phases strictly - Execute Phase 1 through 8 in order. Do not skip or abbreviate any phase.
- Bootstrap only, no implementation - YPM prepares the project. No application code, test code, or implementation is created.
- Safety first - Avoid destructive operations. Always confirm with the user before proceeding at each phase boundary.
- Progress visualization - Display progress at the start of each phase using this format:
## [Project Name] - Bootstrap Progress
✅ Phase 1: Project Planning
🔄 Phase 2: Directory Creation ← Current
⏳ Phase 3: Documentation Setup
⏳ Phase 4: GitHub Integration
⏳ Phase 5: Git Workflow Setup
⏳ Phase 6: Environment Configuration
⏳ Phase 7: Documentation Rules
⏳ Phase 8: CLAUDE.md & Final Check
- Efficiency - Use templates, minimize unnecessary dialog, gather information effectively.
Phase Overview
| Phase |
Name |
Key Actions |
| 1 |
Project Planning |
Requirements gathering, tech stack selection |
| 2 |
Directory Creation |
Local directory, git init, initial README |
| 3 |
Documentation Setup |
docs/ structure, DDD/TDD/DRY principles |
| 4 |
GitHub Integration |
Repository creation, initial push |
| 5 |
Git Workflow Setup |
Branch strategy, protection rules, worktree |
| 6 |
Environment Config |
.gitignore, .claude/settings.json |
| 7 |
Documentation Rules |
Update policies, onboarding, PR templates |
| 8 |
CLAUDE.md & Final |
Project CLAUDE.md, final review, completion |
How to Execute
For each phase, read the corresponding reference file to get detailed instructions:
- Phase 1: Read
${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-1-planning.md
- Phase 2: Read
${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-2-directory.md
- Phase 3: Read
${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-3-documentation.md
- Phase 4: Read
${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-4-github.md
- Phase 5: Read
${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-5-gitflow.md
- Phase 6: Read
${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-6-environment.md
- Phase 7: Read
${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-7-doc-rules.md
- Phase 8: Read
${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-8-claude-md.md
Additional references (load as needed during relevant phases):
- Settings JSON template:
${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/settings-json-template.md
- .gitignore templates:
${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/gitignore-templates.md
Phase Transition Protocol
At the end of each phase:
- Verify all phase completion criteria are met (listed in the reference file)
- Report completed artifacts to the user
- Ask: "Phase N is complete. Proceed to Phase N+1?"
- Wait for user approval before reading the next phase reference and continuing
After All Phases Complete
Remind the user:
- YPM's job is done (bootstrap only, no implementation)
- Navigate to the new project directory
- Start a new Claude Code session there
- Follow the CLAUDE.md instructions to begin development
- YPM will automatically detect the project on next
/ypm:project-status-update
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: signalcompose-ypm-project-bootstrap3description: Project Bootstrap Wizard4---56# Project Bootstrap Wizard78This skill guides you through an **interactive 8-phase project setup wizard**. It handles everything from initial planning to a fully configured, development-ready project.910## Core Principles11121. **Follow the phases strictly** - Execute Phase 1 through 8 in order. Do not skip or abbreviate any phase.132. **Bootstrap only, no implementation** - YPM prepares the project. No application code, test code, or implementation is created.143. **Safety first** - Avoid destructive operations. Always confirm with the user before proceeding at each phase boundary.154. **Progress visualization** - Display progress at the start of each phase using this format:16 ```17 ## [Project Name] - Bootstrap Progress1819 ✅ Phase 1: Project Planning20 🔄 Phase 2: Directory Creation ← Current21 ⏳ Phase 3: Documentation Setup22 ⏳ Phase 4: GitHub Integration23 ⏳ Phase 5: Git Workflow Setup24 ⏳ Phase 6: Environment Configuration25 ⏳ Phase 7: Documentation Rules26 ⏳ Phase 8: CLAUDE.md & Final Check27 ```285. **Efficiency** - Use templates, minimize unnecessary dialog, gather information effectively.2930## Phase Overview3132| Phase | Name | Key Actions |33|-------|------|-------------|34| 1 | Project Planning | Requirements gathering, tech stack selection |35| 2 | Directory Creation | Local directory, git init, initial README |36| 3 | Documentation Setup | docs/ structure, DDD/TDD/DRY principles |37| 4 | GitHub Integration | Repository creation, initial push |38| 5 | Git Workflow Setup | Branch strategy, protection rules, worktree |39| 6 | Environment Config | .gitignore, .claude/settings.json |40| 7 | Documentation Rules | Update policies, onboarding, PR templates |41| 8 | CLAUDE.md & Final | Project CLAUDE.md, final review, completion |4243## How to Execute4445For each phase, read the corresponding reference file to get detailed instructions:4647- **Phase 1**: Read `${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-1-planning.md`48- **Phase 2**: Read `${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-2-directory.md`49- **Phase 3**: Read `${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-3-documentation.md`50- **Phase 4**: Read `${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-4-github.md`51- **Phase 5**: Read `${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-5-gitflow.md`52- **Phase 6**: Read `${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-6-environment.md`53- **Phase 7**: Read `${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-7-doc-rules.md`54- **Phase 8**: Read `${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/phase-8-claude-md.md`5556**Additional references** (load as needed during relevant phases):57- **Settings JSON template**: `${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/settings-json-template.md`58- **.gitignore templates**: `${CLAUDE_PLUGIN_ROOT}/skills/project-bootstrap/references/gitignore-templates.md`5960## Phase Transition Protocol6162At the end of each phase:63641. Verify all phase completion criteria are met (listed in the reference file)652. Report completed artifacts to the user663. Ask: "Phase N is complete. Proceed to Phase N+1?"674. **Wait for user approval** before reading the next phase reference and continuing6869## After All Phases Complete7071Remind the user:7273- YPM's job is done (bootstrap only, no implementation)74- Navigate to the new project directory75- Start a new Claude Code session there76- Follow the CLAUDE.md instructions to begin development77- YPM will automatically detect the project on next `/ypm:project-status-update`7879---80> Converted and distributed by [TomeVault](https://tomevault.io/claim/signalcompose) — claim your Tome and manage your conversions.81<!-- tomevault:4.0:skill_md:2026-04-13 -->