gsd-cc 0.6.0 → 0.6.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/apply/SKILL.md +32 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gsd-cc",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.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",
|
|
@@ -160,27 +160,47 @@ Setting `phase: apply-complete` triggers the UNIFY requirement. The `/gsd-cc` ro
|
|
|
160
160
|
|
|
161
161
|
Update the Progress table in STATE.md with the AC results.
|
|
162
162
|
|
|
163
|
-
## Step 10: Report and
|
|
163
|
+
## Step 10: Report and End Session
|
|
164
|
+
|
|
165
|
+
After completing a task, report results and instruct the user to start a fresh session:
|
|
164
166
|
|
|
165
167
|
```
|
|
166
|
-
S{nn}/T{nn} complete.
|
|
168
|
+
✓ S{nn}/T{nn} complete.
|
|
167
169
|
|
|
168
170
|
AC-1: Pass ✓
|
|
169
171
|
AC-2: Pass ✓
|
|
170
172
|
Committed: feat(S{nn}/T{nn}): {task name}
|
|
171
173
|
|
|
172
|
-
|
|
173
|
-
|
|
174
|
+
┌─────────────────────────────────────────────┐
|
|
175
|
+
│ Start a fresh session for the next task: │
|
|
176
|
+
│ │
|
|
177
|
+
│ 1. Exit this session │
|
|
178
|
+
│ 2. Run: claude │
|
|
179
|
+
│ 3. Type: /gsd-cc │
|
|
180
|
+
│ │
|
|
181
|
+
│ I'll know exactly where we left off. │
|
|
182
|
+
└─────────────────────────────────────────────┘
|
|
174
183
|
```
|
|
175
184
|
|
|
176
|
-
If
|
|
185
|
+
If this was the LAST task in the slice:
|
|
186
|
+
```
|
|
187
|
+
✓ S{nn}/T{nn} complete — all tasks in this slice are done.
|
|
188
|
+
|
|
189
|
+
UNIFY is required before the next slice.
|
|
190
|
+
|
|
191
|
+
┌─────────────────────────────────────────────┐
|
|
192
|
+
│ Start a fresh session for UNIFY: │
|
|
193
|
+
│ │
|
|
194
|
+
│ 1. Exit this session │
|
|
195
|
+
│ 2. Run: claude │
|
|
196
|
+
│ 3. Type: /gsd-cc │
|
|
197
|
+
│ │
|
|
198
|
+
│ UNIFY will run automatically. │
|
|
199
|
+
└─────────────────────────────────────────────┘
|
|
200
|
+
```
|
|
177
201
|
|
|
178
|
-
##
|
|
202
|
+
## Why Fresh Sessions?
|
|
179
203
|
|
|
180
|
-
|
|
181
|
-
- Report results
|
|
182
|
-
- Ask if they want to continue
|
|
183
|
-
- If yes, seamlessly start the next task
|
|
184
|
-
- The user can interrupt at any time between tasks
|
|
204
|
+
**Do NOT offer to continue in the same session.** Each task must run in a fresh context window. This prevents context rot — the core problem GSD-CC solves. The state on disk (STATE.md, summaries, plans) ensures perfect continuity between sessions. A fresh session means Claude reads only what's needed for the next task, not the accumulated noise of previous tasks.
|
|
185
205
|
|
|
186
|
-
This
|
|
206
|
+
This applies equally to manual mode and auto mode. The only difference is that auto mode starts fresh sessions automatically via `claude -p`, while manual mode requires the user to do it themselves.
|