get-shit-done-cc 1.3.4 → 1.3.5
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.
|
@@ -13,7 +13,7 @@ allowed-tools:
|
|
|
13
13
|
<objective>
|
|
14
14
|
Analyze existing codebase using parallel Explore agents to produce structured codebase documents.
|
|
15
15
|
|
|
16
|
-
This command spawns multiple Explore agents to analyze different aspects of the codebase in parallel, each with fresh context.
|
|
16
|
+
This command spawns multiple Explore agents to analyze different aspects of the codebase in parallel, each with fresh context.
|
|
17
17
|
|
|
18
18
|
Output: .planning/codebase/ folder with 7 structured documents about the codebase state.
|
|
19
19
|
</objective>
|
|
@@ -71,14 +71,12 @@ Check for .planning/STATE.md - loads context if project already initialized
|
|
|
71
71
|
- TESTING.md - Test structure, coverage, practices
|
|
72
72
|
- INTEGRATIONS.md - APIs, databases, external services
|
|
73
73
|
- CONCERNS.md - Technical debt, risks, issues
|
|
74
|
-
6.
|
|
75
|
-
7. Offer next steps (typically: /gsd:new-project or /gsd:plan-phase)
|
|
74
|
+
6. Offer next steps (typically: /gsd:new-project or /gsd:plan-phase)
|
|
76
75
|
</process>
|
|
77
76
|
|
|
78
77
|
<success_criteria>
|
|
79
78
|
- [ ] .planning/codebase/ directory created
|
|
80
79
|
- [ ] All 7 codebase documents written
|
|
81
|
-
- [ ] Each document under 100 lines
|
|
82
80
|
- [ ] Documents follow template structure
|
|
83
81
|
- [ ] Parallel agents completed without errors
|
|
84
82
|
- [ ] User knows next steps
|
|
@@ -177,7 +177,6 @@ Template for `.planning/codebase/STACK.md` - captures the technology foundation.
|
|
|
177
177
|
- Note runtime version from .nvmrc or package.json engines
|
|
178
178
|
- Include only dependencies that affect understanding (not every utility)
|
|
179
179
|
- Specify versions only when version matters (breaking changes, compatibility)
|
|
180
|
-
- Keep under ~100 lines total
|
|
181
180
|
|
|
182
181
|
**Useful for phase planning when:**
|
|
183
182
|
- Adding new dependencies (check compatibility)
|
|
@@ -1177,7 +1177,6 @@ For each document needing update:
|
|
|
1177
1177
|
1. Read current document
|
|
1178
1178
|
2. Identify what changed (new entries, removed entries, modified sections)
|
|
1179
1179
|
3. Apply minimal edits to reflect new state
|
|
1180
|
-
4. Keep document under 100 lines (summarize if needed)
|
|
1181
1180
|
|
|
1182
1181
|
**Commit codebase updates:**
|
|
1183
1182
|
```bash
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<purpose>
|
|
2
2
|
Orchestrate parallel Explore agents to analyze codebase and produce structured documents in .planning/codebase/
|
|
3
3
|
|
|
4
|
-
Each agent has fresh context and focuses on specific aspects. Output is concise
|
|
4
|
+
Each agent has fresh context and focuses on specific aspects. Output is concise and actionable for planning.
|
|
5
5
|
</purpose>
|
|
6
6
|
|
|
7
7
|
<philosophy>
|
|
@@ -11,8 +11,8 @@ Each agent has fresh context and focuses on specific aspects. Output is concise
|
|
|
11
11
|
- Each agent optimized for its domain (tech vs organization vs quality vs issues)
|
|
12
12
|
- Faster execution (agents run simultaneously)
|
|
13
13
|
|
|
14
|
-
**
|
|
15
|
-
|
|
14
|
+
**Document quality over length:**
|
|
15
|
+
Include enough detail to be useful as reference. Prioritize practical examples (especially code patterns) over arbitrary brevity. A 200-line TESTING.md with real patterns is more valuable than a 74-line summary.
|
|
16
16
|
</philosophy>
|
|
17
17
|
|
|
18
18
|
<process>
|
|
@@ -255,13 +255,6 @@ If an agent didn't find information for a section, use placeholder:
|
|
|
255
255
|
- "Not applicable" (for patterns that don't apply to this codebase)
|
|
256
256
|
- "No significant concerns" (for CONCERNS.md if codebase is clean)
|
|
257
257
|
|
|
258
|
-
**Line count check:**
|
|
259
|
-
|
|
260
|
-
Before writing, estimate total lines for each document. If any will exceed 100 lines:
|
|
261
|
-
- Summarize patterns instead of listing all instances
|
|
262
|
-
- Prioritize most important/frequent patterns
|
|
263
|
-
- Reference "see code for full details" for exhaustive lists
|
|
264
|
-
|
|
265
258
|
Continue to write_documents.
|
|
266
259
|
</step>
|
|
267
260
|
|
|
@@ -281,11 +274,7 @@ For each document:
|
|
|
281
274
|
- "Not detected" for optional infrastructure
|
|
282
275
|
- "Not applicable" for patterns that don't fit this codebase
|
|
283
276
|
- "No significant concerns" for clean codebase areas
|
|
284
|
-
4. **
|
|
285
|
-
- Keep most critical findings
|
|
286
|
-
- Summarize patterns instead of exhaustive lists
|
|
287
|
-
- Add "(see code for full details)" where appropriate
|
|
288
|
-
5. **Write to .planning/codebase/{NAME}.md** (uppercase filename)
|
|
277
|
+
4. **Write to .planning/codebase/{NAME}.md** (uppercase filename)
|
|
289
278
|
|
|
290
279
|
**Example filling pattern:**
|
|
291
280
|
|
|
@@ -329,7 +318,6 @@ wc -l .planning/codebase/*.md
|
|
|
329
318
|
|
|
330
319
|
**Verification checklist:**
|
|
331
320
|
- All 7 documents exist
|
|
332
|
-
- Each document under 100 lines
|
|
333
321
|
- No empty documents
|
|
334
322
|
- Templates populated with findings
|
|
335
323
|
|
|
@@ -377,7 +365,6 @@ Created .planning/codebase/:
|
|
|
377
365
|
- INTEGRATIONS.md ([N] lines) - External services and APIs
|
|
378
366
|
- CONCERNS.md ([N] lines) - Technical debt and issues
|
|
379
367
|
|
|
380
|
-
[If any files >100 lines, add warning: "⚠ Some files exceed 100 lines - consider summarizing further"]
|
|
381
368
|
|
|
382
369
|
---
|
|
383
370
|
|
|
@@ -410,7 +397,6 @@ End workflow.
|
|
|
410
397
|
- Agent prompts are specific and actionable
|
|
411
398
|
- TaskOutput used to collect all agent results
|
|
412
399
|
- All 7 codebase documents written using template filling
|
|
413
|
-
- Each document under 100 lines (or warning shown)
|
|
414
400
|
- Documents follow template structure with actual findings
|
|
415
401
|
- Clear completion summary with line counts
|
|
416
402
|
- User offered clear next steps in GSD style
|
package/package.json
CHANGED