Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @vndv/pi-codegraph

## 0.1.7

### Patch Changes

- Allow installation on Node.js versions newer than 22.19.0.

## 0.1.6

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ An extension for [pi](https://pi.dev) that gives the agent access to [CodeGraph]
npm install -g @colbymchenry/codegraph
cd /path/to/project
codegraph init -i
pi install npm:@vndv/pi-codegraph@0.1.6
pi install npm:@vndv/pi-codegraph@0.1.7
pi
```

Expand Down Expand Up @@ -54,7 +54,7 @@ Extension tools only. There is no MCP setup for pi users to maintain.
From npm:

```bash
pi install npm:@vndv/pi-codegraph@0.1.6
pi install npm:@vndv/pi-codegraph@0.1.7
```

From GitHub:
Expand Down Expand Up @@ -83,7 +83,7 @@ pi list

## Requirements

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.
Node.js 22.19.0 or newer is required.

CodeGraph must be installed and available on `PATH`:

Expand Down Expand Up @@ -163,7 +163,7 @@ That means another developer only needs the npm package, the `codegraph` CLI, an
Remove the package using the same source shown by `pi list`:

```bash
pi remove npm:@vndv/pi-codegraph@0.1.6
pi remove npm:@vndv/pi-codegraph@0.1.7
```

If you installed from GitHub or a local path, remove that exact entry instead:
Expand Down Expand Up @@ -200,7 +200,7 @@ codegraph init -i

### Node.js version is unsupported

Use Node.js 22 LTS:
Use Node.js 22.19.0 or newer:

```bash
nvm install 22
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vndv/pi-codegraph",
"version": "0.1.6",
"version": "0.1.7",
"description": "CodeGraph tools for Pi Agent.",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -48,7 +48,7 @@
"version-packages": "changeset version && npm run sync:readme-version && npm install --package-lock-only --ignore-scripts"
},
"engines": {
"node": ">=22.19.0 <25"
"node": ">=22.19.0"
},
"publishConfig": {
"access": "public"
Expand Down