pi-skill-search 0.2.3 → 0.2.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 -3
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -21,12 +21,15 @@ Result: **~97% token reduction** in skill-related system prompt content.
|
|
|
21
21
|
npx pi install .
|
|
22
22
|
|
|
23
23
|
# Or from npm (when published)
|
|
24
|
-
npx pi install pi-skill-search
|
|
24
|
+
npx pi install npm:pi-skill-search
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
> ⚠️ Note: Use `npm:pi-skill-search` prefix, not bare `pi-skill-search`.
|
|
28
|
+
> The `npm:` prefix tells Pi to install via npm which triggers the postinstall script.
|
|
29
|
+
|
|
27
30
|
After installation, the extension automatically:
|
|
28
|
-
1.
|
|
29
|
-
2.
|
|
31
|
+
1. Registers the `skill-search` tool and category summary for all Pi sessions
|
|
32
|
+
2. Installs the `skill-search` skill in `~/.pi/agent/skills/` (via postinstall script)
|
|
30
33
|
|
|
31
34
|
## Quick Start
|
|
32
35
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-skill-search",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "On-demand skill search extension for Pi — replaces inject-all with search tool + category summary",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "index.ts",
|
|
7
7
|
"main": "index.ts",
|
|
8
|
+
"pi": {
|
|
9
|
+
"extensions": [
|
|
10
|
+
"."
|
|
11
|
+
]
|
|
12
|
+
},
|
|
8
13
|
"peerDependencies": {
|
|
9
14
|
"@earendil-works/pi-coding-agent": ">=0.74.1"
|
|
10
15
|
},
|