Collection of extensions and skills for Pi coding agent.
| Extension | Description |
|---|---|
| pi-code-review | Code review for bugs, security, performance, style, and architecture |
| pi-git-confirm | Prompts for confirmation before git commit and git push |
| pi-plan-mode | Read-only exploration mode for safe code analysis |
| pi-tps-extension | Real-time TPS (tokens per second) metrics |
| Skill | Description |
|---|---|
| pi-web-search | Web search via DuckDuckGo HTML with result summarization |
Copy the extension source to ~/.pi/agent/extensions/ for auto-discovery:
# TPS metrics
cp pi-tps-extension/src/extension.ts ~/.pi/agent/extensions/tps-metrics.tsThen reload Pi:
/reload
Each extension is a self-contained package with its own package.json and tsconfig.json:
cd <extension-folder>
npm install
npm run buildMIT