@jstxn/agentdir-pi 0.7.3 → 0.7.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 +5 -3
- package/docs/PI_PACKAGE.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -89,7 +89,7 @@ Install the latest release:
|
|
|
89
89
|
|
|
90
90
|
```bash
|
|
91
91
|
gh api -H "Accept: application/vnd.github.raw" \
|
|
92
|
-
'repos/jstxn/agentdir/contents/scripts/install.sh?ref=v0.7.
|
|
92
|
+
'repos/jstxn/agentdir/contents/scripts/install.sh?ref=v0.7.4' | bash
|
|
93
93
|
```
|
|
94
94
|
|
|
95
95
|
The installer uses `pipx` when available. Otherwise it creates a self-contained
|
|
@@ -108,8 +108,10 @@ agentdir --help
|
|
|
108
108
|
Pi users can install this repository as a Pi package so the AgentDir skill is
|
|
109
109
|
available automatically during coding tasks:
|
|
110
110
|
|
|
111
|
+
Package page: [@jstxn/agentdir-pi](https://pi.dev/packages/@jstxn/agentdir-pi)
|
|
112
|
+
|
|
111
113
|
```bash
|
|
112
|
-
pi install npm:@jstxn/agentdir-pi@0.7.
|
|
114
|
+
pi install npm:@jstxn/agentdir-pi@0.7.4
|
|
113
115
|
# or install directly from a local checkout / release tag:
|
|
114
116
|
pi install /absolute/path/to/agentdir
|
|
115
117
|
pi install git:github.com/jstxn/agentdir@<tag-or-commit>
|
|
@@ -340,7 +342,7 @@ Rollback to the previous stable release:
|
|
|
340
342
|
|
|
341
343
|
```bash
|
|
342
344
|
gh api -H "Accept: application/vnd.github.raw" \
|
|
343
|
-
'repos/jstxn/agentdir/contents/scripts/rollback.sh?ref=v0.7.
|
|
345
|
+
'repos/jstxn/agentdir/contents/scripts/rollback.sh?ref=v0.7.4' | bash
|
|
344
346
|
```
|
|
345
347
|
|
|
346
348
|
## Learn More
|
package/docs/PI_PACKAGE.md
CHANGED
|
@@ -34,7 +34,7 @@ pi install git:github.com/jstxn/agentdir@<tag-or-commit>
|
|
|
34
34
|
If the npm package has been published:
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
|
-
pi install npm:@jstxn/agentdir-pi@0.7.
|
|
37
|
+
pi install npm:@jstxn/agentdir-pi@0.7.4
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
Use `pi config` to enable or disable the bundled skill after installation.
|
|
@@ -48,7 +48,7 @@ The root `package.json` declares the Pi resources:
|
|
|
48
48
|
"keywords": ["pi-package"],
|
|
49
49
|
"pi": {
|
|
50
50
|
"skills": ["./skills"],
|
|
51
|
-
"image": "https://raw.githubusercontent.com/jstxn/agentdir/v0.7.
|
|
51
|
+
"image": "https://raw.githubusercontent.com/jstxn/agentdir/v0.7.4/docs/assets/agentdir-overview.png"
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jstxn/agentdir-pi",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.4",
|
|
4
4
|
"description": "Pi package for AgentDir local-first coding-agent memory and evidence capture.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -29,6 +29,6 @@
|
|
|
29
29
|
"skills": [
|
|
30
30
|
"./skills"
|
|
31
31
|
],
|
|
32
|
-
"image": "https://raw.githubusercontent.com/jstxn/agentdir/v0.7.
|
|
32
|
+
"image": "https://raw.githubusercontent.com/jstxn/agentdir/v0.7.4/docs/assets/agentdir-overview.png"
|
|
33
33
|
}
|
|
34
34
|
}
|