@jstxn/agentdir-pi 0.7.4 → 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 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
- AgentDir is distributed through GitHub Releases. For the private
82
- `jstxn/agentdir` repo, authenticate GitHub CLI first:
81
+ Install from PyPI (the package is `agentdir-cli`; the command it installs is
82
+ `agentdir`):
83
83
 
84
84
  ```bash
85
- gh auth login
85
+ uv tool install agentdir-cli
86
+ # or
87
+ pipx install agentdir-cli
86
88
  ```
87
89
 
88
- Install the latest release:
90
+ Or use the GitHub Release installer:
89
91
 
90
92
  ```bash
91
- gh api -H "Accept: application/vnd.github.raw" \
92
- 'repos/jstxn/agentdir/contents/scripts/install.sh?ref=v0.7.4' | 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
@@ -111,7 +112,7 @@ available automatically during coding tasks:
111
112
  Package page: [@jstxn/agentdir-pi](https://pi.dev/packages/@jstxn/agentdir-pi)
112
113
 
113
114
  ```bash
114
- pi install npm:@jstxn/agentdir-pi@0.7.4
115
+ pi install npm:@jstxn/agentdir-pi@0.7.6
115
116
  # or install directly from a local checkout / release tag:
116
117
  pi install /absolute/path/to/agentdir
117
118
  pi install git:github.com/jstxn/agentdir@<tag-or-commit>
@@ -341,8 +342,7 @@ agentdir --upgrade
341
342
  Rollback to the previous stable release:
342
343
 
343
344
  ```bash
344
- gh api -H "Accept: application/vnd.github.raw" \
345
- 'repos/jstxn/agentdir/contents/scripts/rollback.sh?ref=v0.7.4' | bash
345
+ curl -fsSL https://raw.githubusercontent.com/jstxn/agentdir/main/scripts/rollback.sh | bash
346
346
  ```
347
347
 
348
348
  ## Learn More
@@ -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.4
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.4/docs/assets/agentdir-overview.png"
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.4",
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.4/docs/assets/agentdir-overview.png"
32
+ "image": "https://raw.githubusercontent.com/jstxn/agentdir/v0.7.6/docs/assets/agentdir-overview.png"
33
33
  }
34
34
  }