get-shit-done-cc 1.1.2 → 1.2.0
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.
|
@@ -11,14 +11,15 @@ allowed-tools:
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
<objective>
|
|
14
|
-
Research
|
|
14
|
+
Research implementation context for Claude Code before roadmap creation.
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
This is NOT research for human decision-making. This is context injection so Claude Code can implement correctly with current APIs, patterns, and best practices.
|
|
17
17
|
|
|
18
|
-
-
|
|
19
|
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
18
|
+
Spawns 2-3 subagents in parallel to research PROJECT.md-specific needs:
|
|
19
|
+
|
|
20
|
+
- **Stack** - What libraries/tools to use for THIS project's features
|
|
21
|
+
- **Implementation** - Current API patterns, code examples, correct syntax
|
|
22
|
+
- **Risks** - What Claude might get wrong, deprecated patterns to avoid
|
|
22
23
|
|
|
23
24
|
Each subagent writes directly to `.planning/research/` preserving main context.
|
|
24
25
|
</objective>
|
|
@@ -67,51 +68,97 @@ What would you like to do?
|
|
|
67
68
|
Wait for user decision.
|
|
68
69
|
</step>
|
|
69
70
|
|
|
70
|
-
<step name="
|
|
71
|
-
|
|
71
|
+
<step name="parse_project">
|
|
72
|
+
Read PROJECT.md and extract research targets:
|
|
73
|
+
|
|
74
|
+
**From Scope (Building):**
|
|
75
|
+
- List each feature/capability that needs implementation
|
|
76
|
+
- These become specific research queries
|
|
77
|
+
|
|
78
|
+
**From Constraints:**
|
|
79
|
+
- Tech stack requirements (language, framework, platform)
|
|
80
|
+
- Performance requirements
|
|
81
|
+
- Compatibility requirements
|
|
82
|
+
|
|
83
|
+
**From Open Questions:**
|
|
84
|
+
- Questions that research should answer
|
|
85
|
+
- These are explicit research targets
|
|
86
|
+
|
|
87
|
+
**From Decisions Made:**
|
|
88
|
+
- Choices to validate ("any gotchas with X?")
|
|
72
89
|
|
|
73
|
-
|
|
90
|
+
Create a research manifest:
|
|
91
|
+
```
|
|
92
|
+
Features to implement:
|
|
93
|
+
- [feature 1]
|
|
94
|
+
- [feature 2]
|
|
95
|
+
- [feature 3]
|
|
74
96
|
|
|
75
|
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
97
|
+
Stack constraints:
|
|
98
|
+
- [constraint 1]
|
|
99
|
+
- [constraint 2]
|
|
78
100
|
|
|
79
|
-
|
|
101
|
+
Open questions to answer:
|
|
102
|
+
- [question 1]
|
|
103
|
+
- [question 2]
|
|
80
104
|
|
|
81
|
-
|
|
82
|
-
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
105
|
+
Decisions to validate:
|
|
106
|
+
- [decision 1]
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
If PROJECT.md is too vague for specific research targets, use AskUserQuestion:
|
|
110
|
+
- header: "Research scope"
|
|
111
|
+
- question: "What specific implementation questions should we research?"
|
|
112
|
+
- options based on detected domain
|
|
113
|
+
</step>
|
|
89
114
|
|
|
90
115
|
<step name="research">
|
|
91
|
-
Follow research-project.md workflow:
|
|
116
|
+
Follow research-project.md workflow with PROJECT.md-driven research:
|
|
92
117
|
|
|
93
118
|
1. Create `.planning/research/` directory
|
|
94
|
-
2. Spawn
|
|
119
|
+
2. Spawn subagents in parallel (all at once if ≤3):
|
|
120
|
+
- **stack.md** - Libraries/tools for each feature in Scope
|
|
121
|
+
- **implementation.md** - Current API patterns and code examples
|
|
122
|
+
- **risks.md** - What Claude might get wrong, deprecated patterns
|
|
95
123
|
3. Wait for completion
|
|
96
|
-
4.
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
124
|
+
4. Verify all outputs exist and are high-quality
|
|
125
|
+
</step>
|
|
126
|
+
|
|
127
|
+
<step name="verify_quality">
|
|
128
|
+
After subagents complete, verify quality:
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
# Check files exist
|
|
132
|
+
for f in stack implementation risks; do
|
|
133
|
+
[ -s ".planning/research/${f}.md" ] && echo "✓ ${f}.md" || echo "✗ ${f}.md MISSING"
|
|
134
|
+
done
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
**Quality check (read each file):**
|
|
138
|
+
- Contains ONLY high-confidence information?
|
|
139
|
+
- Includes actual code examples with current syntax?
|
|
140
|
+
- Addresses specific features from PROJECT.md?
|
|
141
|
+
- No low-confidence padding or "might be useful" items?
|
|
142
|
+
|
|
143
|
+
If a file contains low-quality content, note it for summary.
|
|
144
|
+
</step>
|
|
100
145
|
|
|
101
146
|
<step name="summarize">
|
|
102
|
-
After
|
|
147
|
+
After verification:
|
|
103
148
|
|
|
104
149
|
```
|
|
105
150
|
Research complete:
|
|
106
|
-
- .planning/research/
|
|
107
|
-
- .planning/research/
|
|
108
|
-
- .planning/research/
|
|
109
|
-
- .planning/research/standards.md
|
|
151
|
+
- .planning/research/stack.md - [libraries/tools identified]
|
|
152
|
+
- .planning/research/implementation.md - [patterns documented]
|
|
153
|
+
- .planning/research/risks.md - [pitfalls to avoid]
|
|
110
154
|
|
|
111
|
-
Key
|
|
112
|
-
- [
|
|
113
|
-
- [
|
|
114
|
-
- [Critical
|
|
155
|
+
Key implementation context:
|
|
156
|
+
- [Primary stack choice with rationale]
|
|
157
|
+
- [Most important API pattern to use]
|
|
158
|
+
- [Critical mistake Claude should avoid]
|
|
159
|
+
|
|
160
|
+
Open questions remaining:
|
|
161
|
+
- [Any questions research couldn't answer]
|
|
115
162
|
|
|
116
163
|
What's next?
|
|
117
164
|
1. Create roadmap (/gsd:create-roadmap) - Incorporates research
|
|
@@ -125,18 +172,16 @@ If user selects "Create roadmap" → invoke `/gsd:create-roadmap`
|
|
|
125
172
|
</process>
|
|
126
173
|
|
|
127
174
|
<output>
|
|
128
|
-
- `.planning/research/
|
|
129
|
-
- `.planning/research/
|
|
130
|
-
- `.planning/research/
|
|
131
|
-
- `.planning/research/standards.md`
|
|
175
|
+
- `.planning/research/stack.md` - Libraries and tools for each feature
|
|
176
|
+
- `.planning/research/implementation.md` - Current API patterns and code examples
|
|
177
|
+
- `.planning/research/risks.md` - Deprecated patterns and common mistakes
|
|
132
178
|
</output>
|
|
133
179
|
|
|
134
180
|
<success_criteria>
|
|
135
|
-
|
|
136
|
-
- [ ]
|
|
137
|
-
- [ ]
|
|
138
|
-
- [ ]
|
|
139
|
-
- [ ]
|
|
140
|
-
- [ ] All 4 research files exist
|
|
181
|
+
- [ ] PROJECT.md parsed for specific research targets
|
|
182
|
+
- [ ] Research addresses actual features from Scope
|
|
183
|
+
- [ ] Open Questions from PROJECT.md answered (or noted as unanswerable)
|
|
184
|
+
- [ ] All outputs are HIGH-CONFIDENCE only (no padding)
|
|
185
|
+
- [ ] Code examples use current API syntax
|
|
141
186
|
- [ ] User knows next steps (create-roadmap)
|
|
142
|
-
|
|
187
|
+
</success_criteria>
|