@leeovery/claude-technical-workflows 2.1.17 → 2.1.19

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/package.json +1 -1
  2. package/skills/link-dependencies/SKILL.md +2 -2
  3. package/skills/start-discussion/SKILL.md +6 -6
  4. package/skills/start-implementation/SKILL.md +3 -4
  5. package/skills/start-planning/SKILL.md +3 -4
  6. package/skills/start-research/SKILL.md +13 -88
  7. package/skills/start-research/references/gather-context.md +68 -0
  8. package/skills/start-research/references/invoke-skill.md +23 -0
  9. package/skills/start-review/SKILL.md +3 -4
  10. package/skills/start-specification/SKILL.md +19 -758
  11. package/skills/start-specification/references/analysis-flow.md +103 -0
  12. package/skills/start-specification/references/confirm-and-handoff.md +30 -0
  13. package/skills/start-specification/references/confirm-continue.md +90 -0
  14. package/skills/start-specification/references/confirm-create.md +73 -0
  15. package/skills/start-specification/references/confirm-refine.md +41 -0
  16. package/skills/start-specification/references/confirm-unify.md +63 -0
  17. package/skills/start-specification/references/display-analyze.md +86 -0
  18. package/skills/start-specification/references/display-blocks.md +42 -0
  19. package/skills/start-specification/references/display-groupings.md +168 -0
  20. package/skills/start-specification/references/display-single-grouped.md +70 -0
  21. package/skills/start-specification/references/display-single-has-spec.md +59 -0
  22. package/skills/start-specification/references/display-single-no-spec.md +54 -0
  23. package/skills/start-specification/references/display-single.md +25 -0
  24. package/skills/start-specification/references/display-specs-menu.md +132 -0
  25. package/skills/start-specification/references/handoffs/continue-concluded.md +24 -0
  26. package/skills/start-specification/references/handoffs/continue.md +22 -0
  27. package/skills/start-specification/references/handoffs/create-with-incorporation.md +30 -0
  28. package/skills/start-specification/references/handoffs/create.md +20 -0
  29. package/skills/start-specification/references/handoffs/unify-with-incorporation.md +32 -0
  30. package/skills/start-specification/references/handoffs/unify.md +21 -0
  31. package/skills/start-specification/scripts/discovery.sh +66 -12
  32. package/skills/technical-implementation/SKILL.md +15 -7
  33. package/skills/technical-implementation/references/steps/analysis-loop.md +15 -11
  34. package/skills/technical-implementation/references/steps/task-loop.md +6 -6
  35. package/skills/technical-planning/SKILL.md +12 -8
  36. package/skills/technical-planning/references/steps/analyze-task-graph.md +4 -4
  37. package/skills/technical-planning/references/steps/author-tasks.md +2 -2
  38. package/skills/technical-planning/references/steps/define-phases.md +2 -2
  39. package/skills/technical-planning/references/steps/define-tasks.md +2 -2
  40. package/skills/technical-planning/references/steps/plan-construction.md +2 -2
  41. package/skills/technical-planning/references/steps/resolve-dependencies.md +2 -2
  42. package/skills/technical-planning/references/steps/review-integrity.md +2 -2
  43. package/skills/technical-planning/references/steps/review-traceability.md +2 -2
  44. package/skills/technical-research/SKILL.md +2 -2
  45. package/skills/technical-specification/references/specification-guide.md +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leeovery/claude-technical-workflows",
3
- "version": "2.1.17",
3
+ "version": "2.1.19",
4
4
  "description": "Technical workflow skills & commands for Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Lee Overy <me@leeovery.com>",
@@ -161,11 +161,11 @@ UPDATED FILES:
161
161
  If any files were updated:
162
162
 
163
163
  ```
164
- · · ·
165
-
164
+ · · · · · · · · · · · ·
166
165
  Shall I commit these dependency updates?
167
166
  - **`y`/`yes`** — Commit the changes
168
167
  - **`n`/`no`** — Skip
168
+ · · · · · · · · · · · ·
169
169
  ```
170
170
 
171
171
  If yes, commit with message:
