@jstxn/agentdir-pi 0.7.3 → 0.7.6
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 +12 -10
- package/docs/PI_PACKAGE.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# AgentDir
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="docs/assets/agentdir-overview.png" alt="AgentDir turns agent work into a saved trail, searchable memory, and proof for engineers." />
|
|
4
|
+
<img src="https://raw.githubusercontent.com/jstxn/agentdir/main/docs/assets/agentdir-overview.png" alt="AgentDir turns agent work into a saved trail, searchable memory, and proof for engineers." />
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
@@ -78,18 +78,19 @@ agentdir work finish --json
|
|
|
78
78
|
|
|
79
79
|
## Install
|
|
80
80
|
|
|
81
|
-
|
|
82
|
-
`
|
|
81
|
+
Install from PyPI (the package is `agentdir-cli`; the command it installs is
|
|
82
|
+
`agentdir`):
|
|
83
83
|
|
|
84
84
|
```bash
|
|
85
|
-
|
|
85
|
+
uv tool install agentdir-cli
|
|
86
|
+
# or
|
|
87
|
+
pipx install agentdir-cli
|
|
86
88
|
```
|
|
87
89
|
|
|
88
|
-
|
|
90
|
+
Or use the GitHub Release installer:
|
|
89
91
|
|
|
90
92
|
```bash
|
|
91
|
-
|
|
92
|
-
'repos/jstxn/agentdir/contents/scripts/install.sh?ref=v0.7.3' | bash
|
|
93
|
+
curl -fsSL https://raw.githubusercontent.com/jstxn/agentdir/main/scripts/install.sh | bash
|
|
93
94
|
```
|
|
94
95
|
|
|
95
96
|
The installer uses `pipx` when available. Otherwise it creates a self-contained
|
|
@@ -108,8 +109,10 @@ agentdir --help
|
|
|
108
109
|
Pi users can install this repository as a Pi package so the AgentDir skill is
|
|
109
110
|
available automatically during coding tasks:
|
|
110
111
|
|
|
112
|
+
Package page: [@jstxn/agentdir-pi](https://pi.dev/packages/@jstxn/agentdir-pi)
|
|
113
|
+
|
|
111
114
|
```bash
|
|
112
|
-
pi install npm:@jstxn/agentdir-pi@0.7.
|
|
115
|
+
pi install npm:@jstxn/agentdir-pi@0.7.6
|
|
113
116
|
# or install directly from a local checkout / release tag:
|
|
114
117
|
pi install /absolute/path/to/agentdir
|
|
115
118
|
pi install git:github.com/jstxn/agentdir@<tag-or-commit>
|
|
@@ -339,8 +342,7 @@ agentdir --upgrade
|
|
|
339
342
|
Rollback to the previous stable release:
|
|
340
343
|
|
|
341
344
|
```bash
|
|
342
|
-
|
|
343
|
-
'repos/jstxn/agentdir/contents/scripts/rollback.sh?ref=v0.7.3' | bash
|
|
345
|
+
curl -fsSL https://raw.githubusercontent.com/jstxn/agentdir/main/scripts/rollback.sh | 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.6
|
|
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.6/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.6",
|
|
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.6/docs/assets/agentdir-overview.png"
|
|
33
33
|
}
|
|
34
34
|
}
|