gsd-cc 1.5.2 → 1.5.4

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/bin/install.js CHANGED
@@ -27,7 +27,7 @@ ${cyan} ██████╗ ███████╗██████╗
27
27
  `;
28
28
 
29
29
  // Directories inside gsd-cc/ that map 1:1 into .claude/
30
- const CLAUDE_DIRS = ['skills', 'hooks', 'checklists', 'commands', 'templates'];
30
+ const CLAUDE_DIRS = ['skills', 'hooks', 'checklists', 'templates'];
31
31
 
32
32
  // Parse args
33
33
  const args = process.argv.slice(2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsd-cc",
3
- "version": "1.5.2",
3
+ "version": "1.5.4",
4
4
  "description": "Get Shit Done on Claude Code — structured AI development with your Max plan",
5
5
  "author": "Philipp Briese (https://github.com/0ui-labs)",
6
6
  "homepage": "https://github.com/0ui-labs/GSD-CC#readme",
@@ -84,8 +84,8 @@ Resolve the script location:
84
84
 
85
85
  ```bash
86
86
  # Check local first, then global
87
- if [[ -f ".claude/skills/auto/auto-loop.sh" ]]; then
88
- SCRIPT=".claude/skills/auto/auto-loop.sh"
87
+ if [[ -f "./gsd-cc/skills/auto/auto-loop.sh" ]]; then
88
+ SCRIPT="./gsd-cc/skills/auto/auto-loop.sh"
89
89
  elif [[ -f "$HOME/.claude/skills/auto/auto-loop.sh" ]]; then
90
90
  SCRIPT="$HOME/.claude/skills/auto/auto-loop.sh"
91
91
  fi
@@ -24,7 +24,7 @@ else
24
24
  exit 1
25
25
  fi
26
26
 
27
- COMMANDS_DIR="${SKILLS_DIR}/../commands"
27
+ PROMPTS_DIR="${SKILLS_DIR}/auto"
28
28
 
29
29
  # Parse --budget flag
30
30
  while [[ $# -gt 0 ]]; do
@@ -140,7 +140,7 @@ while true; do
140
140
  echo "</decisions>" >> "$PROMPT_FILE"
141
141
  fi
142
142
 
143
- cat "$COMMANDS_DIR/unify-instructions.txt" >> "$PROMPT_FILE"
143
+ cat "$PROMPTS_DIR/unify-instructions.txt" >> "$PROMPT_FILE"
144
144
 
145
145
  RESULT_FILE="/tmp/gsd-result-$$.json"
146
146
  timeout 600 claude -p "$(cat "$PROMPT_FILE")" \
@@ -222,7 +222,7 @@ while true; do
222
222
  # Include context if it exists
223
223
  [[ -f "$GSD_DIR/${SLICE}-CONTEXT.md" ]] && { echo "<context>"; cat "$GSD_DIR/${SLICE}-CONTEXT.md"; echo "</context>"; } >> "$PROMPT_FILE"
224
224
 
225
- cat "$COMMANDS_DIR/plan-instructions.txt" >> "$PROMPT_FILE"
225
+ cat "$PROMPTS_DIR/plan-instructions.txt" >> "$PROMPT_FILE"
226
226
  DISPATCH_PHASE="plan"
227
227
  ;;
228
228
 
@@ -240,7 +240,7 @@ while true; do
240
240
  [[ -f "$f" ]] && { echo "<prior-summary>"; cat "$f"; echo "</prior-summary>"; } >> "$PROMPT_FILE"
241
241
  done
242
242
 
243
- cat "$COMMANDS_DIR/apply-instructions.txt" >> "$PROMPT_FILE"
243
+ cat "$PROMPTS_DIR/apply-instructions.txt" >> "$PROMPT_FILE"
244
244
  DISPATCH_PHASE="apply"
245
245
  ;;
246
246
 
@@ -202,8 +202,8 @@ One file per task, using the PLAN.xml template format:
202
202
 
203
203
  Before finishing, check against `checklists/planning-ready.md`:
204
204
 
205
- Read: `~/.claude/checklists/planning-ready.md`
206
- (or `./.claude/checklists/planning-ready.md`)
205
+ Read: `./gsd-cc/checklists/planning-ready.md`
206
+ (or `~/.claude/checklists/planning-ready.md`)
207
207
 
208
208
  Verify ALL of these:
209
209
 
@@ -59,14 +59,14 @@ If ambiguous, ask ONE clarifying question. Don't overthink it.
59
59
 
60
60
  Read the type-specific guide from:
61
61
  ```
62
- ~/.claude/skills/seed/types/{type}/guide.md
62
+ ./gsd-cc/skills/seed/types/{type}/guide.md
63
63
  ```
64
64
 
65
- If installed locally, check `./.claude/skills/seed/types/{type}/guide.md` instead.
65
+ If installed globally, check `~/.claude/skills/seed/types/{type}/guide.md` instead.
66
66
 
67
67
  Also read the config:
68
68
  ```
69
- ~/.claude/skills/seed/types/{type}/config.md
69
+ ./gsd-cc/skills/seed/types/{type}/config.md
70
70
  ```
71
71
 
72
72
  The guide contains numbered sections with `Explore` and `Suggest` fields. The config sets the rigor level and section count.
@@ -102,8 +102,8 @@ Walk through the guide sections **one at a time**. For each section:
102
102
 
103
103
  After completing all sections, mentally check against `checklists/planning-ready.md`:
104
104
 
105
- Read: `~/.claude/checklists/planning-ready.md`
106
- (or `./.claude/checklists/planning-ready.md`)
105
+ Read: `./gsd-cc/checklists/planning-ready.md`
106
+ (or `~/.claude/checklists/planning-ready.md`)
107
107
 
108
108
  Verify:
109
109
  - Is there enough information to create a roadmap?
@@ -118,7 +118,7 @@ Create the `.gsd/` directory and write these files:
118
118
 
119
119
  #### `.gsd/PLANNING.md`
120
120
 
121
- Use the template from `~/.claude/templates/PLANNING.md` (or `./.claude/templates/PLANNING.md`). Fill in all sections from the conversation:
121
+ Use the template from `./gsd-cc/templates/PLANNING.md` (or `~/.claude/templates/PLANNING.md`). Fill in all sections from the conversation:
122
122
  - Vision (from their initial description + refinements)
123
123
  - Users (from user/auth discussions)
124
124
  - Requirements v1, v2, Out of Scope (from exploration)
@@ -194,14 +194,14 @@ If no VISION.md exists, skip this step.
194
194
 
195
195
  Check against `checklists/unify-complete.md`:
196
196
 
197
- Read: `~/.claude/checklists/unify-complete.md`
198
- (or `./.claude/checklists/unify-complete.md`)
197
+ Read: `./gsd-cc/checklists/unify-complete.md`
198
+ (or `~/.claude/checklists/unify-complete.md`)
199
199
 
200
200
  Verify ALL items pass. If any fails, fix the UNIFY document before proceeding.
201
201
 
202
202
  ## Step 9: Write UNIFY.md
203
203
 
204
- Write `.gsd/S{nn}-UNIFY.md` using the template from `~/.claude/templates/UNIFY.md` (or `./.claude/templates/UNIFY.md`). Include all sections from Steps 2-7.
204
+ Write `.gsd/S{nn}-UNIFY.md` using the template from `./gsd-cc/templates/UNIFY.md` (or `~/.claude/templates/UNIFY.md`). Include all sections from Steps 2-7.
205
205
 
206
206
  Set frontmatter:
207
207
  ```yaml
package/commands/.gitkeep DELETED
File without changes
File without changes