gsd-cc 1.5.1 → 1.5.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsd-cc",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
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,10 +84,10 @@ Resolve the script location:
84
84
 
85
85
  ```bash
86
86
  # Check local first, then global
87
- if [[ -f ".claude/skills/gsd-cc-auto/auto-loop.sh" ]]; then
88
- SCRIPT=".claude/skills/gsd-cc-auto/auto-loop.sh"
89
- elif [[ -f "$HOME/.claude/skills/gsd-cc-auto/auto-loop.sh" ]]; then
90
- SCRIPT="$HOME/.claude/skills/gsd-cc-auto/auto-loop.sh"
87
+ if [[ -f ".claude/skills/auto/auto-loop.sh" ]]; then
88
+ SCRIPT=".claude/skills/auto/auto-loop.sh"
89
+ elif [[ -f "$HOME/.claude/skills/auto/auto-loop.sh" ]]; then
90
+ SCRIPT="$HOME/.claude/skills/auto/auto-loop.sh"
91
91
  fi
92
92
  ```
93
93
 
@@ -15,16 +15,16 @@ COSTS_FILE="$GSD_DIR/COSTS.jsonl"
15
15
  BUDGET="${GSD_CC_BUDGET:-0}" # 0 = unlimited
16
16
 
17
17
  # Resolve skills directory (global or local)
18
- if [[ -d ".claude/skills/gsd" ]]; then
19
- SKILLS_DIR=".claude/skills/gsd"
20
- elif [[ -d "$HOME/.claude/skills/gsd" ]]; then
21
- SKILLS_DIR="$HOME/.claude/skills/gsd"
18
+ if [[ -d ".claude/skills/auto" ]]; then
19
+ SKILLS_DIR=".claude/skills"
20
+ elif [[ -d "$HOME/.claude/skills/auto" ]]; then
21
+ SKILLS_DIR="$HOME/.claude/skills"
22
22
  else
23
23
  echo "❌ GSD-CC skills not found. Run 'npx gsd-cc' to install."
24
24
  exit 1
25
25
  fi
26
26
 
27
- PROMPTS_DIR="$SKILLS_DIR/prompts"
27
+ COMMANDS_DIR="${SKILLS_DIR}/../commands"
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 "$PROMPTS_DIR/unify-instructions.txt" >> "$PROMPT_FILE"
143
+ cat "$COMMANDS_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 "$PROMPTS_DIR/plan-instructions.txt" >> "$PROMPT_FILE"
225
+ cat "$COMMANDS_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 "$PROMPTS_DIR/apply-instructions.txt" >> "$PROMPT_FILE"
243
+ cat "$COMMANDS_DIR/apply-instructions.txt" >> "$PROMPT_FILE"
244
244
  DISPATCH_PHASE="apply"
245
245
  ;;
246
246
 
@@ -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/gsd-cc-seed/types/{type}/guide.md
62
+ ~/.claude/skills/seed/types/{type}/guide.md
63
63
  ```
64
64
 
65
- If installed locally, check `./.claude/skills/gsd-cc-seed/types/{type}/guide.md` instead.
65
+ If installed locally, check `./.claude/skills/seed/types/{type}/guide.md` instead.
66
66
 
67
67
  Also read the config:
68
68
  ```
69
- ~/.claude/skills/gsd-cc-seed/types/{type}/config.md
69
+ ~/.claude/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.