@leeovery/claude-technical-workflows 2.0.16 → 2.0.18

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.
@@ -1,170 +1,15 @@
1
1
  ---
2
- description: Start an implementation session from an existing plan. Discovers available plans, checks environment setup, and invokes the technical-implementation skill.
2
+ description: "[DEPRECATED] Use /workflow:start-implementation instead"
3
3
  ---
4
4
 
5
- ## IMPORTANT: Follow these steps EXACTLY. Do not skip steps.
5
+ # Deprecated Command
6
6
 
7
- - Ask each question and WAIT for a response before proceeding
8
- - Do NOT install anything or invoke tools until Step 6
9
- - Even if the user's initial prompt seems to answer a question, still confirm with them at the appropriate step
10
- - Do NOT make assumptions about what the user wants
11
- - Complete each step fully before moving to the next
7
+ ⚠️ **`/start-implementation` is deprecated.** Use `/workflow:start-implementation` instead.
12
8
 
13
- ## Instructions
9
+ The command has been renamed to use the `workflow:` prefix to distinguish workflow commands from standalone commands.
14
10
 
15
- Follow these steps EXACTLY as written. Do not skip steps or combine them.
16
-
17
- Before beginning, discover existing work and gather necessary information.
18
-
19
- ## Important
20
-
21
- Use simple, individual commands. Never combine multiple operations into bash loops or one-liners. Execute commands one at a time.
22
-
23
- ## Step 1: Discover Existing Plans
24
-
25
- Scan the codebase for plans:
26
-
27
- 1. **Find plans**: Look in `docs/workflow/planning/`
28
- - Run `ls docs/workflow/planning/` to list plan files
29
- - Each file is named `{topic}.md`
30
-
31
- 2. **Check plan format**: For each plan file
32
- - Run `head -10 docs/workflow/planning/{topic}.md` to read the frontmatter
33
- - Note the `format:` field
34
- - Do NOT use bash loops - run separate `head` commands for each topic
35
-
36
- ## Step 2: Present Options to User
37
-
38
- Show what you found.
39
-
40
- > **Note:** If no plans exist, inform the user that this workflow is designed to be executed in sequence. They need to create plans from specifications prior to implementation using `/start-planning`.
41
-
42
- > **Auto-select:** If exactly one plan exists, automatically select it and proceed to Step 3. Inform the user which plan was selected. Do not ask for confirmation.
43
-
44
- ```
45
- Plans found:
46
- {topic-1}
47
- {topic-2}
48
-
49
- Which plan would you like to implement?
50
- ```
51
-
52
- ## Step 3: Check External Dependencies
53
-
54
- **This step is a gate.** Implementation cannot proceed if dependencies are not satisfied.
55
-
56
- See **[dependencies.md](../skills/technical-planning/references/dependencies.md)** for dependency format and states.
57
-
58
- After the user selects a plan:
59
-
60
- 1. **Read the External Dependencies section** from the plan index file
61
- 2. **Check each dependency** according to its state:
62
- - **Unresolved**: Block
63
- - **Resolved**: Check if task is complete (load output format reference, follow "Querying Dependencies" section)
64
- - **Satisfied externally**: Proceed
65
-
66
- ### Blocking Behavior
67
-
68
- If ANY dependency is unresolved or incomplete, **stop and present**:
69
-
70
- ```
71
- ⚠️ Implementation blocked. Missing dependencies:
72
-
73
- UNRESOLVED (not yet planned):
74
- - billing-system: Invoice generation for order completion
75
- → No plan exists for this topic. Create with /start-planning or mark as satisfied externally.
76
-
77
- INCOMPLETE (planned but not implemented):
78
- - beads-7x2k (authentication): User context retrieval
79
- → Status: in_progress. This task must be completed first.
80
-
81
- These dependencies must be completed before this plan can be implemented.
82
-
83
- OPTIONS:
84
- 1. Implement the blocking dependencies first
85
- 2. Mark a dependency as "satisfied externally" if it was implemented outside this workflow
86
- 3. Run /link-dependencies to wire up any recently completed plans
87
- ```
88
-
89
- ### Escape Hatch
90
-
91
- If the user says a dependency has been implemented outside the workflow:
92
-
93
- 1. Ask which dependency to mark as satisfied
94
- 2. Update the plan index file:
95
- - Change `- {topic}: {description}` to `- ~~{topic}: {description}~~ → satisfied externally`
96
- 3. Commit the change
97
- 4. Re-check dependencies
98
-
99
- ### All Dependencies Satisfied
100
-
101
- If all dependencies are resolved and complete (or satisfied externally), proceed to Step 4.
102
-
103
- ```
104
- ✅ External dependencies satisfied:
105
- - billing-system: Invoice generation → beads-b7c2.1.1 (complete)
106
- - authentication: User context → beads-a3f8.1.2 (complete)
107
-
108
- Proceeding with environment setup...
109
- ```
110
-
111
- ## Step 4: Check Environment Setup
112
-
113
- > **IMPORTANT**: This step is for **information gathering only**. Do NOT execute any setup commands at this stage. The technical-implementation skill will handle execution when invoked.
114
-
115
- After the user selects a plan:
116
-
117
- 1. Check if `docs/workflow/environment-setup.md` exists
118
- 2. If it exists, note the file location for the skill handoff
119
- 3. If missing, ask: "Are there any environment setup instructions I should follow?"
120
- - If the user provides instructions, save them to `docs/workflow/environment-setup.md`, commit and push to Git
121
- - If the user says no, create `docs/workflow/environment-setup.md` with "No special setup required." and commit. This prevents asking again in future sessions.
122
- - See `skills/technical-implementation/references/environment-setup.md` for format guidance
123
-
124
- ## Step 5: Ask About Scope
125
-
126
- Ask the user about implementation scope:
127
-
128
- ```
129
- How would you like to proceed?
130
-
131
- 1. **Implement all phases** - Work through the entire plan sequentially
132
- 2. **Implement specific phase** - Focus on one phase (e.g., "Phase 1")
133
- 3. **Implement specific task** - Focus on a single task
134
- 4. **Next available task** - Auto-discover the next unblocked task
135
-
136
- Which approach?
137
- ```
138
-
139
- If they choose a specific phase or task, ask them to specify which one.
140
-
141
- > **Note:** Do NOT verify that the phase or task exists. Accept the user's answer and pass it to the skill. Validation happens during the implementation phase.
142
-
143
- ## Step 6: Invoke Implementation Skill
144
-
145
- Invoke the **technical-implementation** skill for this conversation.
146
-
147
- Pass to the technical-implementation skill:
148
- - Plan: `docs/workflow/planning/{topic}.md`
149
- - Format: (from frontmatter)
150
- - Scope: (all phases | specific phase | specific task | next-available)
151
- - Dependencies: (all satisfied - verified in Step 3)
152
- - Environment setup: (completed | not needed)
153
-
154
- **Example handoff:**
155
- ```
156
- Implementation session for: {topic}
157
- Plan: docs/workflow/planning/{topic}.md
158
- Format: {format}
159
- Scope: All phases
160
-
161
- Dependencies: All satisfied ✓
162
- Environment setup: Completed (or: Not needed)
163
-
164
- Begin implementation using the technical-implementation skill.
165
- ```
11
+ ---
166
12
 
