@vndv/pi-codegraph 0.1.5 → 0.1.7
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 +8 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
# pi-codegraph
|
|
2
2
|
### CodeGraph tools for pi
|
|
3
3
|
|
|
4
|
+
[](https://github.com/duriantaco/skylos)
|
|
5
|
+
[](https://www.npmjs.com/package/@vndv/pi-codegraph)
|
|
6
|
+
|
|
4
7
|
[Install](#install) · [Usage](#usage) · [How it works](#how-it-works)
|
|
5
8
|
|
|
6
9
|
Ask pi structural questions about your codebase without falling back to slow grep/read loops.
|
|
@@ -15,7 +18,7 @@ An extension for [pi](https://pi.dev) that gives the agent access to [CodeGraph]
|
|
|
15
18
|
npm install -g @colbymchenry/codegraph
|
|
16
19
|
cd /path/to/project
|
|
17
20
|
codegraph init -i
|
|
18
|
-
pi install npm:@vndv/pi-codegraph@0.1.
|
|
21
|
+
pi install npm:@vndv/pi-codegraph@0.1.7
|
|
19
22
|
pi
|
|
20
23
|
```
|
|
21
24
|
|
|
@@ -51,7 +54,7 @@ Extension tools only. There is no MCP setup for pi users to maintain.
|
|
|
51
54
|
From npm:
|
|
52
55
|
|
|
53
56
|
```bash
|
|
54
|
-
pi install npm:@vndv/pi-codegraph@0.1.
|
|
57
|
+
pi install npm:@vndv/pi-codegraph@0.1.7
|
|
55
58
|
```
|
|
56
59
|
|
|
57
60
|
From GitHub:
|
|
@@ -80,7 +83,7 @@ pi list
|
|
|
80
83
|
|
|
81
84
|
## Requirements
|
|
82
85
|
|
|
83
|
-
Node.js 22
|
|
86
|
+
Node.js 22.19.0 or newer is required.
|
|
84
87
|
|
|
85
88
|
CodeGraph must be installed and available on `PATH`:
|
|
86
89
|
|
|
@@ -160,7 +163,7 @@ That means another developer only needs the npm package, the `codegraph` CLI, an
|
|
|
160
163
|
Remove the package using the same source shown by `pi list`:
|
|
161
164
|
|
|
162
165
|
```bash
|
|
163
|
-
pi remove npm:@vndv/pi-codegraph@0.1.
|
|
166
|
+
pi remove npm:@vndv/pi-codegraph@0.1.7
|
|
164
167
|
```
|
|
165
168
|
|
|
166
169
|
If you installed from GitHub or a local path, remove that exact entry instead:
|
|
@@ -197,7 +200,7 @@ codegraph init -i
|
|
|
197
200
|
|
|
198
201
|
### Node.js version is unsupported
|
|
199
202
|
|
|
200
|
-
Use Node.js 22
|
|
203
|
+
Use Node.js 22.19.0 or newer:
|
|
201
204
|
|
|
202
205
|
```bash
|
|
203
206
|
nvm install 22
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vndv/pi-codegraph",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "CodeGraph tools for Pi Agent.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"version-packages": "changeset version && npm run sync:readme-version && npm install --package-lock-only --ignore-scripts"
|
|
49
49
|
},
|
|
50
50
|
"engines": {
|
|
51
|
-
"node": ">=22.19.0
|
|
51
|
+
"node": ">=22.19.0"
|
|
52
52
|
},
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|