@leeovery/claude-technical-workflows 2.1.23 → 2.1.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/agents/review-task-verifier.md +22 -10
  2. package/package.json +1 -1
  3. package/skills/link-dependencies/SKILL.md +60 -33
  4. package/skills/start-discussion/references/display-options.md +44 -15
  5. package/skills/start-discussion/references/gather-context-continue.md +2 -0
  6. package/skills/start-discussion/references/gather-context-fresh.md +6 -0
  7. package/skills/start-discussion/references/gather-context-research.md +2 -2
  8. package/skills/start-implementation/SKILL.md +114 -47
  9. package/skills/start-planning/SKILL.md +94 -36
  10. package/skills/start-research/references/gather-context.md +4 -4
  11. package/skills/start-review/SKILL.md +14 -123
  12. package/skills/start-review/references/display-plans.md +103 -0
  13. package/skills/start-review/references/invoke-skill.md +32 -0
  14. package/skills/start-review/references/select-plans.md +41 -0
  15. package/skills/start-specification/references/analysis-flow.md +2 -0
  16. package/skills/start-specification/references/confirm-continue.md +21 -1
  17. package/skills/start-specification/references/confirm-create.md +15 -1
  18. package/skills/start-specification/references/confirm-refine.md +9 -1
  19. package/skills/start-specification/references/confirm-unify.md +12 -0
  20. package/skills/start-specification/references/display-analyze.md +21 -2
  21. package/skills/start-specification/references/display-blocks.md +11 -6
  22. package/skills/start-specification/references/display-groupings.md +20 -13
  23. package/skills/start-specification/references/display-single-grouped.md +13 -6
  24. package/skills/start-specification/references/display-single-has-spec.md +15 -7
  25. package/skills/start-specification/references/display-single-no-spec.md +13 -9
  26. package/skills/start-specification/references/display-single.md +0 -2
  27. package/skills/start-specification/references/display-specs-menu.md +21 -6
  28. package/skills/status/SKILL.md +18 -11
  29. package/skills/technical-implementation/SKILL.md +45 -37
  30. package/skills/technical-implementation/references/steps/analysis-loop.md +53 -47
  31. package/skills/technical-implementation/references/steps/task-loop.md +48 -42
  32. package/skills/technical-planning/SKILL.md +25 -21
  33. package/skills/technical-planning/references/steps/analyze-task-graph.md +36 -32
  34. package/skills/technical-planning/references/steps/author-tasks.md +12 -10
  35. package/skills/technical-planning/references/steps/define-phases.md +13 -11
  36. package/skills/technical-planning/references/steps/define-tasks.md +10 -8
  37. package/skills/technical-planning/references/steps/plan-construction.md +15 -13
  38. package/skills/technical-planning/references/steps/plan-review.md +5 -5
  39. package/skills/technical-planning/references/steps/resolve-dependencies.md +9 -7
  40. package/skills/technical-planning/references/steps/review-integrity.md +56 -54
  41. package/skills/technical-planning/references/steps/review-traceability.md +56 -54
  42. package/skills/technical-research/SKILL.md +12 -10
  43. package/skills/technical-review/references/invoke-task-verifiers.md +37 -47
  44. package/skills/technical-specification/references/specification-guide.md +74 -66
  45. package/skills/view-plan/SKILL.md +3 -1
@@ -4,7 +4,7 @@
4
4
 
5
5
  ---
6
6
 
7
- This step dispatches `review-task-verifier` agents in parallel to verify ALL tasks across the selected plan(s). Each verifier independently checks one task for implementation, tests, and code quality.
7
+ This step dispatches `review-task-verifier` agents in batches to verify ALL tasks across the selected plan(s). Each verifier independently checks one task for implementation, tests, and code quality, writing its full findings to a file and returning a brief status.
8
8
 
9
9
  ---
10
10
 
@@ -26,15 +26,33 @@ From each plan in scope, list every task across all phases:
26
26
  - Note each task's description
27
27
  - Note each task's acceptance criteria
28
28
  - Note expected micro acceptance (test name)
29
+ - Assign each task a sequential **index** (1, 2, 3...) for file naming
29
30
 
30
31
  ---
31
32
 
32
- ## Dispatch Verifiers
33
+ ## Create Output Directory
33
34
 
34
- Dispatch **one verifier per task, all in parallel** via the Task tool.
35
+ For each topic in scope, ensure the review output directory exists:
36
+
37
+ ```bash
38
+ mkdir -p docs/workflow/review/{topic}
39
+ ```
40
+
41
+ ---
42
+
43
+ ## Batch Dispatch
44
+
45
+ Dispatch verifiers in **batches of 5** via the Task tool.
35
46
 
