@vndv/pi-codegraph 0.1.1 → 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 +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ An extension for [pi](https://pi.dev) that gives the agent access to [CodeGraph]
|
|
|
15
15
|
npm install -g @colbymchenry/codegraph
|
|
16
16
|
cd /path/to/project
|
|
17
17
|
codegraph init -i
|
|
18
|
-
pi install npm:@vndv/pi-codegraph@0.1.
|
|
18
|
+
pi install npm:@vndv/pi-codegraph@0.1.1
|
|
19
19
|
pi
|
|
20
20
|
```
|
|
21
21
|
|
|
@@ -51,7 +51,7 @@ Extension tools only. There is no MCP setup for pi users to maintain.
|
|
|
51
51
|
From npm:
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
|
-
pi install npm:@vndv/pi-codegraph@0.1.
|
|
54
|
+
pi install npm:@vndv/pi-codegraph@0.1.1
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
From GitHub:
|
|
@@ -158,7 +158,7 @@ That means another developer only needs the npm package, the `codegraph` CLI, an
|
|
|
158
158
|
Remove the package using the same source shown by `pi list`:
|
|
159
159
|
|
|
160
160
|
```bash
|
|
161
|
-
pi remove npm:@vndv/pi-codegraph@0.1.
|
|
161
|
+
pi remove npm:@vndv/pi-codegraph@0.1.1
|
|
162
162
|
```
|
|
163
163
|
|
|
164
164
|
If you installed from GitHub or a local path, remove that exact entry instead:
|
|
@@ -229,7 +229,7 @@ npm run ci
|
|
|
229
229
|
|
|
230
230
|
The package is published to npm as `@vndv/pi-codegraph`.
|
|
231
231
|
|
|
232
|
-
Releases are automated with Changesets.
|
|
232
|
+
Releases are automated with Changesets. Any package update, including README changes shipped to npm, needs a changeset so the release workflow can bump the version and deploy a new npm package.
|
|
233
233
|
|
|
234
234
|
For every user-facing change, add a changeset in the feature branch:
|
|
235
235
|
|
|
@@ -254,7 +254,7 @@ npm run version-packages
|
|
|
254
254
|
npm run publish-packages
|
|
255
255
|
```
|
|
256
256
|
|
|
257
|
-
`publish-packages` runs `npm publish --access public`.
|
|
257
|
+
`publish-packages` runs `npm publish --access public --provenance`.
|
|
258
258
|
|
|
259
259
|
The workflow uses npm trusted publishing through GitHub Actions OIDC.
|
|
260
260
|
|