167
- ## Notes
13
+ **Forwarding to `/workflow:start-implementation`...**
168
14
 
169
- - Ask questions clearly and wait for responses before proceeding
170
- - Execute environment setup before starting implementation
15
+ Run the `/workflow:start-implementation` command now.
@@ -1,94 +1,15 @@
1
1
  ---
2
- description: Start a planning session from an existing specification. Discovers available specifications, asks where to store the plan, and invokes the technical-planning skill.
2
+ description: "[DEPRECATED] Use /workflow:start-planning instead"
3
3
  ---
4
4
 
5
- Invoke the **technical-planning** skill for this conversation.
5
+ # Deprecated Command
6
6
 
7
- ## Instructions
7
+ ⚠️ **`/start-planning` is deprecated.** Use `/workflow:start-planning` instead.
8
8
 
9
- Follow these steps EXACTLY as written. Do not skip steps or combine them. Present output using the EXACT format shown in examples - do not simplify or alter the formatting.
9
+ The command has been renamed to use the `workflow:` prefix to distinguish workflow commands from standalone commands.
10
10
 
11
- Before beginning, discover existing work and gather necessary information.
12
-
13
- ## Important
14
-
15
- Use simple, individual commands. Never combine multiple operations into bash loops or one-liners. Execute commands one at a time.
16
-
17
- ## Step 1: Discover Existing Work
18
-
19
- Scan the codebase for specifications and plans:
20
-
21
- 1. **Find specifications**: Look in `docs/workflow/specification/`
22
- - Run `ls docs/workflow/specification/` to list specification files
23
- - Each file is named `{topic}.md`
24
-
25
- 2. **Check specification status**: For each specification file
26
- - Run `head -20 docs/workflow/specification/{topic}.md` to read the frontmatter and extract the `status:` field
27
- - Do NOT use bash loops - run separate `head` commands for each topic
28
-
29
- 3. **Check for existing plans**: Look in `docs/workflow/planning/`
30
- - Identify specifications that don't have corresponding plans
31
-
32
- ## Step 2: Check Prerequisites
33
-
34
- **If no specifications exist:**
35
-
36
- ```
37
- ⚠️ No specifications found in docs/workflow/specification/
38
-
39
- The planning phase requires a completed specification. Please run /start-specification first to validate and refine the discussion content into a standalone specification before creating a plan.
40
- ```
41
-
42
- Stop here and wait for the user to acknowledge.
43
-
44
- ## Step 3: Present Options to User
45
-
46
- Show what you found using a list like below:
47
-
48
- ```
49
- 📂 Specifications found:
50
- ⚠️ {topic-1} - Building specification - not ready for planning
51
- ✅ {topic-2} - Complete - ready for planning
52
- ✅ {topic-3} - Complete - plan exists
53
-
54
- Which specification would you like to create a plan for?
55
- ```
56
-
57
- **Important:** Only completed specifications should proceed to planning. If a specification is still being built, advise the user to complete the specification phase first.
58
-
59
- **Auto-select:** If exactly one specification exists, automatically select it and proceed to Step 4. Inform the user which specification was selected. Do not ask for confirmation.
60
-
61
- Ask: **Which specification would you like to plan?**
62
-
63
- ## Step 4: Choose Output Destination
64
-
65
- Ask: **Where should this plan live?**
66
-
67
- Load **[output-formats.md](../skills/technical-planning/references/output-formats.md)** and present the available formats to help the user choose. Then load the corresponding output adapter for that format's setup requirements.
68
-
69
- ## Step 5: Gather Additional Context
70
-
71
- - Any additional context or priorities to consider?
72
- - Any constraints since the specification was completed?
73
-
74
- ## Step 6: Invoke Planning Skill
75
-
76
- Pass to the technical-planning skill with:
77
- - Specification path
78
- - Output format chosen
79
- - Additional context gathered
80
-
81
- **Example handoff:**
82
- ```
83
- Planning session for: {topic}
84
- Specification: docs/workflow/specification/{topic}.md
85
- Output format: {format}
86
-
87
- Begin planning using the technical-planning skill.
88
- ```
11
+ ---
89
12
 
