@spences10/pi-skills 0.0.22 → 0.0.23
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 +5 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
# @spences10/pi-skills
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@spences10/pi-skills)
|
|
4
3
|
[](https://viteplus.dev)
|
|
5
4
|
[](https://vitest.dev)
|
|
5
|
+
[](https://www.npmjs.com/package/@spences10/pi-skills)
|
|
6
|
+
[](https://www.npmjs.com/package/@spences10/pi-skills)
|
|
6
7
|
|
|
7
8
|
Pi extension for managing, discovering, and installing Agent Skills
|
|
8
9
|
for Pi.
|
|
9
10
|
|
|
10
|
-
Maintained in the `my-pi` Vite+ workspace and tested with Vitest.
|
|
11
|
-
|
|
12
11
|
## Installation
|
|
13
12
|
|
|
14
13
|
```bash
|
|
@@ -128,6 +127,9 @@ behavior.
|
|
|
128
127
|
|
|
129
128
|
## Development
|
|
130
129
|
|
|
130
|
+
Package scripts build transitive workspace dependencies first, then
|
|
131
|
+
run local tools through Vite+ with `vp exec`.
|
|
132
|
+
|
|
131
133
|
```bash
|
|
132
134
|
pnpm --filter @spences10/pi-skills run check
|
|
133
135
|
pnpm --filter @spences10/pi-skills run test
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-skills",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.23",
|
|
4
4
|
"description": "Pi extension for managing, discovering, and installing Agent Skills",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-skills",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@spences10/pi-tui-modal": "0.0.
|
|
36
|
+
"@spences10/pi-tui-modal": "0.0.17"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@earendil-works/pi-coding-agent": "^0.74.1",
|
|
@@ -57,12 +57,12 @@
|
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
|
|
60
|
-
"build:self": "tsc -p tsconfig.build.json",
|
|
60
|
+
"build:self": "vp exec tsc -p tsconfig.build.json",
|
|
61
61
|
"check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
|
|
62
|
-
"check:self": "tsc --noEmit -p tsconfig.json",
|
|
62
|
+
"check:self": "vp exec tsc --noEmit -p tsconfig.json",
|
|
63
63
|
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
|
|
64
|
-
"test:self": "vitest run",
|
|
65
|
-
"coverage:self": "vitest run --coverage",
|
|
64
|
+
"test:self": "vp exec vitest run",
|
|
65
|
+
"coverage:self": "vp exec vitest run --coverage",
|
|
66
66
|
"coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
|
|
67
67
|
}
|
|
68
68
|
}
|