get-shit-done-cc 1.3.7 → 1.3.8
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 +36 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -84,6 +84,42 @@ Ship your MVP in a day. Add features. Insert hotfixes. The system stays modular
|
|
|
84
84
|
|
|
85
85
|
---
|
|
86
86
|
|
|
87
|
+
## Existing Projects (Brownfield)
|
|
88
|
+
|
|
89
|
+
Already have code? Start here instead.
|
|
90
|
+
|
|
91
|
+
### 1. Map the codebase
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
/gsd:map-codebase
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
Spawns parallel agents to analyze your code. Creates `.planning/codebase/` with 7 documents:
|
|
98
|
+
|
|
99
|
+
- **STACK.md** — Languages, frameworks, dependencies
|
|
100
|
+
- **ARCHITECTURE.md** — Patterns, layers, data flow
|
|
101
|
+
- **STRUCTURE.md** — Directory layout, where things live
|
|
102
|
+
- **CONVENTIONS.md** — Code style, naming patterns
|
|
103
|
+
- **TESTING.md** — Test framework, patterns
|
|
104
|
+
- **INTEGRATIONS.md** — External services, APIs
|
|
105
|
+
- **CONCERNS.md** — Tech debt, known issues, fragile areas
|
|
106
|
+
|
|
107
|
+
### 2. Initialize project
|
|
108
|
+
|
|
109
|
+
```
|
|
110
|
+
/gsd:new-project
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Same as greenfield, but the system knows your codebase. Questions focus on what you're adding/changing, not starting from scratch.
|
|
114
|
+
|
|
115
|
+
### 3. Continue as normal
|
|
116
|
+
|
|
117
|
+
From here, it's the same: `/gsd:create-roadmap` → `/gsd:plan-phase` → `/gsd:execute-plan`
|
|
118
|
+
|
|
119
|
+
The codebase docs load automatically during planning. Claude knows your patterns, conventions, and where to put things.
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
87
123
|
## Why It Works
|
|
88
124
|
|
|
89
125
|
### Context Engineering
|
package/package.json
CHANGED