90
- ## Notes
13
+ **Forwarding to `/workflow:start-planning`...**
91
14
 
92
- - Ask questions clearly and wait for responses before proceeding
93
- - The specification is the sole source of truth for planning - do not reference discussions
94
- - Commit the plan files when complete
15
+ Run the `/workflow:start-planning` command now.
@@ -1,21 +1,15 @@
1
1
  ---
2
- description: Start a research exploration using the technical-research skill. For early-stage ideas, feasibility checks, and broad exploration before formal discussion.
2
+ description: "[DEPRECATED] Use /workflow:start-research instead"
3
3
  ---
4
4
 
5
- Invoke the **technical-research** skill for this conversation.
5
+ # Deprecated Command
6
6
 
7
- Then ask these questions to kickstart the exploration:
7
+ ⚠️ **`/start-research` is deprecated.** Use `/workflow:start-research` instead.
8
8
 
9
- 1. **What's on your mind?**
10
- - What idea or topic do you want to explore?
11
- - What prompted this - a problem, opportunity, curiosity?
9
+ The command has been renamed to use the `workflow:` prefix to distinguish workflow commands from standalone commands.
12
10
 
13
- 2. **What do you already know?**
14
- - Any initial thoughts or research you've done?
15
- - Constraints or context I should be aware of?
11
+ ---
16
12
 
