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 CHANGED
@@ -57,6 +57,7 @@ your-project/
57
57
  ├── REQUIREMENTS.md
58
58
  ├── ROADMAP.md
59
59
  ├── STATE.md
60
+ ├── config.json # Workflow preferences
60
61
  ├── codebase/ # From gsd-map-codebase
61
62
  ├── research/ # Domain research
62
63
  └── 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.0",
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": "Your Name",
15
+ "author": "PushToProdgy",
16
16
  "license": "MIT",
17
- "repository": {
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. **Plan** — Run `gsd-plan-slice.prompt.md` to create a 2-3 task plan
20
- 3. **Execute** — Run `gsd-execute-plan.prompt.md` to implement
21
- 4. **Verify** — Run `gsd-verify-work.prompt.md` for UAT
22
- 5. **Check** — Run `gsd-progress.prompt.md` for status
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
 
@@ -30,4 +30,4 @@ None
30
30
 
31
31
  - **Last session:** TODO
32
32
  - **Stopped at:** Project initialized
33
- - **Resume with:** Run `gsd-plan-slice` for Phase 1
33
+ - **Resume with:** Run `gsd-discuss-phase.prompt.md` (Phase 1), then `gsd-plan-phase.prompt.md`
@@ -0,0 +1,7 @@
1
+ {
2
+ "workflow": {
3
+ "useSubagents": true,
4
+ "useBackgroundAgents": false,
5
+ "planStyle": "wave-based"
6
+ }
7
+ }
@@ -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-plan`
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