@leeovery/claude-technical-workflows 2.2.0 → 2.2.1

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 (24) hide show
  1. package/README.md +10 -9
  2. package/hooks/workflows/compact-recovery.sh +1 -1
  3. package/package.json +1 -1
  4. package/skills/start-bugfix/references/invoke-investigation.md +1 -1
  5. package/skills/start-feature/references/invoke-discussion.md +1 -1
  6. package/skills/start-feature/references/invoke-research.md +1 -1
  7. package/skills/technical-discussion/SKILL.md +2 -2
  8. package/skills/technical-implementation/SKILL.md +2 -2
  9. package/skills/technical-investigation/SKILL.md +2 -2
  10. package/skills/technical-planning/SKILL.md +2 -2
  11. package/skills/technical-research/SKILL.md +2 -2
  12. package/skills/technical-review/references/review-actions-loop.md +4 -4
  13. package/skills/technical-specification/references/spec-completion.md +2 -2
  14. package/skills/{workflow/bridge → workflow-bridge}/SKILL.md +5 -5
  15. package/skills/{workflow/bridge → workflow-bridge}/references/bugfix-continuation.md +1 -1
  16. package/skills/{workflow/bridge → workflow-bridge}/references/feature-continuation.md +1 -1
  17. package/skills/{workflow/bridge → workflow-bridge}/references/greenfield-continuation.md +3 -3
  18. package/skills/{workflow/bridge → workflow-bridge}/scripts/discovery.sh +1 -1
  19. package/skills/{workflow/start → workflow-start}/SKILL.md +4 -4
  20. package/skills/{workflow/start → workflow-start}/references/bugfix-routing.md +1 -1
  21. package/skills/{workflow/start → workflow-start}/references/feature-routing.md +1 -1
  22. package/skills/{workflow/start → workflow-start}/references/greenfield-routing.md +1 -1
  23. package/skills/{workflow/start → workflow-start}/references/work-type-selection.md +1 -1
  24. package/skills/{workflow/start → workflow-start}/scripts/discovery.sh +1 -1
package/README.md CHANGED
@@ -134,7 +134,7 @@ Discussion ──▶ Specification ──▶ Planning ──▶ Implementation
134
134
 
135
135
  **How it works:** After each phase completes, a plan mode bridge clears context and advances to the next phase automatically. You approve each transition with "clear context and continue" — this keeps each phase in a clean context window.
136
136
 
137
- If a session is interrupted, run `/continue-feature` to pick up where you left off. It reads artifact state to determine the next phase.
137
+ If a session is interrupted, run `/workflow-start` to pick up where you left off. It discovers artifact state and routes to the next phase.
138
138
 
139
139
  ### Under the Hood
140
140
 
@@ -233,29 +233,30 @@ skills/
233
233
  ├── # Processing skills (model-invocable)
234
234
  ├── technical-research/ # Explore and validate ideas
235
235
  ├── technical-discussion/ # Document discussions
236
+ ├── technical-investigation/ # Investigate bugs (bugfix pipeline)
236
237
  ├── technical-specification/ # Build validated specifications
237
238
  ├── technical-planning/ # Create implementation plans
238
239
  ├── technical-implementation/ # Execute via TDD
239
240
  ├── technical-review/ # Validate against artefacts
240
241
 
242
+ ├── # Unified entry points
243
+ ├── workflow-start/ # Discovers state, routes by work type
244
+ ├── workflow-bridge/ # Pipeline continuation — next phase routing
245
+
241
246
  ├── # Entry-point skills (user-invocable)
242
247
  ├── migrate/ # Keep workflow files in sync with system design
243
248
  ├── start-feature/ # Pipeline: discussion → spec → plan → impl → review
244
- ├── continue-feature/ # Pipeline: route feature to next phase
249
+ ├── start-bugfix/ # Pipeline: investigation spec plan → impl → review
245
250
  ├── link-dependencies/ # Standalone: wire cross-topic deps
