get-shit-done-cc 1.9.4 → 1.9.11
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 +45 -6
- package/bin/install.js +832 -122
- package/commands/gsd/help.md +8 -0
- package/commands/gsd/join-discord.md +18 -0
- package/commands/gsd/new-project.md +15 -11
- package/commands/gsd/plan-phase.md +7 -7
- package/commands/gsd/research-phase.md +5 -5
- package/get-shit-done/templates/context.md +0 -8
- package/get-shit-done/templates/state.md +0 -30
- package/get-shit-done/templates/summary.md +5 -28
- package/get-shit-done/templates/user-setup.md +1 -13
- package/get-shit-done/workflows/complete-milestone.md +1 -6
- package/get-shit-done/workflows/diagnose-issues.md +2 -15
- package/get-shit-done/workflows/discuss-phase.md +1 -1
- package/get-shit-done/workflows/execute-phase.md +3 -18
- package/get-shit-done/workflows/execute-plan.md +2 -32
- package/get-shit-done/workflows/list-phase-assumptions.md +2 -2
- package/get-shit-done/workflows/resume-project.md +3 -11
- package/get-shit-done/workflows/transition.md +1 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,8 +8,9 @@
|
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/get-shit-done-cc)
|
|
10
10
|
[](https://www.npmjs.com/package/get-shit-done-cc)
|
|
11
|
-
[](https://discord.gg/5JJgD5svVS)
|
|
12
12
|
[](https://github.com/glittercowboy/get-shit-done)
|
|
13
|
+
[](LICENSE)
|
|
13
14
|
|
|
14
15
|
<br>
|
|
15
16
|
|
|
@@ -75,7 +76,11 @@ People who want to describe what they want and have it built correctly — witho
|
|
|
75
76
|
npx get-shit-done-cc
|
|
76
77
|
```
|
|
77
78
|
|
|
78
|
-
|
|
79
|
+
The installer prompts you to choose:
|
|
80
|
+
1. **Runtime** — Claude Code, OpenCode, or both
|
|
81
|
+
2. **Location** — Global (all projects) or local (current project only)
|
|
82
|
+
|
|
83
|
+
Verify with `/gsd:help` inside your Claude Code or OpenCode interface.
|
|
79
84
|
|
|
80
85
|
### Staying Updated
|
|
81
86
|
|
|
@@ -95,11 +100,19 @@ npx get-shit-done-cc@latest
|
|
|
95
100
|
<summary><strong>Non-interactive Install (Docker, CI, Scripts)</strong></summary>
|
|
96
101
|
|
|
97
102
|
```bash
|
|
98
|
-
|
|
99
|
-
npx get-shit-done-cc --
|
|
103
|
+
# Claude Code
|
|
104
|
+
npx get-shit-done-cc --claude --global # Install to ~/.claude/
|
|
105
|
+
npx get-shit-done-cc --claude --local # Install to ./.claude/
|
|
106
|
+
|
|
107
|
+
# OpenCode (open source, free models)
|
|
108
|
+
npx get-shit-done-cc --opencode --global # Install to ~/.opencode/
|
|
109
|
+
|
|
110
|
+
# Both runtimes
|
|
111
|
+
npx get-shit-done-cc --both --global # Install to both directories
|
|
100
112
|
```
|
|
101
113
|
|
|
102
|
-
Use `--global` (`-g`) or `--local` (`-l`) to skip the
|
|
114
|
+
Use `--global` (`-g`) or `--local` (`-l`) to skip the location prompt.
|
|
115
|
+
Use `--claude`, `--opencode`, or `--both` to skip the runtime prompt.
|
|
103
116
|
|
|
104
117
|
</details>
|
|
105
118
|
|
|
@@ -111,7 +124,7 @@ Clone the repository and run the installer locally:
|
|
|
111
124
|
```bash
|
|
112
125
|
git clone https://github.com/glittercowboy/get-shit-done.git
|
|
113
126
|
cd get-shit-done
|
|
114
|
-
node bin/install.js --local
|
|
127
|
+
node bin/install.js --claude --local
|
|
115
128
|
```
|
|
116
129
|
|
|
117
130
|
Installs to `./.claude/` for testing modifications before contributing.
|
|
@@ -428,6 +441,7 @@ You're never locked in. The system adapts.
|
|
|
428
441
|
| `/gsd:help` | Show all commands and usage guide |
|
|
429
442
|
| `/gsd:whats-new` | See what changed since your installed version |
|
|
430
443
|
| `/gsd:update` | Update GSD with changelog preview |
|
|
444
|
+
| `/gsd:join-discord` | Join the GSD Discord community |
|
|
431
445
|
|
|
432
446
|
### Brownfield
|
|
433
447
|
|
|
@@ -541,6 +555,31 @@ CLAUDE_CONFIG_DIR=/home/youruser/.claude npx get-shit-done-cc --global
|
|
|
541
555
|
```
|
|
542
556
|
This ensures absolute paths are used instead of `~` which may not expand correctly in containers.
|
|
543
557
|
|
|
558
|
+
### Uninstalling
|
|
559
|
+
|
|
560
|
+
To remove GSD completely:
|
|
561
|
+
|
|
562
|
+
```bash
|
|
563
|
+
# Global installs
|
|
564
|
+
npx get-shit-done-cc --claude --global --uninstall
|
|
565
|
+
npx get-shit-done-cc --opencode --global --uninstall
|
|
566
|
+
|
|
567
|
+
# Local installs (current project)
|
|
568
|
+
npx get-shit-done-cc --claude --local --uninstall
|
|
569
|
+
npx get-shit-done-cc --opencode --local --uninstall
|
|
570
|
+
```
|
|
571
|
+
|
|
572
|
+
This removes all GSD commands, agents, hooks, and settings while preserving your other configurations.
|
|
573
|
+
|
|
574
|
+
---
|
|
575
|
+
|
|
576
|
+
## Community Ports
|
|
577
|
+
|
|
578
|
+
| Project | Platform | Description |
|
|
579
|
+
|---------|----------|-------------|
|
|
580
|
+
| [gsd-opencode](https://github.com/rokicool/gsd-opencode) | OpenCode | GSD adapted for OpenCode CLI |
|
|
581
|
+
| [gsd-gemini](https://github.com/uberfuzzy/gsd-gemini) | Gemini CLI | GSD adapted for Google's Gemini CLI |
|
|
582
|
+
|
|
544
583
|
---
|
|
545
584
|
|
|
546
585
|
## Star History
|