@@ -228,35 +228,35 @@ Discussions:
228
228
 
229
229
  **If research AND discussions exist:**
230
230
  ```
231
- · · ·
232
-
231
+ · · · · · · · · · · · ·
233
232
  How would you like to proceed?
234
233
 
235
234
  - **`r`/`refresh`** — Force fresh research analysis
236
235
  - From research — pick a topic number above (e.g., "1" or "research 1")
237
236
  - Continue discussion — name one above (e.g., "continue {topic}")
238
237
  - Fresh topic — describe what you want to discuss
238
+ · · · · · · · · · · · ·
239
239
  ```
240
240
 
241
241
  **If ONLY research exists:**
242
242
  ```
243
- · · ·
244
-
243
+ · · · · · · · · · · · ·
245
244
  How would you like to proceed?
246
245
 
247
246
  - **`r`/`refresh`** — Force fresh research analysis
248
247
  - From research — pick a topic number above (e.g., "1" or "research 1")
249
248
  - Fresh topic — describe what you want to discuss
249
+ · · · · · · · · · · · ·
250
250
  ```
251
251
 
252
252
  **If ONLY discussions exist:**
253
253
  ```
254
- · · ·
255
-
254
+ · · · · · · · · · · · ·
256
255
  How would you like to proceed?
257
256
 
258
257
  - Continue discussion — name one above (e.g., "continue {topic}")
259
258
  - Fresh topic — describe what you want to discuss
259
+ · · · · · · · · · · · ·
260
260
  ```
261
261
 
262
262
  **STOP.** Wait for user response before proceeding.
@@ -210,8 +210,7 @@ Then re-run /start-implementation.
210
210
 
211
211
  **Otherwise (multiple selectable plans, or implemented plans exist):**
212
212
  ```
213
- · · ·
214
-
213
+ · · · · · · · · · · · ·
215
214
  Select a plan (enter number):
216
215
  ```
217
216
 
@@ -260,11 +259,11 @@ INCOMPLETE (planned but not implemented):
260
259
  - {topic}: task {task_id} not yet completed
261
260
  -> This task must be completed first.
262
261
 
263
- · · ·
264
-
262
+ · · · · · · · · · · · ·
265
263
  - **`i`/`implement`** — Implement the blocking dependencies first
266
264
  - **`l`/`link`** — Run /link-dependencies to wire up recently completed plans
267
265
  - Mark as "satisfied externally" — tell me which dependency was implemented outside this workflow
266
+ · · · · · · · · · · · ·
268
267
  ```
269
268
 
270
269
  **STOP.** Wait for user response.
@@ -155,8 +155,7 @@ Omit either section entirely if it has no entries.
155
155
 
156
156
  **If multiple actionable items:**
157
157
  ```
158
- · · ·
159
-
158
+ · · · · · · · · · · · ·
160
159
  Select a specification (enter number):
161
160
  ```
162
161
 
@@ -232,10 +231,10 @@ Note: The following cross-cutting specifications are still in-progress:
232
231
 
233
232
  These may contain architectural decisions relevant to this plan.
234
233
 
235
- · · ·
236
-
234
+ · · · · · · · · · · · ·
237
235
  - **`c`/`continue`** — Plan without them
238
236
  - **`s`/`stop`** — Complete them first (/start-specification)
237
+ · · · · · · · · · · · ·
239
238
  ```
240
239
 
241
240
  **STOP.** Wait for user response.
@@ -10,14 +10,14 @@ Invoke the **technical-research** skill for this conversation.
10
10
 
11
11
  This is **Phase 1** of the six-phase workflow:
12
12
 
