@leeovery/claude-technical-workflows 2.0.10 → 2.0.11

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,36 +1,218 @@
1
1
  ---
2
- description: Start a technical discussion using the technical-discussion skill. Gathers information about the topic and creates discussion documentation in docs/workflow/discussion/
2
+ description: Start a technical discussion. Discovers research and existing discussions, offers multiple entry paths, and invokes the technical-discussion skill.
3
3
  ---
4
4
 
5
5
  Invoke the **technical-discussion** skill for this conversation.
6
6
 
7
- Before beginning, ask the user these questions to properly set up the discussion:
7
+ ## Instructions
8
8
 
9
- ## Essential Information
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.
10
10
 
11
- 1. **Discussion Topic**: What are we discussing? (This will be used as the filename in `docs/workflow/discussion/{topic}.md`)
11
+ Before beginning, discover existing work and determine the best entry path.
12
12
 
13
- 2. **Context & Background**:
14
- - What sparked this discussion?
15
- - What problem are we trying to solve?
16
- - Why are we discussing this now?
13
+ ## Important
17
14
 
18
- 3. **Foundational Knowledge**:
19
- - Is there any background information I need to understand before we begin?
20
- - Are there specific concepts, technologies, or architectures I should know about?
21
- - Any constraints, requirements, or limitations I should be aware of?
15
+ Use simple, individual commands. Never combine multiple operations into bash loops or one-liners. Execute commands one at a time.
22
16
 
23
- 4. **Codebase Review**:
24
- - Are there specific files in this repository I should read first?
25
- - Should I explore any particular directories or components?
26
- - Is there existing code related to this discussion?
17
+ ## Step 1: Discover Existing Work
27
18
 
28
- ## After Gathering Information
19
+ Scan the codebase for research and discussions:
29
20
 
