pi-skill-playbook 0.1.0 → 0.1.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.
- package/README.md +19 -4
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -26,12 +26,27 @@ Deferred after scaffold:
|
|
|
26
26
|
pi install npm:pi-skill-playbook
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
Package version: `0.1.
|
|
29
|
+
Package version: `0.1.1`
|
|
30
|
+
|
|
31
|
+
## Install from GitHub
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pi install git:github.com/eiei114/pi-skill-playbook
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Or with a full Git URL:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pi install git+https://github.com/eiei114/pi-skill-playbook.git
|
|
41
|
+
```
|
|
30
42
|
|
|
31
43
|
## Install locally
|
|
32
44
|
|
|
45
|
+
Clone the repository first, then run Pi from the checkout:
|
|
46
|
+
|
|
33
47
|
```bash
|
|
34
|
-
|
|
48
|
+
git clone https://github.com/eiei114/pi-skill-playbook.git
|
|
49
|
+
cd pi-skill-playbook
|
|
35
50
|
npm install
|
|
36
51
|
pi -e .
|
|
37
52
|
```
|
|
@@ -39,7 +54,7 @@ pi -e .
|
|
|
39
54
|
Or install as a local Pi package:
|
|
40
55
|
|
|
41
56
|
```bash
|
|
42
|
-
pi install
|
|
57
|
+
pi install /path/to/pi-skill-playbook
|
|
43
58
|
```
|
|
44
59
|
|
|
45
60
|
## Add a playbook to a project
|
|
@@ -48,7 +63,7 @@ MVP uses manual sample copy:
|
|
|
48
63
|
|
|
49
64
|
```bash
|
|
50
65
|
mkdir -p .pi/playbooks
|
|
51
|
-
cp
|
|
66
|
+
cp /path/to/pi-skill-playbook/samples/feature-development.yml .pi/playbooks/feature-development.yml
|
|
52
67
|
```
|
|
53
68
|
|
|
54
69
|
Add personal run state to the target repo's `.gitignore`:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-skill-playbook",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Pi extension for passive, human-mediated Agent Skill playbooks.",
|
|
6
6
|
"keywords": ["pi-package", "pi-extension", "agent-skills", "playbook"],
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"check": "tsc --noEmit",
|
|
25
25
|
"test": "node --test --import tsx tests/*.test.ts",
|
|
26
|
-
"build": "npm run check"
|
|
26
|
+
"build": "npm run check",
|
|
27
|
+
"validate:package": "npm pack --dry-run"
|
|
27
28
|
},
|
|
28
29
|
"pi": {
|
|
29
30
|
"extensions": ["./extensions/index.ts"]
|
|
@@ -38,5 +39,8 @@
|
|
|
38
39
|
},
|
|
39
40
|
"peerDependencies": {
|
|
40
41
|
"@earendil-works/pi-coding-agent": "*"
|
|
42
|
+
},
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
41
45
|
}
|
|
42
46
|
}
|