13
- | Phase | Focus | You |
14
- |-------|-------|-----|
15
- | **1. Research** | EXPLORE - ideas, feasibility, market, business | ◀ HERE |
16
- | 2. Discussion | WHAT and WHY - decisions, architecture, edge cases | |
17
- | 3. Specification | REFINE - validate into standalone spec | |
18
- | 4. Planning | HOW - phases, tasks, acceptance criteria | |
19
- | 5. Implementation | DOING - tests first, then code | |
20
- | 6. Review | VALIDATING - check work against artifacts | |
13
+ | Phase | Focus | You |
14
+ |-------------------|----------------------------------------------------|--------|
15
+ | **1. Research** | EXPLORE - ideas, feasibility, market, business | ◀ HERE |
16
+ | 2. Discussion | WHAT and WHY - decisions, architecture, edge cases | |
17
+ | 3. Specification | REFINE - validate into standalone spec | |
18
+ | 4. Planning | HOW - phases, tasks, acceptance criteria | |
19
+ | 5. Implementation | DOING - tests first, then code | |
20
+ | 6. Review | VALIDATING - check work against artifacts | |
21
21
 
22
22
  **Stay in your lane**: Explore freely. This is the time for broad thinking, feasibility checks, and learning. Surface options and tradeoffs — don't make decisions. When a topic converges toward a conclusion, that's a signal it's ready for discussion phase, not a cue to start deciding. Park it and move on.
23
23
 
@@ -43,95 +43,20 @@ Follow these steps EXACTLY as written. Do not skip steps or combine them. Presen
43
43
 
44
44
  Invoke the `/migrate` skill and assess its output.
45
45
 
46
- **If files were updated**: STOP and wait for the user to review the changes (e.g., via `git diff`) and confirm before proceeding to Step 1. Do not continue automatically.
46
+ **If files were updated**: STOP and wait for the user to review the changes (e.g., via `git diff`) and confirm before proceeding to Step 1.
47
47
 
48
48
  **If no updates needed**: Proceed to Step 1.
49
49
 
50
50
  ---
51
51
 
52
- ## Step 1: Get the Seed Idea
52
+ ## Step 1: Gather Context
53
53
 
54
- Ask:
55
-
56
- ```
57
- What's on your mind?
58
-
59
- - What idea or topic do you want to explore?
60
- - What prompted this - a problem, opportunity, curiosity?
61
- ```
62
-
63
- **STOP.** Wait for user response before proceeding.
54
+ Load **[gather-context.md](references/gather-context.md)** and follow its instructions as written.
64
55
 
65
56
  → Proceed to **Step 2**.
66
57
 
67
58
  ---
68
59
 