36
47
  - **Agent path**: `../../../agents/review-task-verifier.md`
37
48
 
49
+ 1. Group tasks into batches of 5
50
+ 2. For each batch:
51
+ - Dispatch all agents in the batch in parallel
52
+ - Wait for all agents in the batch to return
53
+ - Record statuses
54
+ 3. After all batches complete, proceed to aggregation
55
+
38
56
  Each verifier receives:
39
57
 
40
58
  1. **Plan task** — the specific task with acceptance criteria
@@ -42,63 +60,35 @@ Each verifier receives:
42
60
  3. **Plan path** — the full plan for phase context
43
61
  4. **Project skill paths** — from Step 2 discovery
44
62
  5. **Review checklist path** — `skills/technical-review/references/review-checklist.md`
63
+ 6. **Topic name** — for output file path
64
+ 7. **Task index** — sequential number for file naming (1, 2, 3...)
45
65
 
46
- ---
47
-
48
- ## Wait for Completion
49
-
50
- **STOP.** Do not proceed until all verifiers have returned.
51
-
52
- Each verifier returns a structured finding. If any verifier fails (error, timeout), record the failure and continue — aggregate what's available.
66
+ If any verifier fails (error, timeout), record the failure and continue — aggregate what's available.
53
67
 
54
68
  ---
55
69
 
56
70
  ## Expected Result
57
71
 
58
- Each verifier returns:
72
+ Each verifier returns a brief status:
59
73
 
60
74
  ```
61
- TASK: [Task name/description]
62
-
63
- ACCEPTANCE CRITERIA: [List from plan]
64
-
65
75
  STATUS: Complete | Incomplete | Issues Found
66
-
67
- SPEC CONTEXT: [Brief summary of relevant spec context]
68
-
69
- IMPLEMENTATION:
70
- - Status: [Implemented/Missing/Partial/Drifted]
71
- - Location: [file:line references]
72
- - Notes: [Any concerns]
73
-
74
- TESTS:
75
- - Status: [Adequate/Under-tested/Over-tested/Missing]
76
- - Coverage: [What is/isn't tested]
77
- - Notes: [Specific issues]
78
-
79
- CODE QUALITY:
80
- - Project conventions: [Followed/Violations/N/A]
81
- - SOLID principles: [Good/Concerns]
82
- - Complexity: [Low/Acceptable/High]
83
- - Modern idioms: [Yes/Opportunities]
84
- - Readability: [Good/Concerns]
85
- - Issues: [Specific problems if any]
86
-
87
- BLOCKING ISSUES:
88
- - [List any issues that must be fixed]
89
-
90
- NON-BLOCKING NOTES:
91
- - [Suggestions for improvement]
76
+ FINDINGS_COUNT: {N blocking issues}
77
+ SUMMARY: {1 sentence}
92
78
  ```
93
79
 
80
+ Full findings are written to `docs/workflow/review/{topic}/qa-task-{index}.md`.
81
+
94
82
  ---
95
83
 
96
84
  ## Aggregate Findings
97
85
 
98
- Once all verifiers have returned, synthesize their reports:
86
+ Once all batches have completed:
99
87
 
100
- - Collect all tasks with `STATUS: Incomplete` or `STATUS: Issues Found` as blocking issues
101
- - Collect all test issues (under/over-tested)
102
- - Collect all code quality concerns
103
- - Include specific file:line references
104
- - Check overall plan completion (see [review-checklist.md](review-checklist.md) — Plan Completion Check)
88
+ 1. Read all `docs/workflow/review/{topic}/qa-task-*.md` files
89
+ 2. Synthesize findings from file contents:
90
+ - Collect all tasks with `STATUS: Incomplete` or `STATUS: Issues Found` as blocking issues
91
+ - Collect all test issues (under/over-tested)
92
+ - Collect all code quality concerns
93
+ - Include specific file:line references
94
+ - Check overall plan completion (see [review-checklist.md](review-checklist.md) — Plan Completion Check)
@@ -72,19 +72,19 @@ For each topic or subtopic, perform exhaustive extraction:
72
72
  ### 2. Synthesize and Present
73
73
  Present your understanding to the user **in the format it would appear in the specification**. Output the content as rendered markdown (not in a code block) — the user needs to read it naturally, not inspect raw formatting:
74
74
 