30
- Once I have this information:
21
+ 1. **Find research**: Look in `docs/workflow/research/`
22
+ - Run `ls docs/workflow/research/` to list research files
23
+ - Note which files exist (may include `exploration.md` and semantic files like `market-landscape.md`)
24
+
25
+ 2. **Find discussions**: Look in `docs/workflow/discussion/`
26
+ - Run `ls docs/workflow/discussion/` to list discussion files
27
+ - Each file is named `{topic}.md`
28
+
29
+ 3. **Check discussion status**: For each discussion file
30
+ - Run `head -10 docs/workflow/discussion/{topic}.md` to extract the `Status:` field
31
+ - Status values: `Exploring`, `Deciding`, or `Concluded`
32
+ - Do NOT use bash loops - run separate commands for each file
33
+
34
+ ## Step 2: Present Workflow State and Options
35
+
36
+ Present the workflow state and available options based on what was discovered.
37
+
38
+ **Format:**
39
+ ```
40
+ 📂 Workflow state:
41
+ 📚 Research: {count} files found / None found
42
+ 💬 Discussions: {count} existing / None yet
43
+ ```
44
+
45
+ Then present the appropriate options:
46
+
47
+ **If research AND discussions exist:**
48
+ ```
49
+ How would you like to proceed?
50
+
51
+ 1. **From research** - Analyze research and suggest undiscussed topics
52
+ 2. **Continue discussion** - Resume an existing discussion
53
+ 3. **Fresh topic** - Start a new discussion
54
+ ```
55
+
56
+ **If ONLY research exists:**
57
+ ```
58
+ How would you like to proceed?
59
+
60
+ 1. **From research** - Analyze research and suggest topics to discuss
61
+ 2. **Fresh topic** - Start a new discussion
62
+ ```
63
+
64
+ **If ONLY discussions exist:**
65
+ ```
66
+ How would you like to proceed?
67
+
68
+ 1. **Continue discussion** - Resume an existing discussion
69
+ 2. **Fresh topic** - Start a new discussion
70
+ ```
71
+
72
+ **If NOTHING exists:**
73
+ ```
74
+ Starting fresh - no prior research or discussions found.
75
+
76
+ What topic would you like to discuss?
77
+ ```
78
+ Then skip to Step 5 (Fresh topic path).
79
+
80
+ Wait for the user to choose before proceeding.
81
+
82
+ ## Step 3A: "From research" Path
83
+
84
+ Read each research file and analyze the content to extract key themes and potential discussion topics. For each theme:
85
+ - Note the source file and relevant line numbers
86
+ - Summarize what the theme is about in 1-2 sentences
87
+
88
+ Cross-reference with existing discussions to identify what has and hasn't been discussed.
89
+
90
+ **Present findings:**
91
+ ```
92
+ 🔍 Analyzing research documents...
93
+
94
+ 💡 Topics identified:
95
+
96
+ ✨ {Theme name}
97
+ Source: {filename}.md (lines {start}-{end})
98
+ "{Brief 1-2 sentence summary of the theme and what needs deciding}"
99
+
100
+ ✨ {Another theme}
101
+ Source: {filename}.md (lines {start}-{end})
102
+ "{Brief summary}"
103
+
104
+ ✅ {Already discussed theme} → discussed in {topic}.md
105
+ Source: {filename}.md (lines {start}-{end})
106
+ "{Brief summary}"
107
+
108
+ Which topic would you like to discuss? (Or describe something else)
109
+ ```
110
+
111
+ **Key:**
112
+ - ✨ = Undiscussed topic (potential new discussion)
113
+ - ✅ = Already has a corresponding discussion
114
+
115
+ **Important:** Keep track of the source file and line numbers for the chosen topic - this will be passed to the skill.
116
+
117
+ Wait for the user to choose before proceeding to Step 4.
118
+
119
+ ## Step 3B: "Continue discussion" Path
120
+
121
+ List existing discussions with their status:
122
+
123
+ ```
124
+ 💬 Existing discussions:
125
+
126
+ ⚡ {topic}.md — {Status}
127
+ "{Brief description from context section}"
128
+
129
+ ⚡ {topic}.md — {Status}
130
+ "{Brief description}"
131
+
132
+ ✅ {topic}.md — Concluded
133
+ "{Brief description}"
134
+
135
+ Which discussion would you like to continue?
136
+ ```
137
+
138
+ **Key:**
139
+ - ⚡ = In progress (Exploring or Deciding)
140
+ - ✅ = Concluded (can still be continued/reopened)
141
+
142
+ Wait for the user to choose, then proceed to Step 4.
143
+
144
+ ## Step 3C: "Fresh topic" Path
145
+
146
+ Proceed directly to Step 4.
147
+
148
+ ## Step 4: Gather Context
149
+
150
+ Gather context based on the chosen path.
151
+
152
+ **If starting new discussion (from research or fresh):**
153
+
154
+ ```
155
+ ## New discussion: {topic}
156
+
157
+ Before we begin:
158
+
159
+ 1. What's the core problem or decision we need to work through?
160
+
161
+ 2. Any constraints or context I should know about?
162
+
163
+ 3. Are there specific files in the codebase I should review first?
164
+ ```
165
+
166
+ Wait for responses before proceeding.
167
+
168
+ **If continuing existing discussion:**
169
+
170
+ Read the existing discussion document first, then ask:
171
+
172
+ ```
173
+ ## Continuing: {topic}
174
+
175
+ I've read the existing discussion.
176
+
177
+ What would you like to focus on in this session?
178
+ ```
179
+
180
+ Wait for response before proceeding.
181
+
182
+ ## Step 5: Invoke Discussion Skill
183
+
184
+ Begin the discussion session with appropriate context based on the path taken.
185
+
186
+ **If from research:**
187
+ ```
188
+ Discussion session for: {topic}
189
+ Output: docs/workflow/discussion/{topic}.md
190
+
191
+ ## Research Reference
192
+ Source: docs/workflow/research/{filename}.md (lines {start}-{end})
193
+ Summary: {the 1-2 sentence summary from Step 3A}
194
+
195
+ Begin discussion using the technical-discussion skill.
196
+ ```
197
+
198
+ **If continuing or fresh:**
199
+ ```
200
+ Discussion session for: {topic}
201
+ Source: {existing discussion | fresh}
202
+ Output: docs/workflow/discussion/{topic}.md
203
+
204
+ Begin discussion using the technical-discussion skill.
205
+ ```
206
+
207
+ **Setup:**
31
208
  - Ensure discussion directory exists: `docs/workflow/discussion/`
32
- - Start documenting the discussion following the technical-discussion skill structure
33
- - Create file: `docs/workflow/discussion/{topic}.md`
209
+ - If new: Create file using the template structure
210
+ - If continuing: Work with existing file
34
211
  - Commit frequently at natural discussion breaks
35
212
 
36
- Ask these questions clearly and wait for responses before proceeding with the discussion.
213
+ ## Notes
214
+
215
+ - Ask questions clearly and wait for responses before proceeding
216
+ - Discussion captures WHAT and WHY - don't jump to specifications or implementation
217
+ - The goal is to work through edge cases, debates, and decisions before planning
218
+ - Commit the discussion document frequently during the session
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leeovery/claude-technical-workflows",
3
- "version": "2.0.10",
3
+ "version": "2.0.11",
4
4
  "description": "Technical workflow skills & commands for Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Lee Overy <me@leeovery.com>",