gsd-cc 0.1.0 → 0.2.0
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 +1 -1
- package/skills/gsd/SKILL.md +5 -0
- package/skills/gsd/apply/SKILL.md +4 -0
- package/skills/gsd/auto/SKILL.md +4 -0
- package/skills/gsd/discuss/SKILL.md +4 -0
- package/skills/gsd/plan/SKILL.md +4 -0
- package/skills/gsd/seed/SKILL.md +18 -3
- package/skills/gsd/status/SKILL.md +4 -0
- package/skills/gsd/templates/STATE.md +1 -0
- package/skills/gsd/unify/SKILL.md +4 -0
- package/skills/gsd/update/SKILL.md +69 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gsd-cc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
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/gsd/SKILL.md
CHANGED
|
@@ -12,6 +12,10 @@ allowed-tools: Read, Write, Edit, Bash, Glob, Grep
|
|
|
12
12
|
|
|
13
13
|
You are the GSD-CC router. Your job is to read the current project state and suggest **exactly one** next action. Not a menu. Not "what do you want to do?". One clear recommendation.
|
|
14
14
|
|
|
15
|
+
## Language
|
|
16
|
+
|
|
17
|
+
Read the `language` field from `.gsd/STATE.md`. All output — messages, suggestions, file content — must use that language. If no language is set, default to English.
|
|
18
|
+
|
|
15
19
|
## Step 1: Detect State
|
|
16
20
|
|
|
17
21
|
Check what exists on disk:
|
|
@@ -143,6 +147,7 @@ When routing to a sub-skill, tell the user what you're doing and then invoke the
|
|
|
143
147
|
- Reconciliation → `/gsd-cc-unify`
|
|
144
148
|
- Auto mode → `/gsd-cc-auto`
|
|
145
149
|
- Status overview → `/gsd-cc-status`
|
|
150
|
+
- Update skills → `/gsd-cc-update`
|
|
146
151
|
|
|
147
152
|
Power users can invoke these directly. But the default path only needs `/gsd-cc` + Enter.
|
|
148
153
|
|
|
@@ -12,6 +12,10 @@ allowed-tools: Read, Write, Edit, Bash, Glob, Grep
|
|
|
12
12
|
|
|
13
13
|
You execute one task at a time from the current slice plan. Each task has a plan with acceptance criteria and boundaries. Follow the plan precisely.
|
|
14
14
|
|
|
15
|
+
## Language
|
|
16
|
+
|
|
17
|
+
Read the `language` field from `.gsd/STATE.md`. All output — messages, summaries, commit messages — must use that language. If no language is set, default to English.
|
|
18
|
+
|
|
15
19
|
## Step 1: Determine Current Task
|
|
16
20
|
|
|
17
21
|
1. Read `.gsd/STATE.md` — get `current_slice` and `current_task`
|
package/skills/gsd/auto/SKILL.md
CHANGED
|
@@ -11,6 +11,10 @@ allowed-tools: Read, Write, Bash, Glob
|
|
|
11
11
|
|
|
12
12
|
You start the auto-loop that executes tasks autonomously, each in a fresh context window.
|
|
13
13
|
|
|
14
|
+
## Language
|
|
15
|
+
|
|
16
|
+
Read the `language` field from `.gsd/STATE.md`. All output — messages, status updates — must use that language. If no language is set, default to English.
|
|
17
|
+
|
|
14
18
|
## Step 1: Check Prerequisites
|
|
15
19
|
|
|
16
20
|
Before starting, verify ALL of these:
|
|
@@ -12,6 +12,10 @@ allowed-tools: Read, Write, Edit, Glob, Grep
|
|
|
12
12
|
|
|
13
13
|
You help the user resolve ambiguities BEFORE planning begins. Your job is to identify gray areas in the current slice and turn them into concrete decisions.
|
|
14
14
|
|
|
15
|
+
## Language
|
|
16
|
+
|
|
17
|
+
Read the `language` field from `.gsd/STATE.md`. All output — messages, questions, decision records — must use that language. If no language is set, default to English.
|
|
18
|
+
|
|
15
19
|
## Step 1: Load Context
|
|
16
20
|
|
|
17
21
|
1. Read `.gsd/STATE.md` — get `current_slice` and `milestone`
|
package/skills/gsd/plan/SKILL.md
CHANGED
|
@@ -11,6 +11,10 @@ allowed-tools: Read, Write, Edit, Bash, Glob, Grep
|
|
|
11
11
|
|
|
12
12
|
You turn a slice description into a set of executable task plans. Each task gets BDD acceptance criteria and explicit boundaries. The result is a set of files that `/gsd-cc-apply` or `auto-loop.sh` can execute without ambiguity.
|
|
13
13
|
|
|
14
|
+
## Language
|
|
15
|
+
|
|
16
|
+
Read the `language` field from `.gsd/STATE.md`. All output — messages, plans, acceptance criteria, boundaries — must use that language. If no language is set, default to English.
|
|
17
|
+
|
|
14
18
|
## Step 1: Load Context
|
|
15
19
|
|
|
16
20
|
Read these files (all that exist):
|
package/skills/gsd/seed/SKILL.md
CHANGED
|
@@ -14,13 +14,26 @@ You are a project coach. You think WITH the user, not interrogate them. Your job
|
|
|
14
14
|
|
|
15
15
|
## Behavior
|
|
16
16
|
|
|
17
|
-
### Step
|
|
17
|
+
### Step 0: Language Selection
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
Before anything else, ask the user which language to use:
|
|
20
20
|
|
|
21
21
|
```
|
|
22
22
|
No .gsd/ directory found. Let's start a new project.
|
|
23
23
|
|
|
24
|
+
Which language should I use? (e.g. English, Deutsch, Français, ...)
|
|
25
|
+
Default: English
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
If the user responds with a project description instead of a language, default to English and continue with Step 1 using their response as the project description.
|
|
29
|
+
|
|
30
|
+
Store the chosen language. **All communication, generated files, plans, acceptance criteria, UNIFY reports, and status output will use this language from now on.**
|
|
31
|
+
|
|
32
|
+
### Step 1: Ask What They're Building
|
|
33
|
+
|
|
34
|
+
If not already answered in Step 0, ask:
|
|
35
|
+
|
|
36
|
+
```
|
|
24
37
|
What are you building?
|
|
25
38
|
Tell me in a sentence or two — I'll figure out the rest.
|
|
26
39
|
```
|
|
@@ -137,7 +150,8 @@ Short project vision — 3-5 sentences max. This is the "elevator pitch" that ev
|
|
|
137
150
|
```json
|
|
138
151
|
{
|
|
139
152
|
"type": "{type}",
|
|
140
|
-
"rigor": "{rigor}"
|
|
153
|
+
"rigor": "{rigor}",
|
|
154
|
+
"language": "{language}"
|
|
141
155
|
}
|
|
142
156
|
```
|
|
143
157
|
|
|
@@ -150,6 +164,7 @@ Initialize from the STATE.md template with:
|
|
|
150
164
|
- `phase: seed-complete`
|
|
151
165
|
- `rigor: {rigor}`
|
|
152
166
|
- `project_type: {type}`
|
|
167
|
+
- `language: {language}`
|
|
153
168
|
- `auto_mode: false`
|
|
154
169
|
- `last_updated: {now ISO}`
|
|
155
170
|
|
|
@@ -11,6 +11,10 @@ allowed-tools: Read, Glob, Grep, Bash
|
|
|
11
11
|
|
|
12
12
|
You show a clear, concise overview of where the project stands. No actions — just information and one suggested next step.
|
|
13
13
|
|
|
14
|
+
## Language
|
|
15
|
+
|
|
16
|
+
Read the `language` field from `.gsd/STATE.md`. All output — messages, progress reports — must use that language. If no language is set, default to English.
|
|
17
|
+
|
|
14
18
|
## Step 1: Read State
|
|
15
19
|
|
|
16
20
|
1. Read `.gsd/STATE.md`
|
|
@@ -13,6 +13,10 @@ allowed-tools: Read, Write, Edit, Bash, Glob, Grep
|
|
|
13
13
|
|
|
14
14
|
UNIFY is not optional. It runs after every slice. The `/gsd-cc` router blocks all other actions until UNIFY is complete. This is the single most important quality mechanism in GSD-CC.
|
|
15
15
|
|
|
16
|
+
## Language
|
|
17
|
+
|
|
18
|
+
Read the `language` field from `.gsd/STATE.md`. All output — messages, UNIFY reports, deviation analysis — must use that language. If no language is set, default to English.
|
|
19
|
+
|
|
16
20
|
## Why UNIFY Exists
|
|
17
21
|
|
|
18
22
|
- Without UNIFY, the next slice builds on assumptions instead of facts.
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsd-cc-update
|
|
3
|
+
description: >
|
|
4
|
+
Update GSD-CC skills to the latest version from npm. Use when user says
|
|
5
|
+
/gsd-cc-update, /gsd-cc update, or asks to update GSD-CC.
|
|
6
|
+
allowed-tools: Read, Bash, Glob
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# /gsd-cc-update — Update GSD-CC
|
|
10
|
+
|
|
11
|
+
You update GSD-CC to the latest version by running the installer.
|
|
12
|
+
|
|
13
|
+
## Step 1: Detect Current Installation
|
|
14
|
+
|
|
15
|
+
Check where GSD-CC is installed:
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
1. Check ~/.claude/skills/gsd/SKILL.md (global)
|
|
19
|
+
2. Check ./.claude/skills/gsd/SKILL.md (local)
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Use `Glob` to find which exists. If both exist, update both.
|
|
23
|
+
|
|
24
|
+
## Step 2: Get Current Version
|
|
25
|
+
|
|
26
|
+
Run:
|
|
27
|
+
```bash
|
|
28
|
+
npm view gsd-cc version
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
This shows the latest available version on npm.
|
|
32
|
+
|
|
33
|
+
Also check if a `package.json` exists in the installed skills directory's parent to find the current version. If not available, report "unknown".
|
|
34
|
+
|
|
35
|
+
## Step 3: Confirm with User
|
|
36
|
+
|
|
37
|
+
Show:
|
|
38
|
+
```
|
|
39
|
+
GSD-CC Update
|
|
40
|
+
|
|
41
|
+
Installed: {current_version or "unknown"}
|
|
42
|
+
Latest: {latest_version}
|
|
43
|
+
Location: {global and/or local path}
|
|
44
|
+
|
|
45
|
+
Update now? (y/n)
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
If the versions match, tell the user they're already on the latest version and stop.
|
|
49
|
+
|
|
50
|
+
## Step 4: Run Update
|
|
51
|
+
|
|
52
|
+
Based on where it's installed, run:
|
|
53
|
+
|
|
54
|
+
- **Global only:** `npx gsd-cc@latest --global`
|
|
55
|
+
- **Local only:** `npx gsd-cc@latest --local`
|
|
56
|
+
- **Both:** `npx gsd-cc@latest --global && npx gsd-cc@latest --local`
|
|
57
|
+
|
|
58
|
+
## Step 5: Confirm
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
✓ GSD-CC updated to {version}.
|
|
62
|
+
Your .gsd/ project state is unchanged.
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Safety
|
|
66
|
+
|
|
67
|
+
- **Never touch .gsd/ directory.** The update only replaces skill files, not project state.
|
|
68
|
+
- **Existing project state (STATE.md, plans, summaries) is preserved.**
|
|
69
|
+
- **Custom project types** in `seed/types/` will be overwritten if they share a name with built-in types. Warn the user if custom types are detected.
|