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 CHANGED
@@ -324,13 +324,24 @@ You're never locked in. The system adapts.
324
324
 
325
325
  ## Troubleshooting
326
326
 
327
- **Plugin not found after install?**
328
- - Restart Claude Code to reload plugins
329
- - Check `/plugins` to see installed plugins
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 showing as unavailable?**
332
- - Verify plugin directory structure: should have `.claude-plugin/plugin.json`
333
- - Try `/gsd:help` - if it works, plugin is loaded correctly
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
+ [![Star History Chart](https://api.star-history.com/svg?repos=glittercowboy/get-shit-done&type=date&legend=top-left)](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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-shit-done-cc",
3
- "version": "1.3.30",
3
+ "version": "1.3.31",
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"