pi-skill-search 0.2.1 → 0.2.2

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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -21,10 +21,12 @@ 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
- npm install pi-skill-search
24
+ npx pi install pi-skill-search
25
25
  ```
26
26
 
27
- The `install.mjs` script automatically sets up the `skill-search` skill in `~/.pi/agent/skills/` so Pi can discover it.
27
+ After installation, the extension automatically:
28
+ 1. Sets up the `skill-search` skill in `~/.pi/agent/skills/` (via `postinstall` script)
29
+ 2. Registers the `skill-search` tool and category summary for all Pi sessions
28
30
 
29
31
  ## Quick Start
30
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-skill-search",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
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",