17
- 3. **Where should we start?**
18
- - Technical feasibility? Market landscape? Business model?
19
- - Or just talk it through and see where it goes?
13
+ **Forwarding to `/workflow:start-research`...**
20
14
 
21
- Ask these questions clearly and wait for responses before proceeding. The skill handles everything else.
15
+ Run the `/workflow:start-research` command now.
@@ -1,89 +1,15 @@
1
1
  ---
2
- description: Start a specification session from an existing discussion. Discovers available discussions, checks for existing specifications, and invokes the technical-specification skill.
2
+ description: "[DEPRECATED] Use /workflow:start-specification instead"
3
3
  ---
4
4
 
5
- Invoke the **technical-specification** skill for this conversation.
5
+ # Deprecated Command
6
6
 
7
- ## Instructions
7
+ ⚠️ **`/start-specification` is deprecated.** Use `/workflow:start-specification` instead.
8
8
 
9
- Follow these steps EXACTLY as written. Do not skip steps or combine them. Present output using the EXACT format shown in examples - do not simplify or alter the formatting.
9
+ The command has been renamed to use the `workflow:` prefix to distinguish workflow commands from standalone commands.
10
10
 
11
- Before beginning, discover existing work and gather necessary information.
12
-
13
- ## Important
14
-
15
- Use simple, individual commands. Never combine multiple operations into bash loops or one-liners. Execute commands one at a time.
16
-
17
- ## Step 1: Discover Existing Work
18
-
19
- Scan the codebase for discussions and specifications:
20
-
21
- 1. **Find discussions**: Look in `docs/workflow/discussion/`
22
- - Run `ls docs/workflow/discussion/` to list discussion files
23
- - Each file is named `{topic}.md`
24
-
25
- 2. **Check discussion status**: For each discussion file
26
- - Run `head -20 docs/workflow/discussion/{topic}.md` to read the frontmatter and extract the `status:` field
27
- - Do NOT use bash loops - run separate `head` commands for each topic
28
-
29
- 3. **Check for existing specifications**: Look in `docs/workflow/specification/`
30
- - Identify discussions that don't have corresponding specifications
31
-
32
- ## Step 2: Check Prerequisites
33
-
34
- **If no discussions exist:**
35
-
36
- ```
37
- ⚠️ No discussions found in docs/workflow/discussion/
38
-
39
- The specification phase requires a completed discussion. Please run /start-discussion first to document the technical decisions, edge cases, and rationale before creating a specification.
40
- ```
41
-
42
- Stop here and wait for the user to acknowledge.
43
-
44
- ## Step 3: Present Options to User
45
-
46
- Show what you found using a list like below:
47
-
48
- ```
49
- 📂 Discussions found:
50
- ✅ {topic-1} - Concluded - ready for specification
51
- ⚠️ {topic-2} - Exploring - not ready for specification
52
- ✅ {topic-3} - Concluded - specification exists
53
-
54
- Which discussion would you like to create a specification for?
55
- ```
56
-
57
- **Important:** Only concluded discussions should proceed to specification. If a discussion is still exploring, advise the user to complete the discussion phase first.
58
-
59
- Ask: **Which discussion would you like to specify?**
60
-
61
- ## Step 4: Gather Additional Context
62
-
63
- Ask:
64
- - Any additional context or priorities to consider?
65
- - Any constraints or changes since the discussion concluded?
66
- - Are there any existing partial plans or related documentation I should review?
67
-
68
- ## Step 5: Invoke Specification Skill
69
-
70
- Pass to the technical-specification skill:
71
- - Discussion: `docs/workflow/discussion/{topic}.md`
72
- - Output: `docs/workflow/specification/{topic}.md`
73
- - Additional context gathered
74
-
75
- **Example handoff:**
76
- ```
77
- Specification session for: {topic}
78
- Discussion: docs/workflow/discussion/{topic}.md
79
- Output: docs/workflow/specification/{topic}.md
80
-
81
- Begin specification using the technical-specification skill.
82
- Reference: specification-guide.md
83
- ```
11
+ ---
84
12
 
85
- ## Notes
13
+ **Forwarding to `/workflow:start-specification`...**
86
14
 
87
- - Ask questions clearly and wait for responses before proceeding
88
- - The specification phase validates and refines discussion content into a standalone document
89
- - Commit the specification files frequently during the session
15
+ Run the `/workflow:start-specification` command now.