pi-codegraph-extension
v0.1.1
Published
CodeGraph MCP tools for the Pi Coding Agent — semantic code search, impact analysis, call graphs, and deep exploration.
Downloads
4
Maintainers
Readme
pi-codegraph
CodeGraph MCP tools for the original Pi Coding Agent.
This package targets:
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";It does not target the Oh My Pi package import:
import type { ExtensionAPI } from "@oh-my-pi/pi-coding-agent";Install
pi install npm:pi-codegraph-extensionOr copy the extension file manually into your Pi extension directory.
Requirements
Install CodeGraph globally:
npm install -g @colbymchenry/codegraphOr install it in the project you want to inspect:
npm install -D @colbymchenry/codegraphInitialize the project index:
cd /path/to/project
codegraph init -i
codegraph statusThen launch Pi from the same shell so it inherits your PATH.
Optional environment overrides
export CODEGRAPH_COMMAND=codegraph
export CODEGRAPH_ARGS="serve --mcp"
export CODEGRAPH_TIMEOUT_MS=30000Tools
codegraph_statuscodegraph_filescodegraph_searchcodegraph_contextcodegraph_callerscodegraph_calleescodegraph_impactcodegraph_nodecodegraph_explore
Notes
For codegraph_files, pass a repo-relative path filter such as:
src
src/components
appDo not pass the full project root as path. Use projectPath for the root project directory.