69
- ## Step 2: Understand Current Knowledge
70
-
71
- Ask:
72
-
73
- ```
74
- What do you already know?
75
-
76
- - Any initial thoughts or research you've done?
77
- - Constraints or context I should be aware of?
78
- ```
79
-
80
- **STOP.** Wait for user response before proceeding.
81
-
82
- → Proceed to **Step 3**.
83
-
84
- ---
85
-
86
- ## Step 3: Determine Starting Point
87
-
88
- Ask:
89
-
90
- ```
91
- Where should we start?
92
-
93
- - Technical feasibility? Market landscape? Business model?
94
- - Or just talk it through and see where it goes?
95
- ```
96
-
97
- **STOP.** Wait for user response before proceeding.
98
-
99
- → Proceed to **Step 4**.
100
-
101
- ---
102
-
103
- ## Step 4: Gather Final Context
104
-
105
- Ask:
106
-
107
- ```
108
- Any constraints or context I should know about upfront?
109
-
110
- (Or "none" if we're starting fresh)
111
- ```
112
-
113
- **STOP.** Wait for user response before proceeding.
114
-
115
- → Proceed to **Step 5**.
116
-
117
- ---
118
-
119
- ## Step 5: Invoke the Skill
120
-
121
- After completing the steps above, this skill's purpose is fulfilled.
122
-
123
- Invoke the [technical-research](../technical-research/SKILL.md) skill for your next instructions. Do not act on the gathered information until the skill is loaded - it contains the instructions for how to proceed.
124
-
125
- **Example handoff:**
126
- ```
127
- Research session for: {topic}
128
- Output: docs/workflow/research/exploration.md
129
-
130
- Context:
131
- - Prompted by: {problem, opportunity, or curiosity}
132
- - Already knows: {any initial thoughts or research, or "starting fresh"}
133
- - Starting point: {technical feasibility, market, business model, or "open exploration"}
134
- - Constraints: {any constraints mentioned, or "none"}
60
+ ## Step 2: Invoke the Skill
135
61
 
136
- Invoke the technical-research skill.
137
- ```
62
+ Load **[invoke-skill.md](references/invoke-skill.md)** and follow its instructions as written.
@@ -0,0 +1,68 @@
1
+ # Gather Context
2
+
3
+ *Reference for **[start-research](../SKILL.md)***
4
+
5
+ ---
6
+
7
+ Ask each question below **one at a time**. After each, **STOP** and wait for the user's response before proceeding.
8
+
9
+ ---
10
+
11
+ ## Seed Idea
12
+
13
+ Ask:
14
+
15
+ ```
16
+ What's on your mind?
17
+
18
+ - What idea or topic do you want to explore?
19
+ - What prompted this - a problem, opportunity, curiosity?
20
+ ```
21
+
22
+ **STOP.** Wait for user response before proceeding.
23
+
24
+ ---
25
+
26
+ ## Current Knowledge
27
+
28
+ Ask:
29
+
30
+ ```
31
+ What do you already know?
32
+
33
+ - Any initial thoughts or research you've done?
34
+ - Constraints or context I should be aware of?
35
+ ```
36
+
37
+ **STOP.** Wait for user response before proceeding.
38
+
39
+ ---
40
+
41
+ ## Starting Point
42
+
43
+ Ask:
44
+
45
+ ```
46
+ Where should we start?
47
+
48
+ - Technical feasibility? Market landscape? Business model?
49
+ - Or just talk it through and see where it goes?
50
+ ```
51
+
52
+ **STOP.** Wait for user response before proceeding.
53
+
54
+ ---
55
+
56
+ ## Final Context
57
+
58
+ Ask:
59
+
60
+ ```
61
+ Any constraints or context I should know about upfront?
62
+
63
+ (Or "none" if we're starting fresh)
64
+ ```
65
+
66
+ **STOP.** Wait for user response before proceeding.
67
+
68
+ ---
@@ -0,0 +1,23 @@
1
+ # Invoke the Skill
2
+
3
+ *Reference for **[start-research](../SKILL.md)***
4
+
5
+ ---
6
+
7
+ This skill's purpose is now fulfilled.
8
+
9
+ Invoke the [technical-research](../../technical-research/SKILL.md) skill for your next instructions. Do not act on the gathered information until the skill is loaded - it contains the instructions for how to proceed.
10
+
11
+ **Example handoff:**
12
+ ```
13
+ Research session for: {topic}
14
+ Output: docs/workflow/research/exploration.md
15
+
16
+ Context:
17
+ - Prompted by: {problem, opportunity, or curiosity}
18
+ - Already knows: {any initial thoughts or research, or "starting fresh"}
19
+ - Starting point: {technical feasibility, market, business model, or "open exploration"}
20
+ - Constraints: {any constraints mentioned, or "none"}
21
+
22
+ Invoke the technical-research skill.
23
+ ```
@@ -114,8 +114,7 @@ Available Plans:
114
114
  1. {topic-1} ({status}) - format: {format}, spec: {exists|missing}
115
115
  2. {topic-2} ({status}) - format: {format}, spec: {exists|missing}
116
116
 
117
- · · ·
118
-
117
+ · · · · · · · · · · · ·
119
118
  Which plan would you like to review the implementation for? (Enter a number or name)
120
119
  ```
121
120
 
@@ -138,13 +137,13 @@ Auto-selecting: {topic} (only available plan)
138
137
  Ask the user what code to review:
139
138
 
140
139
  ```
141
- · · ·
142
-
140
+ · · · · · · · · · · · ·
143
141
  What code should I review?
144
142
 
145
143
  - **`a`/`all`** — All changes since the plan was created
146
144
  - **`g`/`git`** — Identify from git status
147
145
  - Specific directories or files — tell me which
146
+ · · · · · · · · · · · ·
148
147
  ```
149
148
 
150
149
  **STOP.** Wait for user response.