get-shit-done-cc 1.3.1 → 1.3.3
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.
|
@@ -30,7 +30,7 @@ Creates `.planning/` with PROJECT.md and config.json.
|
|
|
30
30
|
|
|
31
31
|
1. **Abort if project exists:**
|
|
32
32
|
```bash
|
|
33
|
-
[ -
|
|
33
|
+
[ -f .planning/PROJECT.md ] && echo "ERROR: Project already initialized. Use /gsd:progress" && exit 1
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
2. **Initialize git repo in THIS directory** (required even if inside a parent repo):
|
|
@@ -335,6 +335,28 @@ wc -l .planning/codebase/*.md
|
|
|
335
335
|
|
|
336
336
|
If any checks fail, report issues to user.
|
|
337
337
|
|
|
338
|
+
Continue to commit_codebase_map.
|
|
339
|
+
</step>
|
|
340
|
+
|
|
341
|
+
<step name="commit_codebase_map">
|
|
342
|
+
Commit the codebase map:
|
|
343
|
+
|
|
344
|
+
```bash
|
|
345
|
+
git add .planning/codebase/*.md
|
|
346
|
+
git commit -m "$(cat <<'EOF'
|
|
347
|
+
docs: map existing codebase
|
|
348
|
+
|
|
349
|
+
- STACK.md - Technologies and dependencies
|
|
350
|
+
- ARCHITECTURE.md - System design and patterns
|
|
351
|
+
- STRUCTURE.md - Directory layout
|
|
352
|
+
- CONVENTIONS.md - Code style and patterns
|
|
353
|
+
- TESTING.md - Test structure
|
|
354
|
+
- INTEGRATIONS.md - External services
|
|
355
|
+
- CONCERNS.md - Technical debt and issues
|
|
356
|
+
EOF
|
|
357
|
+
)"
|
|
358
|
+
```
|
|
359
|
+
|
|
338
360
|
Continue to offer_next.
|
|
339
361
|
</step>
|
|
340
362
|
|
package/package.json
CHANGED