get-shit-done-cc 1.3.29 → 1.3.31
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
CHANGED
|
@@ -324,13 +324,24 @@ You're never locked in. The system adapts.
|
|
|
324
324
|
|
|
325
325
|
## Troubleshooting
|
|
326
326
|
|
|
327
|
-
**
|
|
328
|
-
- Restart Claude Code to reload
|
|
329
|
-
-
|
|
327
|
+
**Commands not found after install?**
|
|
328
|
+
- Restart Claude Code to reload slash commands
|
|
329
|
+
- Verify files exist in `~/.claude/commands/gsd/` (global) or `./.claude/commands/gsd/` (local)
|
|
330
330
|
|
|
331
|
-
**Commands
|
|
332
|
-
-
|
|
333
|
-
-
|
|
331
|
+
**Commands not working as expected?**
|
|
332
|
+
- Run `/gsd:help` to verify installation
|
|
333
|
+
- Re-run `npx get-shit-done-cc` to reinstall
|
|
334
|
+
|
|
335
|
+
**Updating to the latest version?**
|
|
336
|
+
```bash
|
|
337
|
+
npx get-shit-done-cc@latest
|
|
338
|
+
```
|
|
339
|
+
|
|
340
|
+
---
|
|
341
|
+
|
|
342
|
+
## Star History
|
|
343
|
+
|
|
344
|
+
[](https://www.star-history.com/#glittercowboy/get-shit-done&type=date&legend=top-left)
|
|
334
345
|
|
|
335
346
|
---
|
|
336
347
|
|
|
@@ -1502,6 +1502,7 @@ Summary: .planning/phases/{phase-dir}/{phase}-{plan}-SUMMARY.md
|
|
|
1502
1502
|
---
|
|
1503
1503
|
|
|
1504
1504
|
**Also available:**
|
|
1505
|
+
- `/gsd:verify-work {phase}-{plan}` — manual acceptance testing before continuing
|
|
1505
1506
|
- Review what was built before continuing
|
|
1506
1507
|
|
|
1507
1508
|
---
|
|
@@ -1562,6 +1563,7 @@ All {Y} plans finished.
|
|
|
1562
1563
|
---
|
|
1563
1564
|
|
|
1564
1565
|
**Also available:**
|
|
1566
|
+
- `/gsd:verify-work {Z}` — manual acceptance testing before continuing
|
|
1565
1567
|
- `/gsd:discuss-phase {Z+1}` — gather context first
|
|
1566
1568
|
- `/gsd:research-phase {Z+1}` — investigate unknowns
|
|
1567
1569
|
- Review phase accomplishments before continuing
|
|
@@ -1601,6 +1603,7 @@ Milestone is 100% done.
|
|
|
1601
1603
|
---
|
|
1602
1604
|
|
|
1603
1605
|
**Also available:**
|
|
1606
|
+
- `/gsd:verify-work` — manual acceptance testing before completing milestone
|
|
1604
1607
|
- `/gsd:add-phase <description>` — add another phase before completing
|
|
1605
1608
|
- Review accomplishments before archiving
|
|
1606
1609
|
|
|
@@ -33,6 +33,14 @@ Decimal phases enable urgent work insertion without renumbering:
|
|
|
33
33
|
Create an executable phase prompt (PLAN.md). PLAN.md IS the prompt that Claude executes - not a document that gets transformed.
|
|
34
34
|
</purpose>
|
|
35
35
|
|
|
36
|
+
<planning_principles>
|
|
37
|
+
**Secure by design:** Assume hostile input on every boundary. Validate, parameterize, authenticate, fail closed.
|
|
38
|
+
|
|
39
|
+
**Performance by design:** Assume production load, not demo conditions. Plan for efficient data access, appropriate caching, minimal round trips.
|
|
40
|
+
|
|
41
|
+
**Observable by design:** Plan to debug your own work. Include meaningful error messages, appropriate logging, and clear failure states.
|
|
42
|
+
</planning_principles>
|
|
43
|
+
|
|
36
44
|
<process>
|
|
37
45
|
|
|
38
46
|
<step name="load_project_state" priority="first">
|
package/package.json
CHANGED