gsd-cc 1.5.3 → 1.5.5
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 +21 -0
- package/package.json +1 -1
- package/skills/auto/SKILL.md +2 -2
- package/skills/plan/SKILL.md +2 -2
- package/skills/seed/SKILL.md +6 -6
- package/skills/unify/SKILL.md +3 -3
package/bin/install.js
CHANGED
|
@@ -115,6 +115,27 @@ function install(isGlobal) {
|
|
|
115
115
|
|
|
116
116
|
console.log(` Installing to ${cyan}${label}${reset}\n`);
|
|
117
117
|
|
|
118
|
+
// Clean up legacy skill directories (gsd-cc-* from pre-1.5 versions)
|
|
119
|
+
const skillsDir = path.join(claudeBase, 'skills');
|
|
120
|
+
if (fs.existsSync(skillsDir)) {
|
|
121
|
+
const entries = fs.readdirSync(skillsDir);
|
|
122
|
+
for (const entry of entries) {
|
|
123
|
+
if (entry.startsWith('gsd-cc-') || entry === 'gsd') {
|
|
124
|
+
const legacyPath = path.join(skillsDir, entry);
|
|
125
|
+
if (fs.statSync(legacyPath).isDirectory()) {
|
|
126
|
+
removeDir(legacyPath);
|
|
127
|
+
console.log(` ${dim}Removed legacy: skills/${entry}${reset}`);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
// Also remove legacy prompts/ directory
|
|
132
|
+
const legacyPrompts = path.join(claudeBase, 'prompts');
|
|
133
|
+
if (fs.existsSync(legacyPrompts)) {
|
|
134
|
+
removeDir(legacyPrompts);
|
|
135
|
+
console.log(` ${dim}Removed legacy: prompts/${reset}`);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
118
139
|
let fileCount = 0;
|
|
119
140
|
|
|
120
141
|
// Copy each directory 1:1 into .claude/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gsd-cc",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.5",
|
|
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,8 +84,8 @@ Resolve the script location:
|
|
|
84
84
|
|
|
85
85
|
```bash
|
|
86
86
|
# Check local first, then global
|
|
87
|
-
if [[ -f "
|
|
88
|
-
SCRIPT="
|
|
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
|
package/skills/plan/SKILL.md
CHANGED
|
@@ -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:
|
|
206
|
-
(or
|
|
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
|
|
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
|
-
|
|
62
|
+
./gsd-cc/skills/seed/types/{type}/guide.md
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
If installed
|
|
65
|
+
If installed globally, check `~/.claude/skills/seed/types/{type}/guide.md` instead.
|
|
66
66
|
|
|
67
67
|
Also read the config:
|
|
68
68
|
```
|
|
69
|
-
|
|
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:
|
|
106
|
-
(or
|
|
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
|
|
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)
|
package/skills/unify/SKILL.md
CHANGED
|
@@ -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:
|
|
198
|
-
(or
|
|
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
|
|
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
|