A collection of Pi Coding Agent customized instances. Why? To showcase what it looks like to hedge against the leader in the agentic coding market, Claude Code. Here we showcase how you can customize the UI, agent orchestration tools, safety auditing, agent to agent orchestration, and cross-agent integrations.
Want to see these 6+ unique Pi Agent Harnesses in action? Watch Pi Coding Agent: The Only Claude Code Competitor.
π Pi-to-Pi agent-to-agent communication. Jump to Pi-to-Pi Communication or watch Pi to Pi: Two-Way Agent Orchestration.
All three are required:
| Tool | Purpose | Install |
|---|---|---|
| Bun β₯ 1.3.2 | Runtime & package manager | bun.sh |
| just | Task runner | brew install just |
| pi | Pi Coding Agent CLI | Pi docs |
Pi does not auto-load .env files β API keys must be present in your shell's environment before you launch Pi. A sample file is provided:
cp .env.sample .env # copy the template
# open .env and fill in your keys.env.sample covers the four most popular providers:
| Provider | Variable | Get your key |
|---|---|---|
| OpenAI | OPENAI_API_KEY |
platform.openai.com |
| Anthropic | ANTHROPIC_API_KEY |
console.anthropic.com |
GEMINI_API_KEY |
aistudio.google.com | |
| OpenRouter | OPENROUTER_API_KEY |
openrouter.ai |
| Many Many Others | *** |
Pi Providers docs |
Pick whichever approach fits your workflow:
Option A β Source manually each session:
source .env && piOption B β One-liner alias (add to ~/.zshrc or ~/.bashrc):
alias pi='source $(pwd)/.env && pi'Option C β Use the just task runner (auto-wired via set dotenv-load):
just pi # .env is loaded automatically for every just recipe
just ext-minimal # works for all recipes, not just `pi`bun install| Extension | File | Description |
|---|---|---|
| pure-focus | extensions/pure-focus.ts |
Removes the footer bar and status line entirely β pure distraction-free mode |
| minimal | extensions/minimal.ts |
Compact footer showing model name and a 10-block context usage meter [###-------] 30% |
| cross-agent | extensions/cross-agent.ts |
Scans .claude/, .gemini/, .codex/ dirs for commands, skills, and agents and registers them in Pi |
| purpose-gate | extensions/purpose-gate.ts |
Prompts you to declare session intent on startup; shows a persistent purpose widget and blocks prompts until answered |
| tool-counter | extensions/tool-counter.ts |
Rich two-line footer: model + context meter + token/cost stats on line 1, cwd/branch + per-tool call tally on line 2 |
| tool-counter-widget | extensions/tool-counter-widget.ts |
Live-updating above-editor widget showing per-tool call counts with background colors |
| subagent-widget | extensions/subagent-widget.ts |
/sub <task> command that spawns background Pi subagents; each gets its own streaming live-progress widget |
| tilldone | extensions/tilldone.ts |
Task discipline system β define tasks before starting work; tracks completion state across steps; shows persistent task list in footer with live progress |
| agent-team | extensions/agent-team.ts |
Dispatcher-only orchestrator: the primary agent delegates all work to named specialist agents via dispatch_agent; shows a grid dashboard |
| system-select | extensions/system-select.ts |
/system command to interactively switch between agent personas/system prompts from .pi/agents/, .claude/agents/, .gemini/agents/, .codex/agents/ |
| damage-control | extensions/damage-control.ts |
Real-time safety auditing β intercepts dangerous bash patterns and enforces path-based access controls from .pi/damage-control-rules.yaml |
| damage-control-continue | extensions/damage-control-continue.ts |
Same rules as damage-control, but blocked tool calls return actionable feedback instead of aborting β the agent's turn keeps running and can adapt |
| agent-chain | extensions/agent-chain.ts |
Sequential pipeline orchestrator β chains multiple agents where each step's output feeds into the next step's prompt; use /chain to select and run |
| pi-pi | extensions/pi-pi.ts |
Meta-agent that builds Pi agents using parallel research experts for documentation |
| coms | extensions/coms.ts |
Peer-to-peer messaging between Pi agents on the same machine over Unix sockets / named pipes. Tools: coms_list, coms_send, coms_get, coms_await |
| coms-net | extensions/coms-net.ts |
Networked Pi-to-Pi via a shared HTTP/SSE hub (scripts/coms-net-server.ts). Works across machines on a LAN or behind a remote URL. Tools: coms_net_* |
| session-replay | extensions/session-replay.ts |
Scrollable timeline overlay of session history - showcasing customizable dialog UI |
| theme-cycler | extensions/theme-cycler.ts |
Keyboard shortcuts (Ctrl+X/Ctrl+Q) and /theme command to cycle/switch between custom themes |
pi -e extensions/<name>.tsExtensions compose β pass multiple -e flags:
pi -e extensions/minimal.ts -e extensions/cross-agent.tsjust wraps the most useful combinations. Run just with no arguments to list all available recipes:
justCommon recipes:
just pi # Plain Pi, no extensions
just ext-pure-focus # Distraction-free mode
just ext-minimal # Minimal context meter footer
just ext-cross-agent # Cross-agent command loading + minimal footer
just ext-purpose-gate # Purpose gate + minimal footer
just ext-tool-counter # Rich two-line footer with tool tally
just ext-tool-counter-widget # Per-tool widget above the editor
just ext-subagent-widget # Subagent spawner with live progress widgets
just ext-tilldone # Task discipline system with live progress tracking
just ext-agent-team # Multi-agent orchestration grid dashboard
just ext-system-select # Agent persona switcher via /system command
just ext-damage-control # Safety auditing + minimal footer
just ext-damage-control-continue # Same rules, but blocked turns keep running
just ext-agent-chain # Sequential pipeline orchestrator with step chaining
just ext-pi-pi # Meta-agent that builds Pi agents using parallel experts
just ext-session-replay # Scrollable timeline overlay of session history
just ext-theme-cycler # Theme cycler + minimal footer
just all # Open every extension in its own terminal window
# Pi-to-Pi communication (see section below)
just local-coms # Same-machine peer-to-peer over Unix sockets
just coms-net-server # Start a local coms-net HTTP/SSE hub (127.0.0.1)
just coms-net-server-lan # Start a LAN-visible hub (requires PI_COMS_NET_AUTH_TOKEN)
just coms # Pi client for the coms-net hub
just coms1 # β¦same, pinned to gpt-5.5
just coms2 # β¦same, pinned to claude-opus-4-7The open recipe allows you to spin up a new terminal window with any combination of stacked extensions (omit .ts):
just open purpose-gate minimal tool-counter-widgetpi-vs-cc/
βββ extensions/ # Pi extension source files (.ts) β one file per extension
βββ specs/ # Feature specifications for extensions
βββ .pi/
β βββ agent-sessions/ # Ephemeral session files (gitignored)
β βββ agents/ # Agent definitions for team and chain extensions
β β βββ pi-pi/ # Expert agents for the pi-pi meta-agent
β β βββ agent-chain.yaml # Pipeline definition for agent-chain
β β βββ teams.yaml # Team definition for agent-team
β β βββ *.md # Individual agent persona/system prompts
β βββ skills/ # Custom skills
β βββ themes/ # Custom themes (.json) used by theme-cycler
β βββ damage-control-rules.yaml # Path/command rules for safety auditing
β βββ settings.json # Pi workspace settings
βββ justfile # just task definitions
βββ CLAUDE.md # Conventions and tooling reference (for agents)
βββ THEME.md # Color token conventions for extension authors
βββ TOOLS.md # Built-in tool function signatures available in extensions
Pi's architecture makes it easy to coordinate multiple autonomous agents. This playground includes several powerful multi-agent extensions:
The subagent-widget extension allows you to offload isolated tasks to background Pi agents while you continue working in the main terminal. Typing /sub <task> spawns a headless subagent that reports its streaming progress via a persistent, live-updating UI widget above your editor.
The agent-team orchestrator operates as a dispatcher. Instead of answering prompts directly, the primary agent reviews your request, selects a specialist from a defined roster, and delegates the work via a dispatch_agent tool.
- Teams are configured in
.pi/agents/teams.yamlwhere each top-level key is a team name containing a list of agent names (e.g.,frontend: [planner, builder, bowser]). - Individual agent personas (e.g.,
builder.md,reviewer.md) live in.pi/agents/. - pi-pi Meta-Agent: The
pi-piteam specifically delegates tasks to specialized Pi framework experts (ext-expert.md,theme-expert.md,tui-expert.md) located in.pi/agents/pi-pi/to build high-quality Pi extensions using parallel research.- Web Crawling Fallbacks: To ingest the latest framework documentation dynamically, these experts use
firecrawlas their default modern page crawler, but are explicitly programmed to safely fall back to the nativecurlbaked into their bash toolset if Firecrawl fails or is unavailable.
- Web Crawling Fallbacks: To ingest the latest framework documentation dynamically, these experts use
Unlike the dynamic dispatcher, agent-chain acts as a sequential pipeline orchestrator. Workflows are defined in .pi/agents/agent-chain.yaml where the output of one agent becomes the input ($INPUT) to the next.
- Workflows are defined as a list of
steps, where each step specifies anagentand aprompt. - The
$INPUTvariable injects the previous step's output (or the user's initial prompt for the first step), and$ORIGINALalways contains the user's initial prompt. - Example: The
plan-build-reviewpipeline feeds your prompt to theplanner, passes the plan to thebuilder, and finally sends the code to thereviewer.
πΊ Watch: Pi to Pi: Two-Way Agent Orchestration with the Pi Coding Agent
What's better than one Pi coding agent? Two. What's better than two isolated side-by-side agents? Two agents that actually talk to each other. Subagents, dispatch queues, and agent chains all share one shape: information flows in one direction down a hierarchy. coms and coms-net add the missing pattern β two equal Pi agents that talk to each other peer-to-peer, on the same machine or across the network. No orchestrator, no parent/child relationship, no information loss as work travels through layers. The best idea wins, regardless of which agent had it.
This is the shift. Sub-agent delegation and message queues are powerful patterns, but every one of them moves information in basically one direction. Even when results come back, it's a one-way stream β top-down. Peer-to-peer flips it: prompt β response β prompt β response, between agents who are equals, not parent and child. That unlocks bidirectional flows of information by default.
Why this matters in practice:
- Cross-device work. A production agent on one box, a dev agent on your laptop. The prod side keeps PII redacted while still answering the dev side's questions β real engineering work, no data leak.
- Heterogeneous teams. Run
claude-opus-4-7andgpt-5.5anddeepseekin the same pool. Each model has different RL training; together they catch what either misses alone. - Focused context windows. Each agent stays specialised on its slice instead of one bloated agent juggling every concern. A focused agent is a performant agent β the more unrelated problems you stuff into one context window, the higher your error rate climbs.
- Flat composition. It's still just an agent + extension. You can compose this back into an orchestrator pattern when you want top-down, or keep it flat when you don't.
The deeper reason this pattern matters: the best information is almost always on the worker level, but in a hierarchy it has to climb several layers (and survive several rewrites) before it shapes a decision. Flat structures let valuable information win on its own merit. The same dynamic plays out in agent systems β the agent closest to the artifact (the production database, the running test, the live file) usually has the sharpest view. Letting it speak directly to its peers, rather than routing every signal through an orchestrator, keeps that signal intact.
coms (local) |
coms-net (networked) |
|
|---|---|---|
| Transport | Unix sockets / Windows named pipes | HTTP + Server-Sent Events |
| Scope | One machine | Same machine, LAN, or remote URL |
| Discovery | File registry at ~/.pi/coms/projects/<project>/agents/*.json |
Shared hub at ~/.pi/coms-net/projects/<project>/server.json |
| Server | None β agents listen directly | bun scripts/coms-net-server.ts (Bun HTTP hub) |
| Tools | coms_list, coms_send, coms_get, coms_await |
coms_net_list, coms_net_send, coms_net_get, coms_net_await |
| Widget | Live pool above the editor | Live pool above the editor |
| Auth | OS file perms on ~/.pi/coms/ |
PI_COMS_NET_AUTH_TOKEN (auto-generated for localhost, required for LAN/remote) |
The entire surface area is four tools. List the agents on the network, send them a prompt, then either poll (non-blocking) or block until the response lands. That's it.
| Tool | What it does |
|---|---|
*_list |
List peer agents in the pool with names, models, and live context-window usage |
*_send |
Send a prompt to a peer; returns a msg_id once the receiver acks |
*_get |
Non-blocking poll on msg_id β pending / complete / error |
*_await |
Block until the reply lands or a timeout fires (default 30 min via PI_COMS_*_TIMEOUT_MS) |
A reply travels back through the same channel: when an inbound prompt triggers a turn, the receiver's final assistant message is automatically packaged as the response. Sometimes you want fire-and-forget (a Slack-style status ping); sometimes you want to wait for the answer (*_await); sometimes you want to keep working and check back later (*_get). All three styles fall out of the same four primitives.
# Terminal 1
just local-coms --name planner --purpose "Plans the work" --color "#36F9F6"
# Terminal 2
just local-coms --name coder --purpose "Writes the code" --color "#FF7EDB"Each agent shows a live pool widget of the others. From either side, the agent can call coms_send with target: "planner" (or "coder"), then coms_await for the reply.
coms-net is the same idea over HTTP/SSE. Now planner can live on your laptop and coder can live on a Mac Mini, an EU production box, or a remote VM β they meet through a shared hub. The agent on the sensitive side stays on the sensitive side; only the messages cross the wire. Same four tools, just coms_net_*-prefixed.
# Terminal 1 β hub
just coms-net-server # binds 127.0.0.1, OS-claimed port
# or
just coms-net-server-lan # binds 0.0.0.0 β requires PI_COMS_NET_AUTH_TOKEN
# Terminal 2 & 3 β clients (auto-discover server.json)
just coms --name dev
just coms2 --name prod # β¦pinned to claude-opus-4-7
# Or different models per seat: coms1=gpt-5.5, coms2=opus-4-7, coms3=deepseek, coms4=glm
just coms1 --name researcher
just coms3 --name verifierFor remote / cross-LAN: set PI_COMS_NET_SERVER_URL and PI_COMS_NET_AUTH_TOKEN in .env (template in .env.sample). Front the hub with TLS for anything beyond a trusted LAN.
- Hop limit β every prompt envelope carries
hops; defaultMAX_HOPS=5(PI_COMS_MAX_HOPS/PI_COMS_NET_MAX_HOPS). Stops runaway AβBβAβB forwarding loops. - Audit log β every send/receive appends to
coms-log/coms-net-log(msg_id, sender, hops only β never prompt bodies). - Self-heal β
comsprobes for stale sockets and prunes dead PIDs on every list;coms-netheartbeats every 10s and marks peersstale/offlineon miss. - Localhost-by-default β the hub refuses to bind anything other than
127.0.0.1unlessPI_COMS_NET_AUTH_TOKENis set explicitly.
Pros
- Bidirectional. Information moves both ways, not down a hierarchy.
- Flat. No "lead agent" β the best information wins on merit, not title.
- Just an agent. Spin one up, kill it, add another β no resume, no spin-up dance.
- Heterogeneous. Mix providers and models in a single conversation pool.
Cons
- You build and prompt-engineer the protocol. Sloppy prompts β AβBβA loops.
- Cost scales linearly with agent count plus the bounce factor. Three good agents beats ten noisy ones.
- For some shapes of work an orchestrator is still the right tool. This isn't a replacement for
agent-teamoragent-chainβ it's a different primitive you compose alongside them.
The damage-control extension provides real-time security hooks to prevent catastrophic mistakes when agents execute bash commands or modify files. It uses Pi's tool_call event to intercept and evaluate every action against .pi/damage-control-rules.yaml.
- Dangerous Commands: Uses regex (
bashToolPatterns) to block destructive commands likerm -rf,git reset --hard,aws s3 rm --recursive, orDROP DATABASE. Some rules strictly block execution, while others (ask: true) pause execution to prompt you for confirmation. - Zero Access Paths: Prevents the agent from reading or writing sensitive files (e.g.,
.env,~/.ssh/,*.pem). - Read-Only Paths: Allows reading but blocks modifying system files or lockfiles (
package-lock.json,/etc/). - No-Delete Paths: Allows modifying but prevents deleting critical project configuration (
.git/,Dockerfile,README.md).
For a "soft" variant that lets the agent keep working after a block (turn continues with actionable feedback instead of aborting), use damage-control-continue.
Companion docs cover the conventions used across all extensions in this repo:
- COMPARISON.md β Feature-by-feature comparison of Claude Code vs Pi Agent across 12 categories (design philosophy, tools, hooks, SDK, enterprise, and more).
- PI_VS_OPEN_CODE.md β Architectural comparison of Pi Agent vs OpenCode (open-source Claude Code alternative) focusing on extension capabilities, event lifecycle, and UI customization.
- RESERVED_KEYS.md β Pi reserved keybindings, overridable keys, and safe keys for extension authors.
- THEME.md β Color language: which Pi theme tokens (
success,accent,warning,dim,muted) map to which UI roles, with examples. - TOOLS.md β Function signatures for the built-in tools available inside extensions (
read,bash,edit,write).
Side-by-side comparison of lifecycle hooks in Claude Code vs Pi Agent.
| Category | Claude Code | Pi Agent | Available In |
|---|---|---|---|
| Session | SessionStart, SessionEnd |
session_start, session_shutdown |
Both |
| Input | UserPromptSubmit |
input |
Both |
| Tool | PreToolUse, PostToolUse, PostToolUseFailure |
tool_call, tool_result, tool_execution_start, tool_execution_update, tool_execution_end |
Both |
| Bash | β | BashSpawnHook, user_bash |
Pi |
| Permission | PermissionRequest |
β | CC |
| Compact | PreCompact |
session_before_compact, session_compact |
Both |
| Branching | β | session_before_fork, session_fork, session_before_switch, session_switch, session_before_tree, session_tree |
Pi |
| Agent / Turn | β | before_agent_start, agent_start, agent_end, turn_start, turn_end |
Pi |
| Message | β | message_start, message_update, message_end |
Pi |
| Model / Context | β | model_select, context |
Pi |
| Sub-agents | SubagentStart, SubagentStop, TeammateIdle, TaskCompleted |
β | CC |
| Config | ConfigChange |
β | CC |
| Worktree | WorktreeCreate, WorktreeRemove |
β | CC |
| System | Stop, Notification |
β | CC |
| Doc | Description |
|---|---|
| Mario's Twitter | Creator of Pi Coding Agent |
| README.md | Overview and getting started |
| sdk.md | TypeScript SDK reference |
| rpc.md | RPC protocol specification |
| json.md | JSON event stream format |
| providers.md | API keys and provider setup |
| models.md | Custom models (Ollama, vLLM, etc.) |
| extensions.md | Extension system |
| skills.md | Skills (Agent Skills standard) |
| settings.md | Configuration |
| compaction.md | Context compaction |
Released under the MIT License β fork it, ship it, use it however helps you build.
Prepare for the future of software engineering
Learn tactical agentic coding patterns with Tactical Agentic Coding
Follow the IndyDevDan YouTube channel to improve your agentic coding advantage.





