Skip to content

Commit deed3d2

Browse files
author
houyuxi
committed
docs: add pi target to README and site docs
Signed-off-by: houyuxi <yuxi.hou@transwarp.io>
1 parent 6c369fd commit deed3d2

5 files changed

Lines changed: 12 additions & 9 deletions

File tree

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# CodeGraph
44

5-
### Supercharge Claude Code, Cursor, Codex, OpenCode, and Hermes Agent with Semantic Code Intelligence
5+
### Supercharge Claude Code, Cursor, Codex, OpenCode, Hermes Agent, and pi with Semantic Code Intelligence
66

77
**~35% cheaper · ~70% fewer tool calls · 100% local**
88

@@ -21,6 +21,7 @@
2121
[![Codex CLI](https://img.shields.io/badge/Codex_CLI-supported-blueviolet.svg)](#supported-agents)
2222
[![opencode](https://img.shields.io/badge/opencode-supported-blueviolet.svg)](#supported-agents)
2323
[![Hermes Agent](https://img.shields.io/badge/Hermes_Agent-supported-blueviolet.svg)](#supported-agents)
24+
[![pi](https://img.shields.io/badge/pi-supported-blueviolet.svg)](#supported-agents)
2425

2526
</div>
2627

@@ -43,7 +44,7 @@ npx @colbymchenry/codegraph # zero-install, or:
4344
npm i -g @colbymchenry/codegraph
4445
```
4546

46-
<sub>CodeGraph bundles its own runtime — nothing to compile, no native build, works the same everywhere. The interactive installer auto-configures your agent(s) — Claude Code, Cursor, Codex CLI, opencode, Hermes Agent.</sub>
47+
<sub>CodeGraph bundles its own runtime — nothing to compile, no native build, works the same everywhere. The interactive installer auto-configures your agent(s) — Claude Code, Cursor, Codex CLI, opencode, Hermes Agent, pi.</sub>
4748

4849
### Initialize Projects
4950

@@ -203,7 +204,7 @@ npx @colbymchenry/codegraph
203204
```
204205

205206
The installer will:
206-
- Ask which agent(s) to configure — auto-detects installed ones from: **Claude Code**, **Cursor**, **Codex CLI**, **opencode**, **Hermes Agent**
207+
- Ask which agent(s) to configure — auto-detects installed ones from: **Claude Code**, **Cursor**, **Codex CLI**, **opencode**, **Hermes Agent**, **pi**
207208
- Prompt to install `codegraph` on your PATH (so agents can launch the MCP server)
208209
- Ask whether configs apply to all your projects or just this one
209210
- Write each chosen agent's MCP server config + an instructions file (e.g. `CLAUDE.md`, `.cursor/rules/codegraph.mdc`, `~/.codex/AGENTS.md`)
@@ -229,7 +230,7 @@ codegraph install --print-config codex # print snippet, no file wr
229230

230231
### 2. Restart Your Agent
231232

232-
Restart your agent (Claude Code / Cursor / Codex CLI / opencode / Hermes Agent) for the MCP server to load.
233+
Restart your agent (Claude Code / Cursor / Codex CLI / opencode / Hermes Agent / pi) for the MCP server to load.
233234

234235
### 3. Initialize Projects
235236

@@ -494,6 +495,7 @@ the MCP server and writing its instructions file:
494495
- **Codex CLI**
495496
- **opencode**
496497
- **Hermes Agent**
498+
- **pi**
497499

498500
## Supported Languages
499501

@@ -555,7 +557,7 @@ MIT
555557

556558
<div align="center">
557559

558-
**Made for AI coding agents — Claude Code, Cursor, Codex CLI, opencode, and Hermes Agent**
560+
**Made for AI coding agents — Claude Code, Cursor, Codex CLI, opencode, Hermes Agent, and pi**
559561

560562
[Report Bug](https://github.com/colbymchenry/codegraph/issues) · [Request Feature](https://github.com/colbymchenry/codegraph/issues)
561563

site/src/content/docs/getting-started/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ npx @colbymchenry/codegraph
1111

1212
The installer will:
1313

14-
- Ask which agent(s) to configure — auto-detecting installed ones from **Claude Code**, **Cursor**, **Codex CLI**, **opencode**, and **Hermes Agent**.
14+
- Ask which agent(s) to configure — auto-detecting installed ones from **Claude Code**, **Cursor**, **Codex CLI**, **opencode**, **Hermes Agent**, and **pi**.
1515
- Prompt to install `codegraph` on your `PATH` (so agents can launch the MCP server).
1616
- Ask whether configs apply to all your projects or just this one.
1717
- Write each chosen agent's MCP server config plus an instructions file (e.g. `CLAUDE.md`, `.cursor/rules/codegraph.mdc`, `~/.codex/AGENTS.md`).
@@ -37,7 +37,7 @@ codegraph install --print-config codex # print snippet, no file wr
3737

3838
## 2. Restart your agent
3939

40-
Restart your agent (Claude Code / Cursor / Codex CLI / opencode / Hermes Agent) for the MCP server to load.
40+
Restart your agent (Claude Code / Cursor / Codex CLI / opencode / Hermes Agent / pi) for the MCP server to load.
4141

4242
## 3. Initialize projects
4343

site/src/content/docs/getting-started/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: What CodeGraph is, and why it makes AI coding agents faster and che
55

66
CodeGraph is a **local-first code-intelligence tool**. It parses your codebase with [tree-sitter](https://tree-sitter.github.io/), stores every symbol, edge, and file in a local SQLite database, and exposes the result as a queryable **knowledge graph** — over the [Model Context Protocol (MCP)](/codegraph/reference/mcp-server/), a CLI, and a TypeScript library.
77

8-
It exists to make AI coding agents — Claude Code, Cursor, Codex CLI, opencode, and Hermes Agent — **answer structural questions without scanning files**. Instead of fanning out across `grep`, `glob`, and `Read` to reconstruct how code fits together, an agent queries a pre-built index and gets the answer in a handful of calls.
8+
It exists to make AI coding agents — Claude Code, Cursor, Codex CLI, opencode, Hermes Agent, and pi**answer structural questions without scanning files**. Instead of fanning out across `grep`, `glob`, and `Read` to reconstruct how code fits together, an agent queries a pre-built index and gets the answer in a handful of calls.
99

1010
## Why it matters
1111

site/src/content/docs/getting-started/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ npx @colbymchenry/codegraph # zero-install, or:
2222
npm i -g @colbymchenry/codegraph
2323
```
2424

25-
CodeGraph bundles its own runtime — nothing to compile, no native build, works the same everywhere. The interactive installer auto-configures your agent(s) — Claude Code, Cursor, Codex CLI, opencode, Hermes Agent.
25+
CodeGraph bundles its own runtime — nothing to compile, no native build, works the same everywhere. The interactive installer auto-configures your agent(s) — Claude Code, Cursor, Codex CLI, opencode, Hermes Agent, pi.
2626

2727
## Initialize Projects
2828

site/src/content/docs/reference/integrations.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ The interactive installer auto-detects and configures each supported agent — w
1212
- **Codex CLI**
1313
- **opencode**
1414
- **Hermes Agent**
15+
- **pi**
1516

1617
Run `npx @colbymchenry/codegraph` and pick your agent(s); see [Installation](/codegraph/getting-started/installation/) for the non-interactive flags.
1718

0 commit comments

Comments
 (0)