@@ -35,7 +35,7 @@ Unified TDD workflow skill combining TDD planning (Red-Green-Refactor task chain
3535 ┌───────────┐
3636 │ Confirm │─── Verify ──→ Phase 7
3737 │ (choice) │─── Execute ─→ Skill("workflow-execute")
38- └───────────┘─── Review ──→ /workflow: status
38+ └───────────┘─── Review ──→ Display session status inline
3939```
4040
4141## Key Design Principles
@@ -128,7 +128,7 @@ Plan Confirmation (User Decision Gate):
128128 └─ Decision (user choice):
129129 ├─ "Verify TDD Compliance" (Recommended) → Route to Phase 7 (tdd-verify)
130130 ├─ "Start Execution" → Skill(skill="workflow-execute")
131- └─ "Review Status Only" → Route to /workflow: status
131+ └─ "Review Status Only" → Display session status inline
132132```
133133
134134### Verify Mode
@@ -273,7 +273,7 @@ Phase 6: TDD Structure Validation (internal)
273273Plan Confirmation (User Decision Gate):
274274 ├─ "Verify TDD Compliance" (Recommended) → Route to Phase 7
275275 ├─ "Start Execution" → Skill(skill="workflow-execute")
276- └─ "Review Status Only" → Route to /workflow: status
276+ └─ "Review Status Only" → Display session status inline
277277```
278278
279279### Verify Mode
@@ -401,11 +401,11 @@ Similar to workflow-plan, a `planning-notes.md` can accumulate context across ph
401401| Error Type | Detection | Recovery Action |
402402| ------------| -----------| -----------------|
403403| Parsing failure | Empty/malformed output | Retry once, then report |
404- | Missing context-package | File read error | Re-run ` /workflow:tools: context-gather ` |
404+ | Missing context-package | File read error | Re-run Phase 2 ( context-gathering) |
405405| Invalid task JSON | jq parse error | Report malformed file path |
406406| Task count exceeds 18 | Count validation ≥19 | Request re-scope, split into multiple sessions |
407407| Missing cli_execution.id | All tasks lack ID | Regenerate tasks with phase 0 user config |
408- | Test-context missing | File not found | Re-run ` /workflow:tools: test-context-gather ` |
408+ | Test-context missing | File not found | Re-run Phase 3 ( test-coverage-analysis) |
409409| Phase timeout | No response | Retry phase, check CLI connectivity |
410410| CLI tool not available | Tool not in cli-tools.json | Fall back to alternative preferred tool |
411411
@@ -447,7 +447,7 @@ Similar to workflow-plan, a `planning-notes.md` can accumulate context across ph
447447- ** Plan Confirmation Gate** : Present user with choice (Verify → Phase 7 / Execute / Review Status)
448448- ** If user selects Verify** : Read phases/07-tdd-verify.md, execute Phase 7 in-process
449449- ** If user selects Execute** : Skill(skill="workflow-execute")
450- - ** If user selects Review** : Route to /workflow : status
450+ - ** If user selects Review** : Display session status inline
451451- ** Auto mode (workflowPreferences.autoYes)** : Auto-select "Verify TDD Compliance", then auto-continue to execute if APPROVED
452452- Update TaskCreate/TaskUpdate after each phase
453453- After each phase, automatically continue to next phase based on TaskList status
@@ -465,17 +465,17 @@ Similar to workflow-plan, a `planning-notes.md` can accumulate context across ph
465465
466466** Called by Plan Mode** (6 phases):
467467- ` /workflow:session:start ` - Phase 1: Create or discover TDD workflow session
468- - ` /workflow:tools: context-gather ` - Phase 2: Gather project context and analyze codebase
469- - ` /workflow:tools: test-context-gather ` - Phase 3: Analyze existing test patterns and coverage
470- - ` /workflow:tools: conflict-resolution` - Phase 4: Detect and resolve conflicts (conditional)
468+ - ` phases/02- context-gathering.md ` - Phase 2: Gather project context and analyze codebase (inline)
469+ - ` phases/03- test-coverage-analysis.md ` - Phase 3: Analyze existing test patterns and coverage (inline)
470+ - ` phases/04- conflict-resolution.md ` - Phase 4: Detect and resolve conflicts (inline, conditional)
471471- ` /compact ` - Phase 4: Memory optimization (if context approaching limits)
472- - ` /workflow:tools:task-generate- tdd` - Phase 5: Generate TDD tasks with Red-Green-Refactor cycles
472+ - ` phases/05- tdd-task-generation.md ` - Phase 5: Generate TDD tasks with Red-Green-Refactor cycles (inline)
473473
474474** Called by Verify Mode** :
475- - ` /workflow:tools: tdd-coverage-analysis ` - Phase 7: Test coverage and cycle analysis
475+ - ` phases/07- tdd-verify.md ` - Phase 7: Test coverage and cycle analysis (inline)
476476
477477** Follow-up Skills** :
478478- ` /workflow:tdd-verify ` - Verify TDD compliance (can also invoke via verify mode)
479479- ` /workflow:plan-verify ` - Verify plan quality and dependencies
480- - ` /workflow: status` - Review TDD task breakdown
480+ - Display session status inline - Review TDD task breakdown
481481- ` Skill(skill="workflow-execute") ` - Begin TDD implementation
0 commit comments