gsd-vscode-copilot 1.1.0 → 1.1.1
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 +1 -0
- 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
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.1",
|
|
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
|
|