pi-toggle-skills 0.1.4 → 0.1.5
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 +6 -0
- package/package.json +7 -5
package/README.md
CHANGED
|
@@ -70,6 +70,12 @@ When a skill has `disable-model-invocation: true`, pi excludes it from the syste
|
|
|
70
70
|
|
|
71
71
|
**With `pi install`** (recommended):
|
|
72
72
|
|
|
73
|
+
```bash
|
|
74
|
+
pi install npm:pi-toggle-skills
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Or install from GitHub:
|
|
78
|
+
|
|
73
79
|
```bash
|
|
74
80
|
pi install https://github.com/monotykamary/pi-toggle-skills
|
|
75
81
|
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-toggle-skills",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Toggle skill visibility in pi's system prompt
|
|
3
|
+
"version": "0.1.5",
|
|
4
|
+
"description": "Toggle skill visibility in pi's system prompt \u2014 flip disable-model-invocation on skills via an interactive TUI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Tom X Nguyen",
|
|
7
7
|
"license": "MIT",
|
|
@@ -36,12 +36,13 @@
|
|
|
36
36
|
"lint:dead": "knip --no-gitignore"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@earendil-works/pi-coding-agent": "0.
|
|
39
|
+
"@earendil-works/pi-coding-agent": "0.79.4",
|
|
40
40
|
"@types/node": "25.9.1",
|
|
41
41
|
"@vitest/coverage-v8": "4.1.7",
|
|
42
42
|
"knip": "6.14.1",
|
|
43
43
|
"typescript": "6.0.3",
|
|
44
|
-
"vitest": "4.1.7"
|
|
44
|
+
"vitest": "4.1.7",
|
|
45
|
+
"@earendil-works/pi-tui": "0.79.4"
|
|
45
46
|
},
|
|
46
47
|
"dependencies": {
|
|
47
48
|
"gray-matter": "^4.0.3"
|
|
@@ -50,5 +51,6 @@
|
|
|
50
51
|
"extensions": [
|
|
51
52
|
"./toggle-skills.ts"
|
|
52
53
|
]
|
|
53
|
-
}
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {}
|
|
54
56
|
}
|