@yishan-io/pi-codegraph
Pi extension exposing stable CodeGraph structural-code navigation tools.
Package details
Install @yishan-io/pi-codegraph from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:@yishan-io/pi-codegraph- Package
@yishan-io/pi-codegraph- Version
0.1.0- Published
- Aug 21, 2026
- Downloads
- 158/mo · 25/wk
- Author
- zhex
- License
- MIT
- Types
- extension
- Size
- 35.1 KB
- Dependencies
- 0 dependencies · 3 peers
Pi manifest JSON
{
"extensions": [
"./extensions"
]
}Security note
Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.
README
@yishan-io/pi-codegraph
A Pi package that provides the frozen CodeGraph structural-code navigation tool contract.
Prerequisites
Install the codegraph CLI and initialize CodeGraph in the project that Pi will inspect. The
project must contain an initialized .codegraph directory before CodeGraph can return indexed
results.
codegraph init
Install
Install the package with npm when you use its exported extension factory in your own integration:
npm install @yishan-io/pi-codegraph
To install it as a Pi package, run:
pi install npm:@yishan-io/pi-codegraph
Tools
The package registers these eight tools:
codegraph_search— Search indexed symbols by name, kind, or structural-code query.codegraph_callers— Find symbols that call a selected symbol.codegraph_callees— Find symbols called by a selected symbol.codegraph_impact— Analyze the structural impact of changing a symbol.codegraph_explore— Explore code structure for a natural-language query.codegraph_node— Inspect an indexed symbol and optionally include its source code.codegraph_status— Show CodeGraph index and project status.codegraph_files— List indexed project files in tree, flat, or grouped format.
Use with Pi
After installation, start Pi in the initialized project directory:
pi
To load the npm package for one Pi invocation without installing it permanently, run:
pi -e npm:@yishan-io/pi-codegraph
The extension launches a short-lived native MCP session for each tool call. It terminates the CodeGraph process tree after the call completes, fails, or times out.
Programmatic usage
Register the extension with an existing Pi ExtensionAPI instance:
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
import { createPiCodeGraphExtension } from "@yishan-io/pi-codegraph";
export function registerCodeGraph(pi: ExtensionAPI): void {
createPiCodeGraphExtension(pi);
}
Development
bun run --cwd packages/pi-codegraph typecheck
bun run --cwd packages/pi-codegraph lint
bun run --cwd packages/pi-codegraph test