@leeovery/claude-technical-workflows 2.1.13 → 2.1.15
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/implementation-analysis-task-writer.md +26 -1
- package/package.json +1 -1
- package/skills/start-discussion/SKILL.md +2 -2
- package/skills/start-implementation/SKILL.md +3 -4
- package/skills/start-planning/SKILL.md +6 -3
- package/skills/start-review/SKILL.md +3 -5
- package/skills/start-specification/SKILL.md +21 -22
- package/skills/technical-discussion/SKILL.md +30 -0
- package/skills/technical-discussion/references/guidelines.md +0 -2
- package/skills/technical-discussion/references/template.md +0 -2
- package/skills/technical-research/SKILL.md +1 -1
|
@@ -26,6 +26,31 @@ You receive via the orchestrator's prompt:
|
|
|
26
26
|
3. **Calculate next phase number** — max existing phase + 1
|
|
27
27
|
4. **Read the authoring adapter** — understand how to create tasks in this format
|
|
28
28
|
5. **Create tasks in the plan** — follow the authoring adapter's instructions for each approved task, using the topic name to scope tasks to this plan (e.g., directory paths, task ID prefixes, project association)
|
|
29
|
+
6. **Update the Plan Index File** — append the new phase and task table to the Plan Index File body (see below)
|
|
30
|
+
|
|
31
|
+
## Update the Plan Index File
|
|
32
|
+
|
|
33
|
+
The Plan Index File (`docs/workflow/planning/{topic}.md`) is the single source of truth for planning progress. After creating task files, you **must** append the new phase and task table to its body.
|
|
34
|
+
|
|
35
|
+
Append at the end of the Plan Index File body:
|
|
36
|
+
|
|
37
|
+
```markdown
|
|
38
|
+
### Phase {N}: Analysis ({cycle description})
|
|
39
|
+
status: approved
|
|
40
|
+
|
|
41
|
+
**Goal**: Address findings from implementation analysis cycle {N}.
|
|
42
|
+
|
|
43
|
+
#### Tasks
|
|
44
|
+
| ID | Name | Edge Cases | Status |
|
|
45
|
+
|----|------|------------|--------|
|
|
46
|
+
| {topic}-{phase}-1 | {Task Title} | — | authored |
|
|
47
|
+
| {topic}-{phase}-2 | {Task Title} | — | authored |
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
- Use `status: approved` for the phase (it's pre-approved by the user in the approval gate)
|
|
51
|
+
- Use `authored` for each task status (the task files are fully written)
|
|
52
|
+
- Use `—` for edge cases (analysis tasks don't have separate edge case annotations)
|
|
53
|
+
- Task IDs must match the IDs used in the created task files
|
|
29
54
|
|
|
30
55
|
## Hard Rules
|
|
31
56
|
|
|
@@ -33,7 +58,7 @@ You receive via the orchestrator's prompt:
|
|
|
33
58
|
|
|
34
59
|
1. **Approved only** — only create tasks with `status: approved`. Never create tasks that are `pending` or `skipped`.
|
|
35
60
|
2. **No content modifications** — create tasks exactly as they appear in the staging file. Do not rewrite, reorder, or embellish.
|
|
36
|
-
3. **No git writes** — do not commit or stage. Writing plan task files/entries are your only writes.
|
|
61
|
+
3. **No git writes** — do not commit or stage. Writing plan task files/entries and updating the Plan Index File are your only writes.
|
|
37
62
|
4. **Authoring adapter is authoritative** — follow its instructions for task file structure, naming, and format.
|
|
38
63
|
|
|
39
64
|
## Your Output
|
package/package.json
CHANGED
|
@@ -232,10 +232,10 @@ Discussions:
|
|
|
232
232
|
|
|
233
233
|
How would you like to proceed?
|
|
234
234
|
|
|
235
|
+
- **`r`/`refresh`** — Force fresh research analysis
|
|
235
236
|
- From research — pick a topic number above (e.g., "1" or "research 1")
|
|
236
237
|
- Continue discussion — name one above (e.g., "continue {topic}")
|
|
237
238
|
- Fresh topic — describe what you want to discuss
|
|
238
|
-
- **`r`/`refresh`** — Force fresh research analysis
|
|
239
239
|
```
|
|
240
240
|
|
|
241
241
|
**If ONLY research exists:**
|
|
@@ -244,9 +244,9 @@ How would you like to proceed?
|
|
|
244
244
|
|
|
245
245
|
How would you like to proceed?
|
|
246
246
|
|
|
247
|
+
- **`r`/`refresh`** — Force fresh research analysis
|
|
247
248
|
- From research — pick a topic number above (e.g., "1" or "research 1")
|
|
248
249
|
- Fresh topic — describe what you want to discuss
|
|
249
|
-
- **`r`/`refresh`** — Force fresh research analysis
|
|
250
250
|
```
|
|
251
251
|
|
|
252
252
|
**If ONLY discussions exist:**
|
|
@@ -262,10 +262,9 @@ INCOMPLETE (planned but not implemented):
|
|
|
262
262
|
|
|
263
263
|
· · ·
|
|
264
264
|
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
3. Run /link-dependencies to wire up any recently completed plans
|
|
265
|
+
- **`i`/`implement`** — Implement the blocking dependencies first
|
|
266
|
+
- **`l`/`link`** — Run /link-dependencies to wire up recently completed plans
|
|
267
|
+
- Mark as "satisfied externally" — tell me which dependency was implemented outside this workflow
|
|
269
268
|
```
|
|
270
269
|
|
|
271
270
|
**STOP.** Wait for user response.
|
|
@@ -230,9 +230,12 @@ If any are relevant:
|
|
|
230
230
|
Note: The following cross-cutting specifications are still in-progress:
|
|
231
231
|
· {rate-limiting} - in-progress
|
|
232
232
|
|
|
233
|
-
These may contain architectural decisions relevant to this plan.
|
|
234
|
-
|
|
235
|
-
|
|
233
|
+
These may contain architectural decisions relevant to this plan.
|
|
234
|
+
|
|
235
|
+
· · ·
|
|
236
|
+
|
|
237
|
+
- **`c`/`continue`** — Plan without them
|
|
238
|
+
- **`s`/`stop`** — Complete them first (/start-specification)
|
|
236
239
|
```
|
|
237
240
|
|
|
238
241
|
**STOP.** Wait for user response.
|
|
@@ -142,11 +142,9 @@ Ask the user what code to review:
|
|
|
142
142
|
|
|
143
143
|
What code should I review?
|
|
144
144
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
Which approach?
|
|
145
|
+
- **`a`/`all`** — All changes since the plan was created
|
|
146
|
+
- **`g`/`git`** — Identify from git status
|
|
147
|
+
- Specific directories or files — tell me which
|
|
150
148
|
```
|
|
151
149
|
|
|
152
150
|
**STOP.** Wait for user response.
|
|
@@ -214,9 +214,9 @@ Check `cache.status` from discovery to determine which options to present.
|
|
|
214
214
|
|
|
215
215
|
What would you like to do?
|
|
216
216
|
|
|
217
|
-
-
|
|
218
|
-
-
|
|
219
|
-
-
|
|
217
|
+
- **`c`/`continue`** — Resume work on a spec in progress
|
|
218
|
+
- **`s`/`select`** — Choose from previously analyzed groupings ({cache.generated})
|
|
219
|
+
- **`r`/`refresh`** — Fresh analysis of discussion relationships
|
|
220
220
|
```
|
|
221
221
|
|
|
222
222
|
**STOP.** Wait for user response.
|
|
@@ -230,8 +230,8 @@ What would you like to do?
|
|
|
230
230
|
|
|
231
231
|
Note: A previous grouping analysis exists but is now outdated - discussion documents have changed since it was created. Re-analysis is required, but existing specification names will be preserved where groupings overlap.
|
|
232
232
|
|
|
233
|
-
-
|
|
234
|
-
-
|
|
233
|
+
- **`c`/`continue`** — Resume work on a spec in progress
|
|
234
|
+
- **`a`/`assess`** — Re-analyze discussions for combinations
|
|
235
235
|
```
|
|
236
236
|
|
|
237
237
|
**STOP.** Wait for user response.
|
|
@@ -243,13 +243,13 @@ Note: A previous grouping analysis exists but is now outdated - discussion docum
|
|
|
243
243
|
|
|
244
244
|
What would you like to do?
|
|
245
245
|
|
|
246
|
-
-
|
|
247
|
-
-
|
|
246
|
+
- **`c`/`continue`** — Resume work on a spec in progress
|
|
247
|
+
- **`a`/`assess`** — Analyze discussions for combinations
|
|
248
248
|
```
|
|
249
249
|
|
|
250
250
|
**STOP.** Wait for user response.
|
|
251
251
|
|
|
252
|
-
#### If "
|
|
252
|
+
#### If "continue"
|
|
253
253
|
|
|
254
254
|
```
|
|
255
255
|
Which specification would you like to continue?
|
|
@@ -260,13 +260,13 @@ Which specification would you like to continue?
|
|
|
260
260
|
|
|
261
261
|
**STOP.** Wait for user to pick, then skip to **Step 9**.
|
|
262
262
|
|
|
263
|
-
#### If "
|
|
263
|
+
#### If "select" (valid cache path)
|
|
264
264
|
|
|
265
265
|
Load groupings from cache and → Skip directly to **Step 7: Present Grouping Options**.
|
|
266
266
|
|
|
267
267
|
(Context was already gathered when the analysis was created - no need to ask again.)
|
|
268
268
|
|
|
269
|
-
#### If "
|
|
269
|
+
#### If "refresh"
|
|
270
270
|
|
|
271
271
|
Delete the existing cache to force regeneration:
|
|
272
272
|
```bash
|
|
@@ -275,7 +275,7 @@ rm docs/workflow/.cache/discussion-consolidation-analysis.md
|
|
|
275
275
|
|
|
276
276
|
→ Proceed to **Step 4: Gather Analysis Context**.
|
|
277
277
|
|
|
278
|
-
#### If "
|
|
278
|
+
#### If "assess" (no valid cache path)
|
|
279
279
|
|
|
280
280
|
→ Proceed to **Step 4: Gather Analysis Context**.
|
|
281
281
|
|
|
@@ -478,11 +478,11 @@ Coupling: {explanation}
|
|
|
478
478
|
|
|
479
479
|
How would you like to proceed?
|
|
480
480
|
|
|
481
|
-
-
|
|
482
|
-
-
|
|
483
|
-
-
|
|
484
|
-
- Individual specifications — create 1:1 specs (I'll ask which to start)
|
|
481
|
+
- **`p`/`proceed`** — As recommended (I'll ask which to start with)
|
|
482
|
+
- **`s`/`single`** — Consolidate ALL into one unified spec
|
|
483
|
+
- **`i`/`individual`** — Create 1:1 specs (I'll ask which to start)
|
|
485
484
|
- **`r`/`refresh`** — Re-analyze discussions
|
|
485
|
+
- Combine differently — tell me your preferred groupings
|
|
486
486
|
```
|
|
487
487
|
|
|
488
488
|
**Status Legend:**
|
|
@@ -502,7 +502,7 @@ How would you like to proceed?
|
|
|
502
502
|
|
|
503
503
|
Based on user's choice from Step 7:
|
|
504
504
|
|
|
505
|
-
#### If "
|
|
505
|
+
#### If "proceed"
|
|
506
506
|
|
|
507
507
|
```
|
|
508
508
|
Which would you like to start with?
|
|
@@ -521,7 +521,7 @@ List ALL items from the analysis: grouped specifications first, then independent
|
|
|
521
521
|
|
|
522
522
|
**STOP.** Wait for user to pick a number, then proceed to **Step 9**.
|
|
523
523
|
|
|
524
|
-
#### If "
|
|
524
|
+
#### If "combine differently"
|
|
525
525
|
|
|
526
526
|
```
|
|
527
527
|
Please describe your preferred groupings. Which discussions should be combined together?
|
|
@@ -566,9 +566,8 @@ Moving discussions between established specifications requires deleting the affe
|
|
|
566
566
|
|
|
567
567
|
· · ·
|
|
568
568
|
|
|
569
|
-
|
|
570
|
-
-
|
|
571
|
-
- Reconsider — adjust your groupings to affect fewer specs
|
|
569
|
+
- **`d`/`delete`** — Remove affected specs and create fresh ones for your new groupings
|
|
570
|
+
- **`r`/`reconsider`** — Adjust your groupings to affect fewer specs
|
|
572
571
|
```
|
|
573
572
|
|
|
574
573
|
**STOP.** Wait for user choice.
|
|
@@ -599,7 +598,7 @@ Which grouping would you like to start with?
|
|
|
599
598
|
|
|
600
599
|
**STOP.** Wait for user to pick, then proceed to **Step 9**.
|
|
601
600
|
|
|
602
|
-
#### If "
|
|
601
|
+
#### If "single"
|
|
603
602
|
|
|
604
603
|
Use "unified" as the specification name.
|
|
605
604
|
Check if `docs/workflow/specification/unified.md` already exists.
|
|
@@ -618,7 +617,7 @@ Proceed with unified specification?
|
|
|
618
617
|
|
|
619
618
|
**STOP.** Wait for user to confirm, then proceed to **Step 9** with all discussions as sources.
|
|
620
619
|
|
|
621
|
-
#### If "
|
|
620
|
+
#### If "individual"
|
|
622
621
|
|
|
623
622
|
```
|
|
624
623
|
Which discussion would you like to specify?
|
|
@@ -95,6 +95,36 @@ These are natural pauses, not every exchange. Document the reasoning and context
|
|
|
95
95
|
|
|
96
96
|
**Create the file early.** After understanding the topic and initial questions, create the discussion file with frontmatter, context, and the questions list. Don't wait until you have answers.
|
|
97
97
|
|
|
98
|
+
## Concluding a Discussion
|
|
99
|
+
|
|
100
|
+
When the user is ready to conclude the discussion:
|
|
101
|
+
|
|
102
|
+
1. Update frontmatter `status: concluded`
|
|
103
|
+
2. Final commit
|
|
104
|
+
3. Check for remaining in-progress discussions in `docs/workflow/discussion/`
|
|
105
|
+
|
|
106
|
+
**If other in-progress discussions exist:**
|
|
107
|
+
|
|
108
|
+
```
|
|
109
|
+
Discussion concluded: {topic}
|
|
110
|
+
|
|
111
|
+
Remaining in-progress discussions:
|
|
112
|
+
- {topic-1}
|
|
113
|
+
- {topic-2}
|
|
114
|
+
|
|
115
|
+
To continue, clear your context and run `/start-discussion` to pick up the next topic.
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
**If no in-progress discussions remain:**
|
|
119
|
+
|
|
120
|
+
```
|
|
121
|
+
Discussion concluded: {topic}
|
|
122
|
+
|
|
123
|
+
All discussions are now concluded.
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
**Do not offer to continue with another discussion in this session.** Each discussion benefits from a fresh context — continuing risks compaction-related information loss and reduced attention. Always advise the user to clear context first.
|
|
127
|
+
|
|
98
128
|
## Quick Reference
|
|
99
129
|
|
|
100
130
|
- **Approach**: **[meeting-assistant.md](references/meeting-assistant.md)** - Dual role, workflow
|
|
@@ -128,5 +128,3 @@ What we chose, why, the deciding factor, trade-offs accepted, confidence level.
|
|
|
128
128
|
- Major questions concluded with rationale
|
|
129
129
|
- Trade-offs understood
|
|
130
130
|
- Path forward clear
|
|
131
|
-
|
|
132
|
-
**When complete**: Update frontmatter `status: concluded` to signal ready for specification.
|
|
@@ -91,7 +91,7 @@ When you notice convergence, **flag it and give the user options**:
|
|
|
91
91
|
>
|
|
92
92
|
> - **`p`/`park`** — Mark as discussion-ready and move to another topic
|
|
93
93
|
> - **`k`/`keep`** — Keep digging, there's more to understand
|
|
94
|
-
> -
|
|
94
|
+
> - Comment — your call
|
|
95
95
|
|
|
96
96
|
**Never decide for the user.** Even if the answer seems obvious, flag it and ask.
|
|
97
97
|
|