A pi coding agent extension that integrates Language Server Protocol (LSP) servers, giving the LLM access to the same language intelligence that powers your IDE.
| Tool | Description |
|---|---|
lsp_diagnostics |
Compilation errors and warnings for a file |
lsp_hover |
Type information and documentation at a position |
lsp_definition |
Go to definition of a symbol |
lsp_references |
Find all references to a symbol |
lsp_symbols |
List file symbols or search workspace symbols |
lsp_rename |
Preview rename refactoring (returns planned edits) |
lsp_completions |
Code completion suggestions at a position |
code_overview |
Project structure, key files, and symbols (tree-sitter) |
code_search |
Find code by AST structure with metavariables |
code_rewrite |
Transform code matching structural patterns |
LSP servers start lazily — they only spin up when a tool is first used on a file of that language. For slow servers (e.g. jdtls), you can auto-start them on session launch.
After a successful write or edit, if an LSP server is already running for that file type, the extension automatically appends compilation errors to the tool result. This gives the LLM immediate feedback without requiring a separate lsp_diagnostics call.
- Scoped to the single changed file (no workspace-wide noise)
- Only errors, max 10 lines — keeps context lean
- Only fires when a server is already running (no lazy startup)
git clone https://github.com/samfoy/pi-lsp-extension.git
cd pi-lsp-extension
npm installAdd to your pi settings.json:
{
"extensions": ["/path/to/pi-lsp-extension/src/index.ts"]
}Or run directly:
pi -e /path/to/pi-lsp-extension/src/index.tsInstall the language server you need, then it works automatically:
| Language | Server | Install |
|---|---|---|
| TypeScript/JavaScript | typescript-language-server |
npm i -g typescript-language-server typescript |
| Python | pyright-langserver |
pip install pyright |
| Rust | rust-analyzer |
rustup |
| Go | gopls |
go install golang.org/x/tools/gopls@latest |
| Java | jdtls |
Eclipse JDT.LS |
Add more at runtime:
/lsp-config ruby solargraph stdio
/lsp-config lua lua-language-server
| Command | Description |
|---|---|
/lsp |
Show status of running LSP servers |
/lsp-restart <lang> |
Restart an LSP server (kills daemon, re-initializes) |
/lsp-config <lang> <cmd> [args] |
Configure a language server |
/lsp-lombok [path] |
Set Lombok jar path for Java (or show current) |
/bemol [run|watch|stop|status] |
Manage bemol (Brazil workspaces) |
- Lazy startup — servers start on first tool use for a file type (or eagerly via
.pi-lsp.json) - Tree-sitter fallback — when no LSP server is running, tools like
lsp_diagnostics,lsp_hover,lsp_definition, andlsp_symbolsfall back to tree-sitter for syntax errors, signatures, and symbol extraction - File sync — pi's
read/write/editoperations are automatically synced to the LSP viadidOpen/didChange, with LRU eviction (didClose) after 100 tracked files - Diagnostics cache — the server pushes diagnostics asynchronously; tools read from a local cache
- Auto-diagnostics — errors are appended to write/edit results when a server is running
- Shared daemons — in supported workspaces, LSP servers run as background daemons shared across pi sessions
If your Java project uses Lombok, jdtls needs the Lombok agent jar to understand generated code. The extension resolves the jar in this order:
-
/lsp-lombokcommand — set the path at runtime:/lsp-lombok /path/to/lombok.jar -
LOMBOK_JARenvironment variable — set before starting pi:export LOMBOK_JAR=/path/to/lombok.jar pi -
Auto-detection — in Brazil workspaces, the extension searches
env/Lombok-*/runtime/lib/andenv/gradle-cache-2/automatically.
Run /lsp-lombok with no arguments to see which jar is currently configured.
Create a .pi-lsp.json file in your project root to configure LSP behavior per-project:
{
"autoStart": ["java", "typescript"],
"lombokJar": "auto",
"servers": {
"python": { "command": "pylsp", "args": [] }
}
}| Field | Description |
|---|---|
autoStart |
Array of language IDs to start eagerly on session launch. Servers begin initializing in the background immediately — no need to wait for the first tool call. Ideal for slow servers like jdtls. |
lombokJar |
Path to a Lombok jar (absolute or relative to project root), or "auto" to auto-detect in Brazil workspaces. Applied before auto-start so jdtls launches with the correct -javaagent flag. |
servers |
Custom server configs keyed by language ID. Overrides the built-in defaults. Each entry has command, optional args (string array), and optional env (key-value pairs). |
The config file is loaded once at session start. Changes require restarting the pi session.
Example for a Java Brazil workspace:
{
"autoStart": ["java"],
"lombokJar": "auto"
}This triggers bemol + jdtls startup as soon as the session begins, so by the time you need lsp_diagnostics or lsp_hover, the server is already warm.
src/
├── index.ts # Extension entry point, .pi-lsp.json config loader
├── lsp-client.ts # JSON-RPC client (stdio + socket modes)
├── lsp-manager.ts # Server lifecycle, per-language instances
├── file-sync.ts # didOpen/didChange tracking
├── lsp-daemon.ts # Background daemon for shared servers
├── lsp-daemon-launcher.cjs
├── bemol.ts # Brazil workspace support
├── locks.ts # File-based locking for daemon coordination
├── resolve-provider.ts # LSP vs tree-sitter provider selection
├── shared/
│ ├── constants.ts # Skip dirs, file size limits
│ ├── debug.ts # Debug logger (PI_LSP_DEBUG=1)
│ ├── format.ts # Location formatting utilities
│ ├── language-map.ts # File extension → language ID mapping
│ └── timing.ts # Timing constants
├── tree-sitter/
│ ├── parser-manager.ts # WASM parser loading and caching
│ ├── pattern-compiler.ts # Metavariable pattern → AST matcher
│ ├── search-engine.ts # Structural search over files
│ ├── rewrite-engine.ts # Structural find-and-replace
│ ├── symbol-extractor.ts # Per-language symbol extraction
│ └── workspace-index.ts # Project-wide symbol index
└── tools/
├── diagnostics.ts
├── hover.ts
├── definition.ts
├── references.ts
├── symbols.ts
├── rename.ts
├── completions.ts
├── code-overview.ts
├── code-search.ts
└── code-rewrite.ts
- Position parameters are 1-indexed (line 1, column 1 = first character)
lsp_renamereturns a preview — the LLM usesedit/writeto apply changes- Use
/lsp-restart javaafter changing Lombok config — jdtls needs a full restart to pick up-javaagentchanges - Set
PI_LSP_DEBUG=1to enable debug logging for troubleshooting - The extension adds a system prompt guideline nudging the LLM to check diagnostics after edits
MIT