get-shit-done-cc 1.1.0 → 1.1.1

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.
Files changed (2) hide show
  1. package/README.md +12 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -38,13 +38,17 @@ That's what this is. No enterprise roleplay bullshit. Just an incredibly effecti
38
38
  /gsd:new-project
39
39
  ```
40
40
 
41
- The system asks questions. Keeps asking until it has everything — your goals, constraints, tech preferences, edge cases. You go back and forth until the idea is fully captured.
41
+ The system asks questions. Keeps asking until it has everything — your goals, constraints, tech preferences, edge cases. You go back and forth until the idea is fully captured. Creates **PROJECT.md**.
42
42
 
43
- ### 2. Initialize the project
43
+ ### 2. Research (optional) and create roadmap
44
44
 
45
- Your idea becomes:
45
+ ```
46
+ /gsd:research-project # For niche domains (3D, audio, shaders)
47
+ /gsd:create-roadmap # Create phases and state tracking
48
+ ```
49
+
50
+ For complex domains, research spawns subagents to discover ecosystem patterns before planning. Then roadmap creation produces:
46
51
 
47
- - **PROJECT.md** - Project vision (~50 lines)
48
52
  - **ROADMAP.md** - Phases from start to finish
49
53
  - **STATE.md** - Living memory that persists across sessions
50
54
 
@@ -139,7 +143,9 @@ You're never locked in. The system adapts.
139
143
 
140
144
  | Command | What it does |
141
145
  | --------------------------------- | ------------------------------------------------------------- |
142
- | `/gsd:new-project` | Extract your idea through questions, create project structure |
146
+ | `/gsd:new-project` | Extract your idea through questions, create PROJECT.md |
147
+ | `/gsd:research-project` | Research domain ecosystem before roadmap (optional) |
148
+ | `/gsd:create-roadmap` | Create roadmap and state tracking |
143
149
  | `/gsd:plan-phase [N]` | Generate task plans for phase |
144
150
  | `/gsd:execute-plan` | Run plan via subagent |
145
151
  | `/gsd:progress` | Where am I? What's next? |
@@ -149,6 +155,7 @@ You're never locked in. The system adapts.
149
155
  | `/gsd:add-phase` | Append phase to roadmap |
150
156
  | `/gsd:insert-phase [N]` | Insert urgent work |
151
157
  | `/gsd:discuss-phase [N]` | Gather context before planning |
158
+ | `/gsd:research-phase [N]` | Deep ecosystem research for niche domains |
152
159
  | `/gsd:list-phase-assumptions [N]` | See what Claude thinks before you correct it |
153
160
  | `/gsd:pause-work` | Create handoff file when stopping mid-phase |
154
161
  | `/gsd:resume-work` | Restore from last session |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-shit-done-cc",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
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"