Skip to content

Commit 9e9a864

Browse files
committed
Make the default install path single-skill instead of full-pack
The top-level install command should no longer pull every skill by default. This changes the README and pack manifest so the default path installs only `computer-doctor`, while the per-skill block still shows the explicit focused installs. Constraint: Keep the change limited to install-surface metadata and avoid touching unrelated in-progress skill edits Rejected: Keep --all as the default install | too broad for the desired default behavior Confidence: high Scope-risk: narrow Reversibility: clean Directive: Keep the default install path aligned between README and skills-pack.json Tested: Reviewed staged diff for README and skills-pack.json Not-tested: Live skills.sh refresh timing after push
1 parent 55dd01f commit 9e9a864

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## Install
88

99
```bash
10-
npx skills add https://github.com/jasperdevs/computer-doctor --all
10+
npx skills add https://github.com/jasperdevs/computer-doctor --skill computer-doctor
1111
```
1212

1313
<details>

skills-pack.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "computer-doctor",
3-
"default_install": "npx skills add https://github.com/jasperdevs/computer-doctor --all",
3+
"default_install": "npx skills add https://github.com/jasperdevs/computer-doctor --skill computer-doctor",
44
"skills": [
55
{
66
"name": "computer-doctor",

0 commit comments

Comments
 (0)