@vndv/pi-codegraph 0.1.6 → 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.
Files changed (2) hide show
  1. package/README.md +6 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
  ### CodeGraph tools for pi
3
3
 
4
4
  [![Skylos Grade](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/vndv/pi-codegraph/main/.github/badges/skylos.json)](https://github.com/duriantaco/skylos)
5
+ [![npm downloads](https://img.shields.io/npm/dm/%40vndv%2Fpi-codegraph)](https://www.npmjs.com/package/@vndv/pi-codegraph)
5
6
 
6
7
  [Install](#install) · [Usage](#usage) · [How it works](#how-it-works)
7
8
 
@@ -17,7 +18,7 @@ An extension for [pi](https://pi.dev) that gives the agent access to [CodeGraph]
17
18
  npm install -g @colbymchenry/codegraph
18
19
  cd /path/to/project
19
20
  codegraph init -i
20
- pi install npm:@vndv/pi-codegraph@0.1.6
21
+ pi install npm:@vndv/pi-codegraph@0.1.7
21
22
  pi
22
23
  ```
23
24
 
@@ -53,7 +54,7 @@ Extension tools only. There is no MCP setup for pi users to maintain.
53
54
  From npm:
54
55
 
55
56
  ```bash
56
- pi install npm:@vndv/pi-codegraph@0.1.6
57
+ pi install npm:@vndv/pi-codegraph@0.1.7
57
58
  ```
58
59
 
59
60
  From GitHub:
@@ -82,7 +83,7 @@ pi list
82
83
 
83
84
  ## Requirements
84
85
 
85
- Node.js 22 LTS is recommended. CodeGraph blocks Node.js 25 because that Node line has a V8 WASM JIT issue that can crash while compiling tree-sitter grammars.
86
+ Node.js 22.19.0 or newer is required.
86
87
 
87
88
  CodeGraph must be installed and available on `PATH`:
88
89
 
@@ -162,7 +163,7 @@ That means another developer only needs the npm package, the `codegraph` CLI, an
162
163
  Remove the package using the same source shown by `pi list`:
163
164
 
164
165
  ```bash
165
- pi remove npm:@vndv/pi-codegraph@0.1.6
166
+ pi remove npm:@vndv/pi-codegraph@0.1.7
166
167
  ```
167
168
 
168
169
  If you installed from GitHub or a local path, remove that exact entry instead:
@@ -199,7 +200,7 @@ codegraph init -i
199
200
 
200
201
  ### Node.js version is unsupported
201
202
 
202
- Use Node.js 22 LTS:
203
+ Use Node.js 22.19.0 or newer:
203
204
 
204
205
  ```bash
205
206
  nvm install 22
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vndv/pi-codegraph",
3
- "version": "0.1.6",
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 <25"
51
+ "node": ">=22.19.0"
52
52
  },
53
53
  "publishConfig": {
54
54
  "access": "public"