get-shit-done-cc 1.3.6 → 1.3.7
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.
|
@@ -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