get-shit-done-cc 1.3.2 → 1.3.4
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/commands/gsd/add-phase.md +1 -3
- package/commands/gsd/create-roadmap.md +1 -3
- package/commands/gsd/insert-phase.md +1 -3
- package/commands/gsd/new-project.md +2 -4
- package/commands/gsd/progress.md +3 -9
- package/get-shit-done/references/continuation-format.md +32 -47
- package/get-shit-done/workflows/complete-milestone.md +1 -3
- package/get-shit-done/workflows/create-milestone.md +1 -3
- package/get-shit-done/workflows/create-roadmap.md +1 -3
- package/get-shit-done/workflows/discuss-milestone.md +1 -3
- package/get-shit-done/workflows/discuss-phase.md +1 -3
- package/get-shit-done/workflows/execute-phase.md +3 -9
- package/get-shit-done/workflows/map-codebase.md +1 -3
- package/get-shit-done/workflows/plan-phase.md +2 -6
- package/get-shit-done/workflows/resume-project.md +2 -6
- package/get-shit-done/workflows/transition.md +2 -6
- package/package.json +1 -1
|
@@ -188,9 +188,7 @@ Project state updated: .planning/STATE.md
|
|
|
188
188
|
|
|
189
189
|
**Phase {decimal_phase}: {description}** — urgent insertion
|
|
190
190
|
|
|
191
|
-
|
|
192
|
-
/gsd:plan-phase {decimal_phase}
|
|
193
|
-
```
|
|
191
|
+
`/gsd:plan-phase {decimal_phase}`
|
|
194
192
|
|
|
195
193
|
<sub>`/clear` first → fresh context window</sub>
|
|
196
194
|
|
|
@@ -30,7 +30,7 @@ Creates `.planning/` with PROJECT.md and config.json.
|
|
|
30
30
|
|
|
31
31
|
1. **Abort if project exists:**
|
|
32
32
|
```bash
|
|
33
|
-
[ -
|
|
33
|
+
[ -f .planning/PROJECT.md ] && echo "ERROR: Project already initialized. Use /gsd:progress" && exit 1
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
2. **Initialize git repo in THIS directory** (required even if inside a parent repo):
|
|
@@ -181,9 +181,7 @@ Project initialized:
|
|
|
181
181
|
|
|
182
182
|
**[Project Name]** — create roadmap
|
|
183
183
|
|
|
184
|
-
|
|
185
|
-
/gsd:create-roadmap
|
|
186
|
-
```
|
|
184
|
+
`/gsd:create-roadmap`
|
|
187
185
|
|
|
188
186
|
<sub>`/clear` first → fresh context window</sub>
|
|
189
187
|
|
package/commands/gsd/progress.md
CHANGED
|
@@ -106,9 +106,7 @@ Check if `{phase}-{plan}-PLAN.md` exists for that number.
|
|
|
106
106
|
|
|
107
107
|
**{phase}-{plan}: [Plan Name]** — [objective summary from PLAN.md]
|
|
108
108
|
|
|
109
|
-
|
|
110
|
-
/gsd:execute-plan [full-path-to-PLAN.md]
|
|
111
|
-
```
|
|
109
|
+
`/gsd:execute-plan [full-path-to-PLAN.md]`
|
|
112
110
|
|
|
113
111
|
<sub>`/clear` first → fresh context window</sub>
|
|
114
112
|
|
|
@@ -132,9 +130,7 @@ Check if `{phase}-{plan}-PLAN.md` exists for that number.
|
|
|
132
130
|
|
|
133
131
|
**Phase [N]: [Name]** — [Goal from ROADMAP.md]
|
|
134
132
|
|
|
135
|
-
|
|
136
|
-
/gsd:plan-phase [phase-number]
|
|
137
|
-
```
|
|
133
|
+
`/gsd:plan-phase [phase-number]`
|
|
138
134
|
|
|
139
135
|
<sub>`/clear` first → fresh context window</sub>
|
|
140
136
|
|
|
@@ -151,9 +147,7 @@ Check if `{phase}-{plan}-PLAN.md` exists for that number.
|
|
|
151
147
|
|
|
152
148
|
**Phase [N]: [Name]** — [Goal from ROADMAP.md]
|
|
153
149
|
|
|
154
|
-
|
|
155
|
-
/gsd:plan-phase [phase]
|
|
156
|
-
```
|
|
150
|
+
`/gsd:plan-phase [phase]`
|
|
157
151
|
|
|
158
152
|
<sub>`/clear` first → fresh context window</sub>
|
|
159
153
|
|
|
@@ -4,24 +4,22 @@ Standard format for presenting next steps after completing a command or workflow
|
|
|
4
4
|
|
|
5
5
|
## Core Structure
|
|
6
6
|
|
|
7
|
-
```
|
|
7
|
+
```
|
|
8
8
|
---
|
|
9
9
|
|
|
10
10
|
## ▶ Next Up
|
|
11
11
|
|
|
12
12
|
**{identifier}: {name}** — {one-line description}
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
{command to copy-paste}
|
|
16
|
-
```
|
|
14
|
+
`{command to copy-paste}`
|
|
17
15
|
|
|
18
16
|
<sub>`/clear` first → fresh context window</sub>
|
|
19
17
|
|
|
20
18
|
---
|
|
21
19
|
|
|
22
20
|
**Also available:**
|
|
23
|
-
- {alternative option 1}
|
|
24
|
-
- {alternative option 2}
|
|
21
|
+
- `{alternative option 1}` — description
|
|
22
|
+
- `{alternative option 2}` — description
|
|
25
23
|
|
|
26
24
|
---
|
|
27
25
|
```
|
|
@@ -30,7 +28,7 @@ Standard format for presenting next steps after completing a command or workflow
|
|
|
30
28
|
|
|
31
29
|
1. **Always show what it is** — name + description, never just a command path
|
|
32
30
|
2. **Pull context from source** — ROADMAP.md for phases, PLAN.md `<objective>` for plans
|
|
33
|
-
3. **Command in
|
|
31
|
+
3. **Command in inline code** — backticks, easy to copy-paste, renders as clickable link
|
|
34
32
|
4. **`/clear` explanation** — always include, keeps it concise but explains why
|
|
35
33
|
5. **"Also available" not "Other options"** — sounds more app-like
|
|
36
34
|
6. **Visual separators** — `---` above and below to make it stand out
|
|
@@ -39,16 +37,14 @@ Standard format for presenting next steps after completing a command or workflow
|
|
|
39
37
|
|
|
40
38
|
### Execute Next Plan
|
|
41
39
|
|
|
42
|
-
```
|
|
40
|
+
```
|
|
43
41
|
---
|
|
44
42
|
|
|
45
43
|
## ▶ Next Up
|
|
46
44
|
|
|
47
45
|
**02-03: Refresh Token Rotation** — Add /api/auth/refresh with sliding expiry
|
|
48
46
|
|
|
49
|
-
|
|
50
|
-
/gsd:execute-plan .planning/phases/02-auth/02-03-PLAN.md
|
|
51
|
-
```
|
|
47
|
+
`/gsd:execute-plan .planning/phases/02-auth/02-03-PLAN.md`
|
|
52
48
|
|
|
53
49
|
<sub>`/clear` first → fresh context window</sub>
|
|
54
50
|
|
|
@@ -65,7 +61,7 @@ Standard format for presenting next steps after completing a command or workflow
|
|
|
65
61
|
|
|
66
62
|
Add note that this is the last plan and what comes after:
|
|
67
63
|
|
|
68
|
-
```
|
|
64
|
+
```
|
|
69
65
|
---
|
|
70
66
|
|
|
71
67
|
## ▶ Next Up
|
|
@@ -73,9 +69,7 @@ Add note that this is the last plan and what comes after:
|
|
|
73
69
|
**02-03: Refresh Token Rotation** — Add /api/auth/refresh with sliding expiry
|
|
74
70
|
<sub>Final plan in Phase 2</sub>
|
|
75
71
|
|
|
76
|
-
|
|
77
|
-
/gsd:execute-plan .planning/phases/02-auth/02-03-PLAN.md
|
|
78
|
-
```
|
|
72
|
+
`/gsd:execute-plan .planning/phases/02-auth/02-03-PLAN.md`
|
|
79
73
|
|
|
80
74
|
<sub>`/clear` first → fresh context window</sub>
|
|
81
75
|
|
|
@@ -90,16 +84,14 @@ Add note that this is the last plan and what comes after:
|
|
|
90
84
|
|
|
91
85
|
### Plan a Phase
|
|
92
86
|
|
|
93
|
-
```
|
|
87
|
+
```
|
|
94
88
|
---
|
|
95
89
|
|
|
96
90
|
## ▶ Next Up
|
|
97
91
|
|
|
98
92
|
**Phase 2: Authentication** — JWT login flow with refresh tokens
|
|
99
93
|
|
|
100
|
-
|
|
101
|
-
/gsd:plan-phase 2
|
|
102
|
-
```
|
|
94
|
+
`/gsd:plan-phase 2`
|
|
103
95
|
|
|
104
96
|
<sub>`/clear` first → fresh context window</sub>
|
|
105
97
|
|
|
@@ -117,7 +109,7 @@ Add note that this is the last plan and what comes after:
|
|
|
117
109
|
|
|
118
110
|
Show completion status before next action:
|
|
119
111
|
|
|
120
|
-
```
|
|
112
|
+
```
|
|
121
113
|
---
|
|
122
114
|
|
|
123
115
|
## ✓ Phase 2 Complete
|
|
@@ -128,9 +120,7 @@ Show completion status before next action:
|
|
|
128
120
|
|
|
129
121
|
**Phase 3: Core Features** — User dashboard, settings, and data export
|
|
130
122
|
|
|
131
|
-
|
|
132
|
-
/gsd:plan-phase 3
|
|
133
|
-
```
|
|
123
|
+
`/gsd:plan-phase 3`
|
|
134
124
|
|
|
135
125
|
<sub>`/clear` first → fresh context window</sub>
|
|
136
126
|
|
|
@@ -148,27 +138,18 @@ Show completion status before next action:
|
|
|
148
138
|
|
|
149
139
|
When there's no clear primary action:
|
|
150
140
|
|
|
151
|
-
```
|
|
141
|
+
```
|
|
152
142
|
---
|
|
153
143
|
|
|
154
144
|
## ▶ Next Up
|
|
155
145
|
|
|
156
146
|
**Phase 3: Core Features** — User dashboard, settings, and data export
|
|
157
147
|
|
|
158
|
-
**To plan directly:**
|
|
159
|
-
```
|
|
160
|
-
/gsd:plan-phase 3
|
|
161
|
-
```
|
|
148
|
+
**To plan directly:** `/gsd:plan-phase 3`
|
|
162
149
|
|
|
163
|
-
**To discuss context first:**
|
|
164
|
-
```
|
|
165
|
-
/gsd:discuss-phase 3
|
|
166
|
-
```
|
|
150
|
+
**To discuss context first:** `/gsd:discuss-phase 3`
|
|
167
151
|
|
|
168
|
-
**To research unknowns:**
|
|
169
|
-
```
|
|
170
|
-
/gsd:research-phase 3
|
|
171
|
-
```
|
|
152
|
+
**To research unknowns:** `/gsd:research-phase 3`
|
|
172
153
|
|
|
173
154
|
<sub>`/clear` first → fresh context window</sub>
|
|
174
155
|
|
|
@@ -177,7 +158,7 @@ When there's no clear primary action:
|
|
|
177
158
|
|
|
178
159
|
### Milestone Complete
|
|
179
160
|
|
|
180
|
-
```
|
|
161
|
+
```
|
|
181
162
|
---
|
|
182
163
|
|
|
183
164
|
## 🎉 Milestone v1.0 Complete
|
|
@@ -188,9 +169,7 @@ All 4 phases shipped
|
|
|
188
169
|
|
|
189
170
|
**Plan v1.1** — Enhanced features and optimizations
|
|
190
171
|
|
|
191
|
-
|
|
192
|
-
/gsd:discuss-milestone
|
|
193
|
-
```
|
|
172
|
+
`/gsd:discuss-milestone`
|
|
194
173
|
|
|
195
174
|
<sub>`/clear` first → fresh context window</sub>
|
|
196
175
|
|
|
@@ -237,23 +216,19 @@ Extract: `**02-03: Refresh Token Rotation** — Add /api/auth/refresh with slidi
|
|
|
237
216
|
|
|
238
217
|
### Don't: Command-only (no context)
|
|
239
218
|
|
|
240
|
-
```
|
|
219
|
+
```
|
|
241
220
|
## To Continue
|
|
242
221
|
|
|
243
222
|
Run `/clear`, then paste:
|
|
244
|
-
```
|
|
245
223
|
/gsd:execute-plan .planning/phases/02-auth/02-03-PLAN.md
|
|
246
224
|
```
|
|
247
|
-
```
|
|
248
225
|
|
|
249
226
|
User has no idea what 02-03 is about.
|
|
250
227
|
|
|
251
228
|
### Don't: Missing /clear explanation
|
|
252
229
|
|
|
253
|
-
```markdown
|
|
254
|
-
```
|
|
255
|
-
/gsd:plan-phase 3
|
|
256
230
|
```
|
|
231
|
+
`/gsd:plan-phase 3`
|
|
257
232
|
|
|
258
233
|
Run /clear first.
|
|
259
234
|
```
|
|
@@ -262,9 +237,19 @@ Doesn't explain why. User might skip it.
|
|
|
262
237
|
|
|
263
238
|
### Don't: "Other options" language
|
|
264
239
|
|
|
265
|
-
```
|
|
240
|
+
```
|
|
266
241
|
Other options:
|
|
267
242
|
- Review roadmap
|
|
268
243
|
```
|
|
269
244
|
|
|
270
245
|
Sounds like an afterthought. Use "Also available:" instead.
|
|
246
|
+
|
|
247
|
+
### Don't: Fenced code blocks for commands
|
|
248
|
+
|
|
249
|
+
```
|
|
250
|
+
```
|
|
251
|
+
/gsd:plan-phase 3
|
|
252
|
+
```
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
Fenced blocks inside templates create nesting ambiguity. Use inline backticks instead.
|
|
@@ -200,9 +200,7 @@ Created: .planning/phases/${PHASE}-${SLUG}/${PHASE}-CONTEXT.md
|
|
|
200
200
|
|
|
201
201
|
**Phase ${PHASE}: [Name]** — [Goal from ROADMAP.md]
|
|
202
202
|
|
|
203
|
-
|
|
204
|
-
/gsd:plan-phase ${PHASE}
|
|
205
|
-
```
|
|
203
|
+
`/gsd:plan-phase ${PHASE}`
|
|
206
204
|
|
|
207
205
|
<sub>`/clear` first → fresh context window</sub>
|
|
208
206
|
|
|
@@ -1262,9 +1262,7 @@ Summary: .planning/phases/XX-name/{phase}-{plan}-SUMMARY.md
|
|
|
1262
1262
|
|
|
1263
1263
|
**{phase}-{next-plan}: [Plan Name]** — [objective from next PLAN.md]
|
|
1264
1264
|
|
|
1265
|
-
|
|
1266
|
-
/gsd:execute-plan .planning/phases/XX-name/{phase}-{next-plan}-PLAN.md
|
|
1267
|
-
```
|
|
1265
|
+
`/gsd:execute-plan .planning/phases/XX-name/{phase}-{next-plan}-PLAN.md`
|
|
1268
1266
|
|
|
1269
1267
|
<sub>`/clear` first → fresh context window</sub>
|
|
1270
1268
|
|
|
@@ -1318,9 +1316,7 @@ This milestone is 100% done.
|
|
|
1318
1316
|
|
|
1319
1317
|
**Complete Milestone** — archive and prepare for next
|
|
1320
1318
|
|
|
1321
|
-
|
|
1322
|
-
/gsd:complete-milestone
|
|
1323
|
-
```
|
|
1319
|
+
`/gsd:complete-milestone`
|
|
1324
1320
|
|
|
1325
1321
|
<sub>`/clear` first → fresh context window</sub>
|
|
1326
1322
|
|
|
@@ -1349,9 +1345,7 @@ All [Y] plans finished.
|
|
|
1349
1345
|
|
|
1350
1346
|
**Phase [X+1]: [Name]** — [Goal from ROADMAP.md]
|
|
1351
1347
|
|
|
1352
|
-
|
|
1353
|
-
/gsd:plan-phase [X+1]
|
|
1354
|
-
```
|
|
1348
|
+
`/gsd:plan-phase [X+1]`
|
|
1355
1349
|
|
|
1356
1350
|
<sub>`/clear` first → fresh context window</sub>
|
|
1357
1351
|
|
|
@@ -771,9 +771,7 @@ Phase plan created: .planning/phases/XX-name/{phase}-01-PLAN.md
|
|
|
771
771
|
|
|
772
772
|
**{phase}-01: [Plan Name]** — [objective summary]
|
|
773
773
|
|
|
774
|
-
|
|
775
|
-
/gsd:execute-plan .planning/phases/XX-name/{phase}-01-PLAN.md
|
|
776
|
-
```
|
|
774
|
+
`/gsd:execute-plan .planning/phases/XX-name/{phase}-01-PLAN.md`
|
|
777
775
|
|
|
778
776
|
<sub>`/clear` first → fresh context window</sub>
|
|
779
777
|
|
|
@@ -802,9 +800,7 @@ Total: [X] tasks across [Y] focused plans.
|
|
|
802
800
|
|
|
803
801
|
**{phase}-01: [Plan Name]** — [objective summary]
|
|
804
802
|
|
|
805
|
-
|
|
806
|
-
/gsd:execute-plan .planning/phases/XX-name/{phase}-01-PLAN.md
|
|
807
|
-
```
|
|
803
|
+
`/gsd:execute-plan .planning/phases/XX-name/{phase}-01-PLAN.md`
|
|
808
804
|
|
|
809
805
|
<sub>`/clear` first → fresh context window</sub>
|
|
810
806
|
|
|
@@ -182,9 +182,7 @@ Based on user selection, route to appropriate workflow:
|
|
|
182
182
|
|
|
183
183
|
**{phase}-{plan}: [Plan Name]** — [objective from PLAN.md]
|
|
184
184
|
|
|
185
|
-
|
|
186
|
-
/gsd:execute-plan [path]
|
|
187
|
-
```
|
|
185
|
+
`/gsd:execute-plan [path]`
|
|
188
186
|
|
|
189
187
|
<sub>`/clear` first → fresh context window</sub>
|
|
190
188
|
|
|
@@ -198,9 +196,7 @@ Based on user selection, route to appropriate workflow:
|
|
|
198
196
|
|
|
199
197
|
**Phase [N]: [Name]** — [Goal from ROADMAP.md]
|
|
200
198
|
|
|
201
|
-
|
|
202
|
-
/gsd:plan-phase [phase-number]
|
|
203
|
-
```
|
|
199
|
+
`/gsd:plan-phase [phase-number]`
|
|
204
200
|
|
|
205
201
|
<sub>`/clear` first → fresh context window</sub>
|
|
206
202
|
|
|
@@ -397,9 +397,7 @@ Exit skill and invoke SlashCommand("/gsd:plan-phase [X+1]")
|
|
|
397
397
|
|
|
398
398
|
**Phase [X+1]: [Name]** — [Goal from ROADMAP.md]
|
|
399
399
|
|
|
400
|
-
|
|
401
|
-
/gsd:plan-phase [X+1]
|
|
402
|
-
```
|
|
400
|
+
`/gsd:plan-phase [X+1]`
|
|
403
401
|
|
|
404
402
|
<sub>`/clear` first → fresh context window</sub>
|
|
405
403
|
|
|
@@ -440,9 +438,7 @@ Exit skill and invoke SlashCommand("/gsd:complete-milestone [version]")
|
|
|
440
438
|
|
|
441
439
|
**Complete Milestone [version]** — archive and prepare for next
|
|
442
440
|
|
|
443
|
-
|
|
444
|
-
/gsd:complete-milestone [version]
|
|
445
|
-
```
|
|
441
|
+
`/gsd:complete-milestone [version]`
|
|
446
442
|
|
|
447
443
|
<sub>`/clear` first → fresh context window</sub>
|
|
448
444
|
|
package/package.json
CHANGED