75
- > "Here's what I understand about [topic] based on the reference material. This is exactly what I'll write into the specification:
76
- >
77
- > [content as rendered markdown]
75
+ "Here's what I understand about [topic] based on the reference material. This is exactly what I'll write into the specification:
76
+
77
+ [content as rendered markdown]
78
78
 
79
79
  Then, **separately from the content above** (clear visual break), present the choices as raw markdown:
80
80
 
81
- > · · · · · · · · · · · ·
82
- > **To proceed:**
83
- > - **`y`/`yes`** — Approved. I'll add the above to the specification **verbatim** (exactly as shown, no modifications).
84
- > - **Or tell me what to change.**
85
- > · · · · · · · · · · · ·
81
+ · · · · · · · · · · · ·
82
+ **To proceed:**
83
+ - **`y`/`yes`** — Approved. I'll add the above to the specification **verbatim** (exactly as shown, no modifications).
84
+ - **Or tell me what to change.**
85
+ · · · · · · · · · · · ·
86
86
 
87
- **Do not wrap content or choices in a code block** — both must render as styled markdown. The content and choices must be visually distinct (not run together).
87
+ Content and choices must be visually distinct (not run together).
88
88
 
89
89
  > **CHECKPOINT**: After presenting, you MUST STOP and wait for the user's response. Do NOT proceed to logging. Do NOT present the next topic. WAIT.
90
90
 
@@ -491,18 +491,18 @@ After completing your review (steps 1-7):
491
491
 
492
492
  Present a numbered summary of everything you found (from your tracking file):
493
493
 
494
- > "I've completed my final review against all source material. I found [N] items:
495
- >
496
- > 1. **[Brief title]**
497
- > [2-4 line explanation: what was missed, where it came from, what it affects]
498
- >
499
- > 2. **[Brief title]**
500
- > [2-4 line explanation]
501
- >
502
- > 3. **[Brief title]**
503
- > [2-4 line explanation]
504
- >
505
- > Let's work through these one at a time, starting with #1."
494
+ "I've completed my final review against all source material. I found [N] items:
495
+
496
+ 1. **[Brief title]**
497
+ [2-4 line explanation: what was missed, where it came from, what it affects]
498
+
499
+ 2. **[Brief title]**
500
+ [2-4 line explanation]
501
+
502
+ 3. **[Brief title]**
503
+ [2-4 line explanation]
504
+
505
+ Let's work through these one at a time, starting with #1."
506
506
 
507
507
  Each item should have enough context that the user understands what they're about to discuss - not just a label, but clarity on what was missed and why it matters.
508
508
 
@@ -514,17 +514,21 @@ For each item, follow the **same workflow as the main specification process**:
514
514
  2. **Discuss** if needed - clarify ambiguities, answer questions, refine the content
515
515
  3. **Present for approval** - show as rendered markdown (not a code block) exactly what will be written to the specification. Then, separately, show the choices:
516
516
 
517
- > "Here's what I'll add to the specification:
518
- >
519
- > [content as rendered markdown]
520
- >
521
- > · · · · · · · · · · · ·
522
- > **To proceed:**
523
- > - **`y`/`yes`** — Approved. I'll add the above to the specification **verbatim**.
524
- > - **Or tell me what to change.**
525
- > · · · · · · · · · · · ·
517
+ "Here's what I'll add to the specification:
526
518
 
527
- **Do not wrap content or choices in a code block.** Content and choices must be visually distinct.
519
+ [content as rendered markdown]
520
+
521
+ > *Output the next fenced block as markdown (not a code block):*
522
+
523
+ ```
524
+ · · · · · · · · · · · ·
525
+ **To proceed:**
526
+ - **`y`/`yes`** — Approved. I'll add the above to the specification **verbatim**.
527
+ - **Or tell me what to change.**
528
+ · · · · · · · · · · · ·
529
+ ```
530
+
531
+ Content and choices must be visually distinct.
528
532
 
529
533
  4. **Wait for explicit approval** - same rules as always: `y`/`yes` or equivalent before writing
530
534
  5. **Log verbatim** when approved
@@ -630,15 +634,15 @@ Follow the same two-stage presentation as Phase 1:
630
634
 
631
635
  **Stage 1: Summary**
632
636
 
