gsd-cc 1.5.1 → 1.5.3
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 +1 -1
- package/package.json +1 -1
- package/skills/auto/SKILL.md +4 -4
- package/skills/auto/auto-loop.sh +5 -5
- package/skills/seed/SKILL.md +3 -3
- package/commands/.gitkeep +0 -0
- /package/{commands → skills/auto}/apply-instructions.txt +0 -0
- /package/{commands → skills/auto}/plan-instructions.txt +0 -0
- /package/{commands → skills/auto}/reassess-instructions.txt +0 -0
- /package/{commands → skills/auto}/unify-instructions.txt +0 -0
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', '
|
|
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.
|
|
3
|
+
"version": "1.5.3",
|
|
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",
|
package/skills/auto/SKILL.md
CHANGED
|
@@ -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/
|
|
88
|
-
SCRIPT=".claude/skills/
|
|
89
|
-
elif [[ -f "$HOME/.claude/skills/
|
|
90
|
-
SCRIPT="$HOME/.claude/skills/
|
|
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
|
|
package/skills/auto/auto-loop.sh
CHANGED
|
@@ -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/
|
|
19
|
-
SKILLS_DIR=".claude/skills
|
|
20
|
-
elif [[ -d "$HOME/.claude/skills/
|
|
21
|
-
SKILLS_DIR="$HOME/.claude/skills
|
|
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/
|
|
27
|
+
PROMPTS_DIR="${SKILLS_DIR}/auto"
|
|
28
28
|
|
|
29
29
|
# Parse --budget flag
|
|
30
30
|
while [[ $# -gt 0 ]]; do
|
package/skills/seed/SKILL.md
CHANGED
|
@@ -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/
|
|
62
|
+
~/.claude/skills/seed/types/{type}/guide.md
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
If installed locally, check `./.claude/skills/
|
|
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/
|
|
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.
|
package/commands/.gitkeep
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|