gsd-cc 0.6.1 → 0.7.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.
- package/package.json +1 -1
- package/skills/gsd/SKILL.md +36 -1
- package/skills/gsd/discuss/SKILL.md +13 -3
- package/skills/gsd/ideate/SKILL.md +17 -7
- package/skills/gsd/plan/SKILL.md +13 -3
- package/skills/gsd/seed/SKILL.md +15 -3
- package/skills/gsd/unify/SKILL.md +13 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gsd-cc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Get Shit Done on Claude Code — structured AI development with your Max plan",
|
|
5
5
|
"author": "Philipp Briese (https://github.com/0ui-labs)",
|
|
6
6
|
"homepage": "https://github.com/0ui-labs/GSD-CC#readme",
|
package/skills/gsd/SKILL.md
CHANGED
|
@@ -76,7 +76,24 @@ IF M*-ROADMAP.md exists AND there are slices without a S*-PLAN.md:
|
|
|
76
76
|
### Plan Ready, Not Executed
|
|
77
77
|
```
|
|
78
78
|
IF S*-PLAN.md exists for current slice AND no T*-SUMMARY.md files for it:
|
|
79
|
-
→
|
|
79
|
+
→ Present the execution mode choice with a clear explanation:
|
|
80
|
+
|
|
81
|
+
"S{nn} is planned with {n} tasks. How do you want to execute?
|
|
82
|
+
|
|
83
|
+
Manual mode:
|
|
84
|
+
You work through each task one by one, each in a fresh session.
|
|
85
|
+
After each task you can review the code, run tests, and decide
|
|
86
|
+
whether to continue. More control, but you need to be present.
|
|
87
|
+
|
|
88
|
+
Auto mode:
|
|
89
|
+
Claude runs all tasks autonomously in the background via claude -p.
|
|
90
|
+
Each task gets a fresh context window. UNIFY runs automatically
|
|
91
|
+
when all tasks are done. You can walk away and come back later.
|
|
92
|
+
Runs on your Max Plan — no extra API costs.
|
|
93
|
+
Downside: you can't intervene between tasks.
|
|
94
|
+
|
|
95
|
+
manual or auto?"
|
|
96
|
+
|
|
80
97
|
→ "manual" → delegate to /gsd-cc-apply
|
|
81
98
|
→ "auto" → delegate to /gsd-cc-auto
|
|
82
99
|
```
|
|
@@ -188,3 +205,21 @@ When the user confirms roadmap creation (after PLANNING.md exists):
|
|
|
188
205
|
- Set `current_slice: S01`
|
|
189
206
|
- Set `phase: roadmap-complete`
|
|
190
207
|
- Update the Progress table with all slices as `pending`
|
|
208
|
+
|
|
209
|
+
6. Instruct the user to start a fresh session:
|
|
210
|
+
|
|
211
|
+
```
|
|
212
|
+
✓ Roadmap created. {N} slices in M001.
|
|
213
|
+
|
|
214
|
+
┌─────────────────────────────────────────────┐
|
|
215
|
+
│ Start a fresh session for planning: │
|
|
216
|
+
│ │
|
|
217
|
+
│ 1. Exit this session │
|
|
218
|
+
│ 2. Run: claude │
|
|
219
|
+
│ 3. Type: /gsd-cc │
|
|
220
|
+
│ │
|
|
221
|
+
│ I'll plan the first slice in detail. │
|
|
222
|
+
└─────────────────────────────────────────────┘
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
**Do NOT continue in this session.** Each phase gets a fresh context window.
|
|
@@ -128,17 +128,27 @@ Update the `phase` field in `.gsd/STATE.md`:
|
|
|
128
128
|
phase: discuss-complete
|
|
129
129
|
```
|
|
130
130
|
|
|
131
|
-
## Step 7: Confirm and
|
|
131
|
+
## Step 7: Confirm and End Session
|
|
132
132
|
|
|
133
133
|
```
|
|
134
|
-
Discussion complete for S{nn}. {n} decisions captured.
|
|
134
|
+
✓ Discussion complete for S{nn}. {n} decisions captured.
|
|
135
135
|
|
|
136
136
|
.gsd/S{nn}-CONTEXT.md — {n} decisions documented
|
|
137
137
|
.gsd/DECISIONS.md — updated
|
|
138
138
|
|
|
139
|
-
|
|
139
|
+
┌─────────────────────────────────────────────┐
|
|
140
|
+
│ Start a fresh session for planning: │
|
|
141
|
+
│ │
|
|
142
|
+
│ 1. Exit this session │
|
|
143
|
+
│ 2. Run: claude │
|
|
144
|
+
│ 3. Type: /gsd-cc │
|
|
145
|
+
│ │
|
|
146
|
+
│ I'll plan this slice using your decisions. │
|
|
147
|
+
└─────────────────────────────────────────────┘
|
|
140
148
|
```
|
|
141
149
|
|
|
150
|
+
**Do NOT continue in this session.** Each phase gets a fresh context window.
|
|
151
|
+
|
|
142
152
|
## When to Skip Discuss
|
|
143
153
|
|
|
144
154
|
Discuss is optional. The `/gsd-cc` router may skip it if:
|
|
@@ -102,15 +102,25 @@ Before handing off to Seed, do a gentle reality check:
|
|
|
102
102
|
When the user has a clear vision:
|
|
103
103
|
|
|
104
104
|
```
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
Problem: {one sentence}
|
|
108
|
-
Solution: {one sentence}
|
|
109
|
-
Key insight: {what makes this different from existing solutions, if anything}
|
|
110
|
-
|
|
111
|
-
|
|
105
|
+
✓ Ideation complete.
|
|
106
|
+
|
|
107
|
+
Problem: {one sentence}
|
|
108
|
+
Solution: {one sentence}
|
|
109
|
+
Key insight: {what makes this different from existing solutions, if anything}
|
|
110
|
+
|
|
111
|
+
┌─────────────────────────────────────────────┐
|
|
112
|
+
│ Start a fresh session for Seed: │
|
|
113
|
+
│ │
|
|
114
|
+
│ 1. Exit this session │
|
|
115
|
+
│ 2. Run: claude │
|
|
116
|
+
│ 3. Type: /gsd-cc │
|
|
117
|
+
│ │
|
|
118
|
+
│ I'll structure your idea into a plan. │
|
|
119
|
+
└─────────────────────────────────────────────┘
|
|
112
120
|
```
|
|
113
121
|
|
|
122
|
+
**Do NOT continue in this session.** Each phase gets a fresh context window.
|
|
123
|
+
|
|
114
124
|
Write a brief `.gsd/IDEATION.md` capturing the key insights from this conversation:
|
|
115
125
|
|
|
116
126
|
```markdown
|
package/skills/gsd/plan/SKILL.md
CHANGED
|
@@ -235,10 +235,10 @@ current_task: T01
|
|
|
235
235
|
phase: plan-complete
|
|
236
236
|
```
|
|
237
237
|
|
|
238
|
-
## Step 8: Confirm
|
|
238
|
+
## Step 8: Confirm and End Session
|
|
239
239
|
|
|
240
240
|
```
|
|
241
|
-
Planning complete for S{nn}: {slice name}
|
|
241
|
+
✓ Planning complete for S{nn}: {slice name}
|
|
242
242
|
|
|
243
243
|
{n} tasks, {m} acceptance criteria
|
|
244
244
|
Boundaries defined for all tasks
|
|
@@ -250,5 +250,15 @@ Planning complete for S{nn}: {slice name}
|
|
|
250
250
|
...
|
|
251
251
|
Branch: gsd/M{n}/S{nn}
|
|
252
252
|
|
|
253
|
-
|
|
253
|
+
┌─────────────────────────────────────────────┐
|
|
254
|
+
│ Start a fresh session for execution: │
|
|
255
|
+
│ │
|
|
256
|
+
│ 1. Exit this session │
|
|
257
|
+
│ 2. Run: claude │
|
|
258
|
+
│ 3. Type: /gsd-cc │
|
|
259
|
+
│ │
|
|
260
|
+
│ I'll ask: manual or auto? │
|
|
261
|
+
└─────────────────────────────────────────────┘
|
|
254
262
|
```
|
|
263
|
+
|
|
264
|
+
**Do NOT continue in this session.** The planning conversation consumes context window space. Execution needs a clean slate.
|
package/skills/gsd/seed/SKILL.md
CHANGED
|
@@ -177,17 +177,29 @@ Initialize from the STATE.md template with:
|
|
|
177
177
|
### Step 7: Confirm and Hand Off
|
|
178
178
|
|
|
179
179
|
```
|
|
180
|
-
|
|
180
|
+
✓ Seed complete.
|
|
181
|
+
|
|
181
182
|
.gsd/PLANNING.md — your full project brief
|
|
182
183
|
.gsd/PROJECT.md — project vision
|
|
183
184
|
.gsd/type.json — {type} / {rigor}
|
|
184
185
|
.gsd/STATE.md — initialized
|
|
185
186
|
.gsd/DECISIONS.md — {n} decisions logged
|
|
186
187
|
|
|
187
|
-
Quality check passed.
|
|
188
|
-
|
|
188
|
+
Quality check passed. Ready for roadmapping.
|
|
189
|
+
|
|
190
|
+
┌─────────────────────────────────────────────┐
|
|
191
|
+
│ Start a fresh session for the next phase: │
|
|
192
|
+
│ │
|
|
193
|
+
│ 1. Exit this session │
|
|
194
|
+
│ 2. Run: claude │
|
|
195
|
+
│ 3. Type: /gsd-cc │
|
|
196
|
+
│ │
|
|
197
|
+
│ I'll create the roadmap from your plan. │
|
|
198
|
+
└─────────────────────────────────────────────┘
|
|
189
199
|
```
|
|
190
200
|
|
|
201
|
+
**Do NOT continue in this session.** The seed conversation consumes context window space that the next phase doesn't need. A fresh session reads only what's needed from disk.
|
|
202
|
+
|
|
191
203
|
## Safety
|
|
192
204
|
|
|
193
205
|
- **Check for existing .gsd/ first.** If it exists, warn the user: "A .gsd/ directory already exists. This will overwrite it. Continue?"
|
|
@@ -215,10 +215,10 @@ unify_required: false
|
|
|
215
215
|
|
|
216
216
|
Update the Progress table: set the current slice to `done` with AC counts.
|
|
217
217
|
|
|
218
|
-
## Step 12: Confirm
|
|
218
|
+
## Step 12: Confirm and End Session
|
|
219
219
|
|
|
220
220
|
```
|
|
221
|
-
UNIFY complete for S{nn}.
|
|
221
|
+
✓ UNIFY complete for S{nn}.
|
|
222
222
|
|
|
223
223
|
Plan vs. Actual: {n} tasks — {summary}
|
|
224
224
|
Acceptance Criteria: {passed}/{total} passed
|
|
@@ -230,5 +230,15 @@ UNIFY complete for S{nn}.
|
|
|
230
230
|
Merged: gsd/M{n}/S{nn} → main
|
|
231
231
|
Commit: feat(M{n}/S{nn}): {slice name}
|
|
232
232
|
|
|
233
|
-
|
|
233
|
+
┌─────────────────────────────────────────────┐
|
|
234
|
+
│ Start a fresh session for the next slice: │
|
|
235
|
+
│ │
|
|
236
|
+
│ 1. Exit this session │
|
|
237
|
+
│ 2. Run: claude │
|
|
238
|
+
│ 3. Type: /gsd-cc │
|
|
239
|
+
│ │
|
|
240
|
+
│ I'll pick up with the next slice. │
|
|
241
|
+
└─────────────────────────────────────────────┘
|
|
234
242
|
```
|
|
243
|
+
|
|
244
|
+
**Do NOT continue in this session.** Each phase gets a fresh context window.
|