@spences10/pi-skills 0.0.33 → 0.0.34
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 +12 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @spences10/pi-skills
|
|
2
2
|
|
|
3
|
+
<!-- package-readme:header:start -->
|
|
4
|
+
|
|
3
5
|
[](https://viteplus.dev)
|
|
4
6
|
[](https://vitest.dev)
|
|
5
7
|
[](https://www.npmjs.com/package/@spences10/pi-skills)
|
|
@@ -7,6 +9,8 @@
|
|
|
7
9
|
|
|
8
10
|

|
|
9
11
|
|
|
12
|
+
<!-- package-readme:header:end -->
|
|
13
|
+
|
|
10
14
|
Manage the skills Pi is allowed to discover and use. `pi-skills` adds
|
|
11
15
|
profiles, enable/disable rules, GitHub skill search/install, and
|
|
12
16
|
update flows so teams can curate reusable Agent Skills instead of
|
|
@@ -14,10 +18,14 @@ hand-editing skill directories.
|
|
|
14
18
|
|
|
15
19
|
## Installation
|
|
16
20
|
|
|
21
|
+
<!-- package-readme:install:start -->
|
|
22
|
+
|
|
17
23
|
```bash
|
|
18
24
|
pi install npm:@spences10/pi-skills
|
|
19
25
|
```
|
|
20
26
|
|
|
27
|
+
<!-- package-readme:install:end -->
|
|
28
|
+
|
|
21
29
|
Local development from this monorepo:
|
|
22
30
|
|
|
23
31
|
```bash
|
|
@@ -153,6 +161,8 @@ behavior.
|
|
|
153
161
|
|
|
154
162
|
## Development
|
|
155
163
|
|
|
164
|
+
<!-- package-readme:development:start commands="check,test,build" -->
|
|
165
|
+
|
|
156
166
|
Package scripts build transitive workspace dependencies first, then
|
|
157
167
|
run local tools through Vite+ with `vp exec`.
|
|
158
168
|
|
|
@@ -162,6 +172,8 @@ pnpm --filter @spences10/pi-skills run test
|
|
|
162
172
|
pnpm --filter @spences10/pi-skills run build
|
|
163
173
|
```
|
|
164
174
|
|
|
175
|
+
<!-- package-readme:development:end -->
|
|
176
|
+
|
|
165
177
|
## License
|
|
166
178
|
|
|
167
179
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-skills",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.34",
|
|
4
4
|
"description": "Agent Skills management for Pi with profiles, enablement rules, GitHub search/install, and update flows",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-skills",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@spences10/pi-settings": "0.0.2",
|
|
37
|
-
"@spences10/pi-skill-importer": "0.0.
|
|
38
|
-
"@spences10/pi-tui-modal": "0.0.
|
|
37
|
+
"@spences10/pi-skill-importer": "0.0.12",
|
|
38
|
+
"@spences10/pi-tui-modal": "0.0.23"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@earendil-works/pi-coding-agent": "0.80.
|
|
42
|
-
"@earendil-works/pi-tui": "0.80.
|
|
41
|
+
"@earendil-works/pi-coding-agent": "0.80.10",
|
|
42
|
+
"@earendil-works/pi-tui": "0.80.10",
|
|
43
43
|
"@types/node": "^25.8.0",
|
|
44
44
|
"typescript": "^7.0.0",
|
|
45
45
|
"vitest": "4.1.10"
|