HestAI workflow phase execution including D0→D1→D2→D3→B0→B1→B2→B3→B4→B5 sequence, agent assignments per phase, phase transition validation, and deliverable requirements. Use when starting new phase, determining next steps, or validating phase completion.
Provides HestAI workflow phase sequence, agent assignments, entry requirements, and deliverables for D0→D1→D2→D3→B0→B1→B2→B3→B4→B5 phases. Essential for phase navigation and transition validation.
Auto-activates when:
| Phase | Lead Agent | Entry Requirement | Deliverable |
|---|---|---|---|
| D0 |
| sessions-manager |
| New idea |
| Graduation package |
| D1 | idea-clarifier | Graduated idea | 2xx-PROJECT-NORTH-STAR.md |
| D2 | ideator → validator → synthesizer | D1 complete | 2xx-PROJECT-D2-DESIGN.md |
| D3 | design-architect → visual-architect | D2 complete | 2xx-PROJECT-D3-BLUEPRINT.md |
| Phase | Lead Agent | Entry Requirement | Deliverable |
|---|---|---|---|
| B0 | critical-design-validator | D3 complete | GO/NO-GO decision |
| B1 | task-decomposer → workspace-architect | B0 GO | Build plan + workspace |
| B2 | implementation-lead | B1 complete | Working code + tests |
| B3 | completion-architect | B2 complete | Integrated system |
| B4 | solution-steward | B3 complete | Production package |
| Phase | Lead Agent | Entry Requirement | Deliverable |
|---|---|---|---|
| B4_D1 | system-steward | B4 complete | Staging deployment |
| B4_D2 | solution-steward | Staging validated | Production deployment |
| B4_D3 | system-steward | Production deployed | Operational confirmation |
Scope: ≤3 days work, triggered by GitHub issue or user feedback
Process: Follow B4_DEPLOY for deployment
Protocol: /Users/shaunbuswell/.claude/protocols/ENHANCEMENT_LIFECYCLE.md
Purpose: Capture raw idea, explore possibilities, determine viability
Lead: sessions-manager
Entry: New idea or concept
Deliverable: Graduation package with manifest.json
Location: /Volumes/HestAI-Projects/0-ideation/{topic}/
Key Activities:
Purpose: Define problem, requirements, success criteria
Lead: idea-clarifier
Entry: Graduated D0 package
Deliverable: 2xx-PROJECT-NORTH-STAR.md
Location: coordination/workflow-docs/
Key Activities:
Purpose: Accelerate D1 understanding through parallel codebase exploration
When to Use:
Pattern:
# Launch 2-3 agents in parallel (max 3 for context overhead)
Task(subagent_type='Explore', prompt="Find similar features/patterns in codebase relevant to [problem]")
Task(subagent_type='Explore', prompt="Map high-level architecture relevant to [problem area]")
Task(subagent_type='research-analyst', prompt="Investigate external solutions/prior art for [problem type]")
# After all return:
# 1. Collect findings from all agents
# 2. Read key files identified by explorers
# 3. Synthesize into comprehensive picture for idea-clarifier
Agent Prompts (Examples):
Benefits:
Constraint: Max 3 parallel agents (context overhead)
Output: Each agent should return list of 5-10 key files to read for deep understanding
Purpose: Generate solution alternatives, evaluate options
Lead: ideator → validator → synthesizer
Entry: D1 North Star complete
Deliverable: 2xx-PROJECT-D2-DESIGN.md
Location: coordination/workflow-docs/
Key Activities:
Purpose: Detailed technical design, architecture specification
Lead: design-architect → visual-architect
Entry: D2 Design complete
Deliverable: 2xx-PROJECT-D3-BLUEPRINT.md
Location: coordination/workflow-docs/ → moves to dev/docs/architecture/ at B1 gate
Key Activities:
Purpose: GO/NO-GO gate, validate D3 Blueprint before build
Lead: critical-design-validator
Entry: D3 Blueprint complete
Deliverable: GO/NO-GO decision document
Location: coordination/workflow-docs/
Key Activities:
Purpose: Decompose work, setup workspace, create build plan
Lead: task-decomposer → workspace-architect
Entry: B0 GO decision
Deliverable: Build plan + workspace infrastructure
Location: coordination/phase-reports/
Key Activities:
Critical: B1_02 completes in ideation/, B1_03 starts in dev/ after manual migration
Purpose: Write code, implement features, create tests
Lead: implementation-lead
Entry: B1 complete, workspace ready
Deliverable: Working code + passing tests
Location: dev/
Key Activities:
Hub Pattern: implementation-lead coordinates specialist agents
Purpose: System integration, end-to-end testing, polish
Lead: completion-architect
Entry: B2 complete, features implemented
Deliverable: Integrated, tested system
Location: dev/
Key Activities:
Purpose: Package solution, documentation, handoff preparation
Lead: solution-steward
Entry: B3 complete, system integrated
Deliverable: Production-ready package
Location: dev/ + coordination/
Key Activities:
Purpose: Deploy to staging, validate configuration
Lead: system-steward
Entry: B4 complete
Deliverable: Staging deployment validated
Location: staging/
Key Activities:
Purpose: Deploy to production, operational handoff
Lead: solution-steward
Entry: Staging validated
Deliverable: Production deployment
Location: production/
Key Activities:
Purpose: Verify production operation, monitoring setup
Lead: system-steward
Entry: Production deployed
Deliverable: Operational confirmation
Location: production/
Key Activities:
Purpose: Small improvements, bug fixes, feature enhancements
Scope: ≤3 days work
Entry: GitHub issue or user feedback
Deliverable: Enhancement deployed
Location: dev/ + deployment via B4_DEPLOY
Key Activities:
ALWAYS check for coordination first:
if [ -e ".coord" ]; then
COORD=$(readlink .coord)
elif [ -d "coordination" ]; then
COORD="./coordination"
elif [ -d "../../../coordination" ]; then
COORD="../../../coordination"
else
echo "WARNING: No coordination found"
fi
Read status before any work:
Read("$COORD/PROJECT_STATUS.md")
# Extract: Current Phase: [phase]
# Extract: Active Issues: [list]
# Extract: Blocking Issues: [list]
{project-name}/
├── build/ # Development (worktree)
│ └── .coord → ../coordination
├── staging/ # Staging deployment
│ ├── claude_desktop_config_staging.json
│ └── .coord → ../coordination
├── production/ # Production deployment
│ ├── claude_desktop_config.json
│ └── .coord → ../coordination
└── coordination/ # All documentation
├── workflow-docs/ # Phase deliverables (D1, D2, D3, B0)
├── phase-reports/ # Phase reports (B1-B4)
├── planning-docs/ # CHARTER, ASSIGNMENTS, PROJECT-CONTEXT
└── ACTIVE-WORK.md # Status board
Checklist:
Checklist:
# D3 complete: Blueprint created in coordination/
# B0: Validate blueprint, GO/NO-GO decision
# B1: Create build plan, setup workspace
# B1 Migration Gate: Move D3 Blueprint to dev/docs/architecture/
# B1 complete: Workspace ready, quality gates passing
# Verify: npm run lint && npm run typecheck && npm run test → ALL PASSING
# B2: Start implementation with TDD
# B2 complete: Features implemented, tests passing
# B3: Integration and system testing
# B4: Package for delivery, documentation finalized
# B4 complete: Production-ready package
# B4_D1: Deploy to staging, validate
# B4_D2: Deploy to production
# B4_D3: Operational confirmation
ALWAYS include context:
Task(subagent_type="agent-name",
prompt="""
CONTEXT PATHS:
- Protocols: /Users/shaunbuswell/.claude/protocols/
- Workflow: /Volumes/HestAI/docs/workflow/001-WORKFLOW-NORTH-STAR.md
- Coordination: {readlink .coord || ./coordination}
- Current Phase: {from PROJECT_STATUS.md}
TASK: [actual task description]
""")