gsd-vscode-copilot 1.1.1 → 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 +10 -1
- package/package.json +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
|
```
|