@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.
- package/agents/review-task-verifier.md +22 -10
- package/package.json +1 -1
- package/skills/link-dependencies/SKILL.md +60 -33
- package/skills/start-discussion/references/display-options.md +44 -15
- package/skills/start-discussion/references/gather-context-continue.md +2 -0
- package/skills/start-discussion/references/gather-context-fresh.md +6 -0
- package/skills/start-discussion/references/gather-context-research.md +2 -2
- package/skills/start-implementation/SKILL.md +114 -47
- package/skills/start-planning/SKILL.md +94 -36
- package/skills/start-research/references/gather-context.md +4 -4
- package/skills/start-review/SKILL.md +14 -123
- package/skills/start-review/references/display-plans.md +103 -0
- package/skills/start-review/references/invoke-skill.md +32 -0
- package/skills/start-review/references/select-plans.md +41 -0
- package/skills/start-specification/references/analysis-flow.md +2 -0
- package/skills/start-specification/references/confirm-continue.md +21 -1
- package/skills/start-specification/references/confirm-create.md +15 -1
- package/skills/start-specification/references/confirm-refine.md +9 -1
- package/skills/start-specification/references/confirm-unify.md +12 -0
- package/skills/start-specification/references/display-analyze.md +21 -2
- package/skills/start-specification/references/display-blocks.md +11 -6
- package/skills/start-specification/references/display-groupings.md +20 -13
- package/skills/start-specification/references/display-single-grouped.md +13 -6
- package/skills/start-specification/references/display-single-has-spec.md +15 -7
- package/skills/start-specification/references/display-single-no-spec.md +13 -9
- package/skills/start-specification/references/display-single.md +0 -2
- package/skills/start-specification/references/display-specs-menu.md +21 -6
- package/skills/status/SKILL.md +18 -11
- package/skills/technical-implementation/SKILL.md +45 -37
- package/skills/technical-implementation/references/steps/analysis-loop.md +53 -47
- package/skills/technical-implementation/references/steps/task-loop.md +48 -42
- package/skills/technical-planning/SKILL.md +25 -21
- package/skills/technical-planning/references/steps/analyze-task-graph.md +36 -32
- package/skills/technical-planning/references/steps/author-tasks.md +12 -10
- package/skills/technical-planning/references/steps/define-phases.md +13 -11
- package/skills/technical-planning/references/steps/define-tasks.md +10 -8
- package/skills/technical-planning/references/steps/plan-construction.md +15 -13
- package/skills/technical-planning/references/steps/plan-review.md +5 -5
- package/skills/technical-planning/references/steps/resolve-dependencies.md +9 -7
- package/skills/technical-planning/references/steps/review-integrity.md +56 -54
- package/skills/technical-planning/references/steps/review-traceability.md +56 -54
- package/skills/technical-research/SKILL.md +12 -10
- package/skills/technical-review/references/invoke-task-verifiers.md +37 -47
- package/skills/technical-specification/references/specification-guide.md +74 -66
- 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
|
|
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
|
-
##
|
|
33
|
+
## Create Output Directory
|
|
33
34
|
|
|
34
|
-
|
|
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
|
-
|
|
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
|
|
86
|
+
Once all batches have completed:
|
|
99
87
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
- Collect all
|
|
103
|
-
-
|
|
104
|
-
-
|
|
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
|
-
|
|
76
|
-
|
|
77
|
-
|
|
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
|
-
|
|
83
|
-
|
|
84
|
-
|
|
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
|
-
|
|
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
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
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
|
-
|
|
652
|
-
|
|
653
|
-
|
|
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
|
-
|
|
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
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
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
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
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
|
|