gsd-vscode-copilot 1.1.0 → 1.1.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/README.md +11 -1
- package/bin/init.js +1 -1
- package/package.json +3 -6
- package/templates/gsd-workflow.instructions.md +0 -7
- package/templates/planning-stubs/README.md +7 -4
- package/templates/planning-stubs/STATE.md +1 -1
- package/templates/planning-stubs/config.json +7 -0
- package/templates/vendor/templates/summary.md +1 -1
package/README.md
CHANGED
|
@@ -19,13 +19,22 @@ GSD (Get Shit Done) is a **context engineering** and **spec-driven development**
|
|
|
19
19
|
npx gsd-vscode-copilot
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
This runs the installer **in your current directory** (the project you want to set up).
|
|
23
|
+
|
|
24
|
+
Or install globally (makes the CLI available everywhere):
|
|
23
25
|
|
|
24
26
|
```bash
|
|
25
27
|
npm install -g gsd-vscode-copilot
|
|
28
|
+
|
|
29
|
+
# then, inside each project you want to use GSD in:
|
|
30
|
+
cd /path/to/your-project
|
|
26
31
|
gsd-init
|
|
27
32
|
```
|
|
28
33
|
|
|
34
|
+
Notes:
|
|
35
|
+
- Global install does **not** automatically add prompt files to every repo — you still run `gsd-init` per project.
|
|
36
|
+
- If you prefer not to install globally, `npx gsd-vscode-copilot` is the per-project alternative.
|
|
37
|
+
|
|
29
38
|
## What it installs
|
|
30
39
|
|
|
31
40
|
```
|
|
@@ -57,6 +66,7 @@ your-project/
|
|
|
57
66
|
├── REQUIREMENTS.md
|
|
58
67
|
├── ROADMAP.md
|
|
59
68
|
├── STATE.md
|
|
69
|
+
├── config.json # Workflow preferences
|
|
60
70
|
├── codebase/ # From gsd-map-codebase
|
|
61
71
|
├── research/ # Domain research
|
|
62
72
|
└── phases/ # Plans and summaries
|
package/bin/init.js
CHANGED
|
@@ -37,7 +37,7 @@ ${bold('What it does:')}
|
|
|
37
37
|
2. Creates .github/agents/gsd-*.agent.md (Copilot custom agents)
|
|
38
38
|
3. Creates .github/instructions/gsd-workflow.instructions.md
|
|
39
39
|
4. Creates .github/vendor/get-shit-done/ (templates & workflows)
|
|
40
|
-
5. Creates .planning/ with PROJECT/REQUIREMENTS/ROADMAP/STATE stubs
|
|
40
|
+
5. Creates .planning/ with PROJECT/REQUIREMENTS/ROADMAP/STATE (and optional config.json) stubs
|
|
41
41
|
|
|
42
42
|
${bold('After installing:')}
|
|
43
43
|
1. Open any gsd-*.prompt.md in VS Code
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gsd-vscode-copilot",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "GSD workflow for VS Code + GitHub Copilot. Lightweight planning, execution, and verification system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"gsd",
|
|
@@ -12,12 +12,9 @@
|
|
|
12
12
|
"spec-driven-development",
|
|
13
13
|
"context-engineering"
|
|
14
14
|
],
|
|
15
|
-
"author": "
|
|
15
|
+
"author": "PushToProdgy",
|
|
16
16
|
"license": "MIT",
|
|
17
|
-
"
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "https://github.com/YOUR_ORG/gsd-vscode-copilot"
|
|
20
|
-
},
|
|
17
|
+
"homepage": "https://www.npmjs.com/package/gsd-vscode-copilot",
|
|
21
18
|
"bin": {
|
|
22
19
|
"gsd-vscode-copilot": "./bin/init.js",
|
|
23
20
|
"gsd-init": "./bin/init.js"
|
|
@@ -82,13 +82,6 @@ Enable `runSubagent` in your tools. Subagents:
|
|
|
82
82
|
| `gsd-verify-work.prompt.md` | Conversational UAT after execution |
|
|
83
83
|
| `gsd-progress.prompt.md` | Check current status and next action |
|
|
84
84
|
|
|
85
|
-
### Legacy Prompts (still available)
|
|
86
|
-
|
|
87
|
-
| Prompt | Notes |
|
|
88
|
-
|--------|-------|
|
|
89
|
-
| `gsd-plan-slice.prompt.md` | Simpler planning (2-3 tasks) |
|
|
90
|
-
| `gsd-execute-plan.prompt.md` | Execute single plan file |
|
|
91
|
-
|
|
92
85
|
## Execution Rules
|
|
93
86
|
|
|
94
87
|
- **Prefer automation:** if it can be done via CLI/tooling, do it
|
|
@@ -15,11 +15,14 @@ This folder is the project memory for the GSD workflow.
|
|
|
15
15
|
|
|
16
16
|
## Workflow
|
|
17
17
|
|
|
18
|
+
For existing codebases, start with `gsd-map-codebase.prompt.md` first.
|
|
19
|
+
|
|
18
20
|
1. **Bootstrap** — Run `gsd-bootstrap-planning.prompt.md` to initialize
|
|
19
|
-
2. **
|
|
20
|
-
3. **
|
|
21
|
-
4. **
|
|
22
|
-
5. **
|
|
21
|
+
2. **Discuss** — Run `gsd-discuss-phase.prompt.md` to capture decisions
|
|
22
|
+
3. **Plan** — Run `gsd-plan-phase.prompt.md` to create wave-based plans
|
|
23
|
+
4. **Execute** — Run `gsd-execute-phase.prompt.md` to implement
|
|
24
|
+
5. **Verify** — Run `gsd-verify-work.prompt.md` for UAT
|
|
25
|
+
6. **Check** — Run `gsd-progress.prompt.md` for status / next action
|
|
23
26
|
|
|
24
27
|
## Templates
|
|
25
28
|
|
|
@@ -90,7 +90,7 @@ The one-liner should tell someone **what actually shipped**.
|
|
|
90
90
|
|
|
91
91
|
## When to Create
|
|
92
92
|
|
|
93
|
-
- After completing each plan via `gsd-execute-
|
|
93
|
+
- After completing each plan via `gsd-execute-phase`
|
|
94
94
|
- Documents what actually happened vs what was planned
|
|
95
95
|
- Becomes historical record for future context
|
|
96
96
|
|