get-shit-done-cc 1.3.30 → 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 +17 -6
- package/get-shit-done/workflows/plan-phase.md +8 -0
- package/package.json +1 -1
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
|
|
|
@@ -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