@zaganjade/pi-multi-skill 1.3.0 → 1.3.1
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 +36 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,42 @@ Load multiple skills at once in [pi](https://github.com/earendil-works/pi-mono)
|
|
|
4
4
|
|
|
5
5
|
**Version 1.3.0** — skill chaining, bundle presets, conflict resolution, parallel dispatch, activation stats, `/skills-last`, `/skills-setup`, and bundle attribution in pi-usage.
|
|
6
6
|
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 🚀 Install
|
|
10
|
+
|
|
11
|
+
> ⚠️ **Use `pi install` — NOT `npm install`.**
|
|
12
|
+
> Plain `npm install` only drops files in `node_modules`. Pi does **not** scan
|
|
13
|
+
> that folder, so the package is **never detected** and `/skills` won't appear.
|
|
14
|
+
> You must register it with `pi install` so it lands in `"packages"` in
|
|
15
|
+
> `~/.pi/agent/settings.json`.
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pi install npm:@zaganjade/pi-multi-skill
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Then inside pi:
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
/reload
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Verify it loaded:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pi list # should show npm:@zaganjade/pi-multi-skill
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Type `/` — `/skills` should appear in slash autocomplete.
|
|
34
|
+
|
|
35
|
+
**Don't do this** (common mistake — package installs but pi ignores it):
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm install -g @zaganjade/pi-multi-skill # ❌ pi will not detect this
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
7
43
|
## Why?
|
|
8
44
|
|
|
9
45
|
Pi's built-in `/skill:name` loads one skill at a time. When you need several skills working together (e.g. `bmad-master` + `analyst` + `pm`, or `systematic-debugging` + `test-driven-development`), invoking them one by one is slow and easy to forget.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zaganjade/pi-multi-skill",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Chain multiple skills via /skills — bundles (JSON/YAML), load modes, BMAD --auto, /skills-last, /skills-setup, conflict resolution, parallel dispatch, activation stats, bundle attribution for pi-usage.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|