246
251
  ├── start-research/ # Begin research
247
252
  ├── start-discussion/ # Begin discussions
253
+ ├── start-investigation/ # Begin investigation (bugfix)
248
254
  ├── start-specification/ # Begin specification
249
255
  ├── start-planning/ # Begin planning
250
256
  ├── start-implementation/ # Begin implementation
251
257
  ├── start-review/ # Begin review
252
258
  ├── status/ # Show workflow status
253
- ├── view-plan/ # View plan tasks
254
-
255
- ├── # Bridge skills (model-invocable — pipeline pre-flight)
256
- ├── begin-planning/ # Pre-flight for planning in pipeline
257
- ├── begin-implementation/ # Pre-flight for implementation in pipeline
258
- └── begin-review/ # Pre-flight for review in pipeline
259
+ └── view-plan/ # View plan tasks
259
260
 
260
261
  agents/
261
262
  ├── review-task-verifier.md # Verifies single task implementation for review
@@ -322,7 +323,7 @@ Independent skills that gather inputs flexibly (inline context, files, or prompt
322
323
  | Skill | Description |
323
324
  |---------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
324
325
  | [**/start-feature**](skills/start-feature/) | Start a new feature through the full pipeline. Gathers context, creates a discussion, then bridges through specification → planning → implementation → review. |
325
- | [**/continue-feature**](skills/continue-feature/) | Continue a feature through its next pipeline phase. Routes automatically based on artifact state. Used manually or from plan mode bridges. |
326
+ | [**/start-bugfix**](skills/start-bugfix/) | Start a bugfix through the pipeline. Gathers bug context, creates an investigation, then bridges through specification planning → implementation → review. |
326
327
  | [**/link-dependencies**](skills/link-dependencies/) | Link external dependencies across topics. Scans plans and wires up unresolved cross-topic dependencies. |
327
328
 
328
329
  ### Creating Custom Skills
@@ -49,7 +49,7 @@ Skill: ${skill}
49
49
 
50
50
  The files on disk are authoritative — not the conversation summary.
51
51
 
52
- When the processing skill concludes, it will invoke workflow:bridge automatically
52
+ When the processing skill concludes, it will invoke workflow-bridge automatically
53
53
  if the artifact has a work_type set. Do not manually handle pipeline continuation."
54
54
 
55
55
  # Escape context for JSON output
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leeovery/claude-technical-workflows",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "Technical workflow skills & commands for Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Lee Overy <me@leeovery.com>",
@@ -43,4 +43,4 @@ The investigation frontmatter should include:
43
43
  Invoke the technical-investigation skill.
44
44
  ```
45
45
 
46
- When the investigation concludes, the processing skill will detect `work_type: bugfix` in the artifact and invoke workflow:bridge automatically.
46
+ When the investigation concludes, the processing skill will detect `work_type: bugfix` in the artifact and invoke workflow-bridge automatically.
@@ -25,4 +25,4 @@ The discussion frontmatter should include:
25
25
  Invoke the technical-discussion skill.
26
26
  ```
27
27
 
28
- When the discussion concludes, the processing skill will detect `work_type: feature` in the artifact and invoke workflow:bridge automatically.
28
+ When the discussion concludes, the processing skill will detect `work_type: feature` in the artifact and invoke workflow-bridge automatically.
@@ -26,4 +26,4 @@ The research frontmatter should include:
26
26
  Invoke the technical-research skill.
27
27
  ```
28
28
 
29
- When a research topic is parked as discussion-ready, the processing skill will offer pipeline continuation via workflow:bridge.
29
+ When a research topic is parked as discussion-ready, the processing skill will offer pipeline continuation via workflow-bridge.
@@ -138,14 +138,14 @@ Incorporate the user's context into the discussion, commit, then re-present the
138
138
 
139
139
  **If work_type is set** (feature, bugfix, or greenfield):
140
140
 
141
- This discussion is part of a pipeline. Invoke the `/workflow:bridge` skill:
141
+ This discussion is part of a pipeline. Invoke the `/workflow-bridge` skill:
142
142
 
143
143
  ```
144
144
  Pipeline bridge for: {topic}
145
145
  Work type: {work_type from artifact frontmatter}
146
146
  Completed phase: discussion
147
147
 
148
- Invoke the workflow:bridge skill to enter plan mode with continuation instructions.
148
+ Invoke the workflow-bridge skill to enter plan mode with continuation instructions.
149
149
  ```
150
150
 
151
151
  **If work_type is not set and other in-progress discussions exist:**
@@ -336,14 +336,14 @@ Commit: `impl({topic}): complete implementation`
336
336
 
337
337
  **If work_type is set** (feature, bugfix, or greenfield):
338
338
 
339
- This implementation is part of a pipeline. Invoke the `/workflow:bridge` skill:
339
+ This implementation is part of a pipeline. Invoke the `/workflow-bridge` skill:
340
340
 
341
341
  ```
342
342
  Pipeline bridge for: {topic}
343
343
  Work type: {work_type from plan frontmatter}
344
344
  Completed phase: implementation
345
345
 
346
- Invoke the workflow:bridge skill to enter plan mode with continuation instructions.
346
+ Invoke the workflow-bridge skill to enter plan mode with continuation instructions.
347
347
  ```
348
348
 
349
349
  **If work_type is not set:**
@@ -224,14 +224,14 @@ detail the exact fix approach, acceptance criteria, and testing plan.
224
224
 
225
225
  **If work_type is set** (bugfix):
226
226
 
227
- This investigation is part of a pipeline. Invoke the `/workflow:bridge` skill:
227
+ This investigation is part of a pipeline. Invoke the `/workflow-bridge` skill:
228
228
 
229
229
  ```
230
230
  Pipeline bridge for: {topic}
231
231
  Work type: bugfix
232
232
  Completed phase: investigation
233
233
 
234
- Invoke the workflow:bridge skill to enter plan mode with continuation instructions.
234
+ Invoke the workflow-bridge skill to enter plan mode with continuation instructions.
235
235
  ```
236
236
 
237
237
  **If work_type is not set:**
@@ -268,14 +268,14 @@ Status has been marked as `concluded`. The plan is ready for implementation.
268
268
 
269
269
  **If work_type is set** (feature, bugfix, or greenfield):
270
270
 
271
- This plan is part of a pipeline. Invoke the `/workflow:bridge` skill:
271
+ This plan is part of a pipeline. Invoke the `/workflow-bridge` skill:
272
272
 
273
273
  ```
274
274
  Pipeline bridge for: {topic}
275
275
  Work type: {work_type from artifact frontmatter}
276
276
  Completed phase: planning
277
277
 
278
- Invoke the workflow:bridge skill to enter plan mode with continuation instructions.
278
+ Invoke the workflow-bridge skill to enter plan mode with continuation instructions.
279
279
  ```
280
280
 
281
281
  **If work_type is not set:**
@@ -147,14 +147,14 @@ Continue with whatever's next — another topic, a different angle, or wrapping
147
147
 
148
148
  #### If discuss
149
149
 
150
- Invoke the `/workflow:bridge` skill:
150
+ Invoke the `/workflow-bridge` skill:
151
151
 
152
152
  ```
153
153
  Pipeline bridge for: {topic}
154
154
  Work type: {work_type from artifact frontmatter}
155
155
  Completed phase: research
156
156
 
157
- Invoke the workflow:bridge skill to enter plan mode with continuation instructions.
157
+ Invoke the workflow-bridge skill to enter plan mode with continuation instructions.
158
158
  ```
159
159
 
160
160
  **If work_type is not set:**
@@ -34,14 +34,14 @@ No actionable findings. All reviews passed with no required changes.
34
34
 
35
35
  **If work_type is set** (feature, bugfix, or greenfield):
36
36
 
37
- This review is part of a pipeline. The pipeline is complete. Invoke the `/workflow:bridge` skill:
37
+ This review is part of a pipeline. The pipeline is complete. Invoke the `/workflow-bridge` skill:
38
38
 
39
39
  ```
40
40
  Pipeline bridge for: {topic}
41
41
  Work type: {work_type from plan frontmatter}
42
42
  Completed phase: review
43
43
 
44
- Invoke the workflow:bridge skill to enter plan mode with completion confirmation.
44
+ Invoke the workflow-bridge skill to enter plan mode with completion confirmation.
45
45
  ```
46
46
 
47
47
  **If work_type is not set:**
@@ -92,14 +92,14 @@ User has chosen to skip synthesis. This is a terminal condition, but check for p
92
92
 
93
93
  **If work_type is set** (feature, bugfix, or greenfield):
94
94
 
95
- This review is part of a pipeline. Invoke the `/workflow:bridge` skill:
95
+ This review is part of a pipeline. Invoke the `/workflow-bridge` skill:
96
96
 
97
97
  ```
98
98
  Pipeline bridge for: {topic}
99
99
  Work type: {work_type from plan frontmatter}
100
100
  Completed phase: review
101
101
 
102
- Invoke the workflow:bridge skill to enter plan mode with continuation instructions.
102
+ Invoke the workflow-bridge skill to enter plan mode with continuation instructions.
103
103
  ```
104
104
 
105
105
  **If work_type is not set:**
@@ -121,14 +121,14 @@ Check the specification frontmatter for `work_type`.
121
121
 
122
122
  #### If work_type is set (feature, bugfix, or greenfield)
123
123
 
124
- This specification is part of a pipeline. Invoke the `/workflow:bridge` skill:
124
+ This specification is part of a pipeline. Invoke the `/workflow-bridge` skill:
125
125
 
126
126
  ```
127
127
  Pipeline bridge for: {topic}
128
128
  Work type: {work_type from artifact frontmatter}
129
129
  Completed phase: specification
130
130
 
131
- Invoke the workflow:bridge skill to enter plan mode with continuation instructions.
131
+ Invoke the workflow-bridge skill to enter plan mode with continuation instructions.
132
132
  ```
133
133
 
134
134
  #### If work_type is not set
@@ -1,7 +1,7 @@
1
1
  ---
2
- name: workflow:bridge
2
+ name: workflow-bridge
3
3
  user-invocable: false
4
- allowed-tools: Bash(.claude/skills/workflow/bridge/scripts/discovery.sh)
4
+ allowed-tools: Bash(.claude/skills/workflow-bridge/scripts/discovery.sh)
5
5
  ---
6
6
 
7
7
  Enter plan mode with deterministic continuation instructions.
@@ -26,13 +26,13 @@ Determine the next phase by running discovery.
26
26
  #### If work type is "feature"
27
27
 
28
28
  ```bash
29
- .claude/skills/workflow/bridge/scripts/discovery.sh --feature --topic "{topic}"
29
+ .claude/skills/workflow-bridge/scripts/discovery.sh --feature --topic "{topic}"
30
30
  ```
31
31
 
32
32
  #### If work type is "bugfix"
33
33
 
34
34
  ```bash
35
- .claude/skills/workflow/bridge/scripts/discovery.sh --bugfix --topic "{topic}"
35
+ .claude/skills/workflow-bridge/scripts/discovery.sh --bugfix --topic "{topic}"
36
36
  ```
37
37
 
38
38
  Parse the output to extract:
@@ -41,7 +41,7 @@ Parse the output to extract:
41
41
  #### If work type is "greenfield"
42
42
 
43
43
  ```bash
44
- .claude/skills/workflow/bridge/scripts/discovery.sh --greenfield
44
+ .claude/skills/workflow-bridge/scripts/discovery.sh --greenfield
45
45
  ```
46
46
 
47
47
  Parse the output to extract:
@@ -1,6 +1,6 @@
1
1
  # Bugfix Continuation
2
2
 
3
- *Reference for **[workflow:bridge](../SKILL.md)***
3
+ *Reference for **[workflow-bridge](../SKILL.md)***
4
4
 
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Feature Continuation
2
2
 
3
- *Reference for **[workflow:bridge](../SKILL.md)***
3
+ *Reference for **[workflow-bridge](../SKILL.md)***
4
4
 
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Greenfield Continuation
2
2
 
3
- *Reference for **[workflow:bridge](../SKILL.md)***
3
+ *Reference for **[workflow-bridge](../SKILL.md)***
4
4
 
5
5
  ---
6
6
 
@@ -120,7 +120,7 @@ What would you like to do next?
120
120
  7. Continue research
121
121
  8. Start new research
122
122
  9. Start new discussion
123
- 10. Stop here — resume later with /workflow:start
123
+ 10. Stop here — resume later with /workflow-start
124
124
 
125
125
  Select an option (enter number):
126
126
  · · · · · · · · · · · ·
@@ -143,7 +143,7 @@ Recreate with actual topics and states from discovery. Only include options that
143
143
  ```
144
144
  Session Paused
145
145
 
146
- To resume later, run /workflow:start — it will discover your
146
+ To resume later, run /workflow-start — it will discover your
147
147
  current state and present all available options.
148
148
  ```
149
149
 
@@ -1,6 +1,6 @@
1
1
  #!/bin/bash
2
2
  #
3
- # Topic-specific discovery script for /workflow:bridge.
3
+ # Topic-specific discovery script for /workflow-bridge.
4
4
  #
5
5
  # Usage:
6
6
  # discovery.sh --feature --topic <topic>
@@ -1,7 +1,7 @@
1
1
  ---
2
- name: workflow:start
2
+ name: workflow-start
3
3
  disable-model-invocation: true
4
- allowed-tools: Bash(.claude/skills/workflow/start/scripts/discovery.sh)
4
+ allowed-tools: Bash(.claude/skills/workflow-start/scripts/discovery.sh)
5
5
  hooks:
6
6
  PreToolUse:
7
7
  - hooks:
@@ -44,12 +44,12 @@ Invoke the `/migrate` skill and assess its output.
44
44
 
45
45
  ## Step 1: Run Discovery
46
46
 
47
- !`.claude/skills/workflow/start/scripts/discovery.sh`
47
+ !`.claude/skills/workflow-start/scripts/discovery.sh`
48
48
 
49
49
  If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
50
50
 
51
51
  ```bash
52
- .claude/skills/workflow/start/scripts/discovery.sh
52
+ .claude/skills/workflow-start/scripts/discovery.sh
53
53
  ```
54
54
 
55
55
  Parse the output to understand the current workflow state:
@@ -1,6 +1,6 @@
1
1
  # Bugfix Routing
2
2
 
3
- *Reference for **[workflow:start](../SKILL.md)***
3
+ *Reference for **[workflow-start](../SKILL.md)***
4
4
 
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Feature Routing
2
2
 
3
- *Reference for **[workflow:start](../SKILL.md)***
3
+ *Reference for **[workflow-start](../SKILL.md)***
4
4
 
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Greenfield Routing
2
2
 
3
- *Reference for **[workflow:start](../SKILL.md)***
3
+ *Reference for **[workflow-start](../SKILL.md)***
4
4
 
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Work Type Selection
2
2
 
3
- *Reference for **[workflow:start](../SKILL.md)***
3
+ *Reference for **[workflow-start](../SKILL.md)***
4
4
 
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  #!/bin/bash
2
2
  #
3
- # Comprehensive workflow discovery for /workflow:start.
3
+ # Comprehensive workflow discovery for /workflow-start.
4
4
  #
5
5
  # Scans all workflow directories and groups artifacts by work_type:
6
6
  # - greenfield: phase-centric, all topics (work_type: greenfield or unset)