@vndv/pi-codegraph 0.1.4 → 0.1.5
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 +4 -4
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# pi-codegraph
|
|
2
2
|
### CodeGraph tools for pi
|
|
3
3
|
|
|
4
|
-
Install · Usage · How it works
|
|
4
|
+
[Install](#install) · [Usage](#usage) · [How it works](#how-it-works)
|
|
5
5
|
|
|
6
6
|
Ask pi structural questions about your codebase without falling back to slow grep/read loops.
|
|
7
7
|
|
|
@@ -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.5
|
|
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.5
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
From GitHub:
|
|
@@ -160,7 +160,7 @@ That means another developer only needs the npm package, the `codegraph` CLI, an
|
|
|
160
160
|
Remove the package using the same source shown by `pi list`:
|
|
161
161
|
|
|
162
162
|
```bash
|
|
163
|
-
pi remove npm:@vndv/pi-codegraph@0.1.
|
|
163
|
+
pi remove npm:@vndv/pi-codegraph@0.1.5
|
|
164
164
|
```
|
|
165
165
|
|
|
166
166
|
If you installed from GitHub or a local path, remove that exact entry instead:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vndv/pi-codegraph",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "CodeGraph tools for Pi Agent.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -35,7 +35,8 @@
|
|
|
35
35
|
]
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
|
-
"
|
|
38
|
+
"check:readme-version": "node scripts/sync-readme-version.mjs --check",
|
|
39
|
+
"ci": "npm run typecheck && npm test && npm run compat:codegraph && npm run check:readme-version && npm pack --dry-run",
|
|
39
40
|
"compat:codegraph": "codegraph --version",
|
|
40
41
|
"local-release": "changeset version && changeset publish",
|
|
41
42
|
"publish-packages": "node -e \"const {execSync}=require('node:child_process'); const p=require('./package.json'); const spec=p.name+'@'+p.version; try { execSync('npm view '+spec+' version', {stdio:'ignore'}); console.log(spec+' already published; skipping.'); } catch { execSync('npm publish --access public --provenance --ignore-scripts', {stdio:'inherit'}); }\"",
|
|
@@ -43,7 +44,8 @@
|
|
|
43
44
|
"prepublishOnly": "npm run ci",
|
|
44
45
|
"typecheck": "tsc --noEmit",
|
|
45
46
|
"test": "vitest run",
|
|
46
|
-
"version
|
|
47
|
+
"sync:readme-version": "node scripts/sync-readme-version.mjs",
|
|
48
|
+
"version-packages": "changeset version && npm run sync:readme-version && npm install --package-lock-only --ignore-scripts"
|
|
47
49
|
},
|
|
48
50
|
"engines": {
|
|
49
51
|
"node": ">=22.19.0 <25"
|