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 AND files were modified:**
1152
+ **If .planning/codebase/ exists:**
1153
1153
 
1154
- Check if execution modified significant code:
1154
+ Check what changed in this plan:
1155
1155
 
1156
1156
  ```bash
1157
- # Get list of code files modified in this plan
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
- **If significant modifications (>3 code files changed):**
1160
+ **Update only if structural changes occurred:**
1162
1161
 
1163
- Determine which codebase documents may need update based on what changed:
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
- | Changed Files | Documents to Update |
1166
- |--------------|-------------------|
1167
- | New directories created | STRUCTURE.md |
1168
- | Package dependencies changed | STACK.md, INTEGRATIONS.md |
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 strategy (incremental, not full remap):**
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 - no codebase map to update.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-shit-done-cc",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code by TÂCHES.",
5
5
  "bin": {
6
6
  "get-shit-done-cc": "bin/install.js"