get-shit-done-cc 1.3.0 → 1.3.2
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/README.md +1 -0
- package/commands/gsd/help.md +18 -0
- package/get-shit-done/workflows/map-codebase.md +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -156,6 +156,7 @@ You're never locked in. The system adapts.
|
|
|
156
156
|
| --------------------------------- | ------------------------------------------------------------- |
|
|
157
157
|
| `/gsd:new-project` | Extract your idea through questions, create PROJECT.md |
|
|
158
158
|
| `/gsd:create-roadmap` | Create roadmap and state tracking |
|
|
159
|
+
| `/gsd:map-codebase` | Map existing codebase for brownfield projects |
|
|
159
160
|
| `/gsd:plan-phase [N]` | Generate task plans for phase |
|
|
160
161
|
| `/gsd:execute-plan` | Run plan via subagent |
|
|
161
162
|
| `/gsd:progress` | Where am I? What's next? |
|
package/commands/gsd/help.md
CHANGED
|
@@ -52,6 +52,16 @@ Create roadmap and state tracking for initialized project.
|
|
|
52
52
|
|
|
53
53
|
Usage: `/gsd:create-roadmap`
|
|
54
54
|
|
|
55
|
+
**`/gsd:map-codebase`**
|
|
56
|
+
Map an existing codebase for brownfield projects.
|
|
57
|
+
|
|
58
|
+
- Analyzes codebase with parallel Explore agents
|
|
59
|
+
- Creates `.planning/codebase/` with 7 focused documents
|
|
60
|
+
- Covers stack, architecture, structure, conventions, testing, integrations, concerns
|
|
61
|
+
- Use before `/gsd:new-project` on existing codebases
|
|
62
|
+
|
|
63
|
+
Usage: `/gsd:map-codebase`
|
|
64
|
+
|
|
55
65
|
### Phase Planning
|
|
56
66
|
|
|
57
67
|
**`/gsd:discuss-phase <number>`**
|
|
@@ -217,6 +227,14 @@ Show this command reference.
|
|
|
217
227
|
├── STATE.md # Project memory & context
|
|
218
228
|
├── ISSUES.md # Deferred enhancements (created when needed)
|
|
219
229
|
├── config.json # Workflow mode & gates
|
|
230
|
+
├── codebase/ # Codebase map (brownfield projects)
|
|
231
|
+
│ ├── STACK.md # Languages, frameworks, dependencies
|
|
232
|
+
│ ├── ARCHITECTURE.md # Patterns, layers, data flow
|
|
233
|
+
│ ├── STRUCTURE.md # Directory layout, key files
|
|
234
|
+
│ ├── CONVENTIONS.md # Coding standards, naming
|
|
235
|
+
│ ├── TESTING.md # Test setup, patterns
|
|
236
|
+
│ ├── INTEGRATIONS.md # External services, APIs
|
|
237
|
+
│ └── CONCERNS.md # Tech debt, known issues
|
|
220
238
|
└── phases/
|
|
221
239
|
├── 01-foundation/
|
|
222
240
|
│ ├── 01-01-PLAN.md
|
|
@@ -335,6 +335,28 @@ wc -l .planning/codebase/*.md
|
|
|
335
335
|
|
|
336
336
|
If any checks fail, report issues to user.
|
|
337
337
|
|
|
338
|
+
Continue to commit_codebase_map.
|
|
339
|
+
</step>
|
|
340
|
+
|
|
341
|
+
<step name="commit_codebase_map">
|
|
342
|
+
Commit the codebase map:
|
|
343
|
+
|
|
344
|
+
```bash
|
|
345
|
+
git add .planning/codebase/*.md
|
|
346
|
+
git commit -m "$(cat <<'EOF'
|
|
347
|
+
docs: map existing codebase
|
|
348
|
+
|
|
349
|
+
- STACK.md - Technologies and dependencies
|
|
350
|
+
- ARCHITECTURE.md - System design and patterns
|
|
351
|
+
- STRUCTURE.md - Directory layout
|
|
352
|
+
- CONVENTIONS.md - Code style and patterns
|
|
353
|
+
- TESTING.md - Test structure
|
|
354
|
+
- INTEGRATIONS.md - External services
|
|
355
|
+
- CONCERNS.md - Technical debt and issues
|
|
356
|
+
EOF
|
|
357
|
+
)"
|
|
358
|
+
```
|
|
359
|
+
|
|
338
360
|
Continue to offer_next.
|
|
339
361
|
</step>
|
|
340
362
|
|
package/package.json
CHANGED