@spences10/pi-skill-importer 0.0.2 → 0.0.4
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 +8 -0
- package/package.json +9 -7
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# @spences10/pi-skill-importer
|
|
2
2
|
|
|
3
|
+
[](https://viteplus.dev)
|
|
4
|
+
[](https://vitest.dev)
|
|
5
|
+
[](https://www.npmjs.com/package/@spences10/pi-skill-importer)
|
|
6
|
+
[](https://www.npmjs.com/package/@spences10/pi-skill-importer)
|
|
7
|
+
|
|
3
8
|
Pi extension and helper API for importing external Agent
|
|
4
9
|
Skills-compatible sources into Pi-native skill storage.
|
|
5
10
|
|
|
@@ -48,6 +53,9 @@ import {
|
|
|
48
53
|
|
|
49
54
|
## Development
|
|
50
55
|
|
|
56
|
+
Package scripts build transitive workspace dependencies first, then
|
|
57
|
+
run local tools through Vite+ with `vp exec`.
|
|
58
|
+
|
|
51
59
|
```bash
|
|
52
60
|
pnpm --filter @spences10/pi-skill-importer run check
|
|
53
61
|
pnpm --filter @spences10/pi-skill-importer run test
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-skill-importer",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Pi extension helpers for importing external Agent Skills into Pi-native storage",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-skills",
|
|
@@ -34,12 +34,14 @@
|
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@spences10/pi-tui-modal": "0.0.
|
|
37
|
+
"@spences10/pi-tui-modal": "0.0.17"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
+
"@earendil-works/pi-coding-agent": "^0.74.1",
|
|
41
|
+
"@earendil-works/pi-tui": "^0.74.1",
|
|
40
42
|
"@types/node": "^25.8.0",
|
|
41
43
|
"typescript": "^6.0.3",
|
|
42
|
-
"vitest": "
|
|
44
|
+
"vitest": "4.1.5"
|
|
43
45
|
},
|
|
44
46
|
"peerDependencies": {
|
|
45
47
|
"@earendil-works/pi-coding-agent": "*",
|
|
@@ -56,12 +58,12 @@
|
|
|
56
58
|
},
|
|
57
59
|
"scripts": {
|
|
58
60
|
"build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
|
|
59
|
-
"build:self": "tsc -p tsconfig.build.json",
|
|
61
|
+
"build:self": "vp exec tsc -p tsconfig.build.json",
|
|
60
62
|
"check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
|
|
61
|
-
"check:self": "tsc --noEmit -p tsconfig.json",
|
|
63
|
+
"check:self": "vp exec tsc --noEmit -p tsconfig.json",
|
|
62
64
|
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
|
|
63
|
-
"test:self": "vitest run",
|
|
64
|
-
"coverage:self": "vitest run --coverage",
|
|
65
|
+
"test:self": "vp exec vitest run",
|
|
66
|
+
"coverage:self": "vp exec vitest run --coverage",
|
|
65
67
|
"coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
|
|
66
68
|
}
|
|
67
69
|
}
|