get-shit-done-cc 1.3.0 → 1.3.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/README.md +1 -0
- package/commands/gsd/help.md +18 -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
|
package/package.json
CHANGED