get-shit-done-cc 1.3.6 → 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/get-shit-done/workflows/execute-phase.md +19 -27
- 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
|
|
@@ -1149,48 +1149,40 @@ For commit message conventions and git workflow patterns, see ~/.claude/get-shit
|
|
|
1149
1149
|
</step>
|
|
1150
1150
|
|
|
1151
1151
|
<step name="update_codebase_map">
|
|
1152
|
-
**If .planning/codebase/ exists
|
|
1152
|
+
**If .planning/codebase/ exists:**
|
|
1153
1153
|
|
|
1154
|
-
Check
|
|
1154
|
+
Check what changed in this plan:
|
|
1155
1155
|
|
|
1156
1156
|
```bash
|
|
1157
|
-
|
|
1158
|
-
MODIFIED_CODE=$(git diff --name-only HEAD~1 2>/dev/null | grep -E '\.(ts|js|py|go|rs|swift|java)$' | grep -v node_modules)
|
|
1157
|
+
git diff --name-only HEAD~1 2>/dev/null
|
|
1159
1158
|
```
|
|
1160
1159
|
|
|
1161
|
-
**
|
|
1160
|
+
**Update only if structural changes occurred:**
|
|
1162
1161
|
|
|
1163
|
-
|
|
1162
|
+
| Change Detected | Update Action |
|
|
1163
|
+
|-----------------|---------------|
|
|
1164
|
+
| New directory in src/ | STRUCTURE.md: Add to directory layout |
|
|
1165
|
+
| package.json deps changed | STACK.md: Add/remove from dependencies list |
|
|
1166
|
+
| New file pattern (e.g., first .test.ts) | CONVENTIONS.md: Note new pattern |
|
|
1167
|
+
| New external API client | INTEGRATIONS.md: Add service entry with file path |
|
|
1168
|
+
| Config file added/changed | STACK.md: Update configuration section |
|
|
1169
|
+
| File renamed/moved | Update paths in relevant docs |
|
|
1164
1170
|
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
| New patterns introduced | ARCHITECTURE.md, CONVENTIONS.md |
|
|
1170
|
-
| Test files added/changed | TESTING.md |
|
|
1171
|
-
| Config files changed | STACK.md |
|
|
1172
|
-
| External service integration | INTEGRATIONS.md |
|
|
1171
|
+
**Skip update if only:**
|
|
1172
|
+
- Code changes within existing files
|
|
1173
|
+
- Bug fixes
|
|
1174
|
+
- Content changes (no structural impact)
|
|
1173
1175
|
|
|
1174
|
-
**Update
|
|
1176
|
+
**Update format:**
|
|
1177
|
+
Make single targeted edits - add a bullet point, update a path, or remove a stale entry. Don't rewrite sections.
|
|
1175
1178
|
|
|
1176
|
-
For each document needing update:
|
|
1177
|
-
1. Read current document
|
|
1178
|
-
2. Identify what changed (new entries, removed entries, modified sections)
|
|
1179
|
-
3. Apply minimal edits to reflect new state
|
|
1180
|
-
|
|
1181
|
-
**Commit codebase updates:**
|
|
1182
1179
|
```bash
|
|
1183
1180
|
git add .planning/codebase/*.md
|
|
1184
1181
|
git commit --amend --no-edit # Include in plan commit
|
|
1185
1182
|
```
|
|
1186
1183
|
|
|
1187
|
-
**If no significant changes:**
|
|
1188
|
-
Skip codebase update - map is still current.
|
|
1189
|
-
|
|
1190
1184
|
**If .planning/codebase/ doesn't exist:**
|
|
1191
|
-
Skip this step
|
|
1192
|
-
|
|
1193
|
-
**Note:** Full remap via `/gsd:map-codebase` is available if incremental updates become stale.
|
|
1185
|
+
Skip this step.
|
|
1194
1186
|
</step>
|
|
1195
1187
|
|
|
1196
1188
|
<step name="check_phase_issues">
|
package/package.json
CHANGED