633
- > "I've completed the gap analysis of the specification. I found [N] items:
634
- >
635
- > 1. **[Brief title]** (Critical/Important/Minor)
636
- > [2-4 line explanation: what the gap is, why it matters for implementation]
637
- >
638
- > 2. **[Brief title]** (Critical/Important/Minor)
639
- > [2-4 line explanation]
640
- >
641
- > Let's work through these one at a time, starting with #1."
637
+ "I've completed the gap analysis of the specification. I found [N] items:
638
+
639
+ 1. **[Brief title]** (Critical/Important/Minor)
640
+ [2-4 line explanation: what the gap is, why it matters for implementation]
641
+
642
+ 2. **[Brief title]** (Critical/Important/Minor)
643
+ [2-4 line explanation]
644
+
645
+ Let's work through these one at a time, starting with #1."
642
646
 
643
647
  **Stage 2: Process One Item at a Time**
644
648
 
@@ -648,17 +652,21 @@ For each item:
648
652
  2. **Discuss** - work with the user to determine the correct specification content
649
653
  3. **Present for approval** - show as rendered markdown (not a code block) exactly what will be written. Then, separately, show the choices:
650
654
 
651
- > "Here's what I'll add to the specification:
652
- >
653
- > [content as rendered markdown]
654
- >
655
- > · · · · · · · · · · · ·
656
- > **To proceed:**
657
- > - **`y`/`yes`** — Approved. I'll add the above to the specification **verbatim**.
658
- > - **Or tell me what to change.**
659
- > · · · · · · · · · · · ·
655
+ "Here's what I'll add to the specification:
656
+
657
+ [content as rendered markdown]
658
+
659
+ > *Output the next fenced block as markdown (not a code block):*
660
660
 
661
- **Do not wrap content or choices in a code block.** Content and choices must be visually distinct.
661
+ ```
662
+ · · · · · · · · · · · ·
663
+ **To proceed:**
664
+ - **`y`/`yes`** — Approved. I'll add the above to the specification **verbatim**.
665
+ - **Or tell me what to change.**
666
+ · · · · · · · · · · · ·
667
+ ```
668
+
669
+ Content and choices must be visually distinct.
662
670
 
663
671
  4. **Wait for explicit approval**
664
672
  5. **Log verbatim** when approved
@@ -703,14 +711,14 @@ Before asking for sign-off, assess whether this is a **feature** or **cross-cutt
703
711
 
704
712
  Present your assessment to the user:
705
713
 
706
- > "This specification appears to be a **[feature/cross-cutting]** specification.
707
- >
708
- > [Brief rationale - e.g., "It defines a caching strategy that will inform how multiple features handle data retrieval, rather than being a standalone piece of functionality to build."]
709
- >
710
- > - **Feature specs** proceed to planning and implementation
711
- > - **Cross-cutting specs** are referenced by feature plans but don't have their own implementation plan
712
- >
713
- > Does this assessment seem correct?"
714
+ "This specification appears to be a **[feature/cross-cutting]** specification.
715
+
716
+ [Brief rationale - e.g., "It defines a caching strategy that will inform how multiple features handle data retrieval, rather than being a standalone piece of functionality to build."]
717
+
718
+ - **Feature specs** proceed to planning and implementation
719
+ - **Cross-cutting specs** are referenced by feature plans but don't have their own implementation plan
720
+
721
+ Does this assessment seem correct?"
714
722
 
715
723
  Wait for user confirmation before proceeding.
716
724
 
@@ -729,14 +737,14 @@ If either file still exists, delete it now. These are temporary working files th
729
737
 
730
738
  Once the type is confirmed and tracking files are removed, ask for final sign-off:
731
739
 
732
- > "The specification is ready for sign-off:
733
- > - **Type**: [feature/cross-cutting]
734
- > - **Status**: Complete
735
- >
736
- > [If feature]: This specification can proceed to planning
737
- > [If cross-cutting]: This specification will be surfaced as reference context when planning features
738
- >
739
- > Ready to mark as complete?"
740
+ "The specification is ready for sign-off:
741
+ - **Type**: [feature/cross-cutting]
742
+ - **Status**: Complete
743
+
744
+ [If feature]: This specification can proceed to planning
745
+ [If cross-cutting]: This specification will be surfaced as reference context when planning features
746
+
747
+ Ready to mark as complete?"
740
748
 
741
749
  ### Step 4: Update Frontmatter
742
750
 
@@ -38,8 +38,10 @@ Follow the reading reference to locate and read the actual plan content.
38
38
 
39
39
  Display a readable summary:
40
40
 
41
+ > *Output the next fenced block as a code block:*
42
+
41
43
  ```
42
- ## Plan: {topic}
44
+ Plan: {topic}
43
45
 
44
46
  **Format:** {format}
45
47