Coordinate multiple Pi agents working in the same project. See who's around, claim files so you don't step on each other, and send messages between sessions.
No daemon, no server. Just files on disk.
pi install npm:pi-meshAdd .pi/pi-mesh.json to your project:
{
"autoRegister": true
}That's it. Start two Pi sessions in the same project and they'll find each other.
Five tools for agents to coordinate:
| Tool | What it does |
|---|---|
mesh_peers |
List who's active, what they're working on, what model they're running |
mesh_reserve |
Claim files before editing. Other agents get blocked and told who to talk to |
mesh_release |
Let go of files when you're done |
mesh_send |
Message another agent. Normal messages wait politely; urgent ones interrupt |
mesh_manage |
Rename yourself, set status, check agent details, view the activity feed |
An overlay you open with /mesh - three tabs showing agents, activity feed, and a chat with @mention tab-completion.
Automatic tracking of edits, commits, and test runs. Status is derived from activity ("just shipped", "debugging...", "on fire").
// Who's here?
mesh_peers({})
// I'm going to work on auth
mesh_reserve({ paths: ["src/auth/"], reason: "Refactoring auth" })
// Let the other agent know
mesh_send({ to: "zero-2", message: "Auth refactor done, interfaces changed" })
// Something urgent
mesh_send({ to: "zero-2", message: "Stop! Don't touch config.ts", urgent: true })
// Done, release files
mesh_release({})Everything lives in .pi/mesh/:
.pi/mesh/
├── registry/ # One JSON file per agent
├── inbox/{name}/ # Messages as JSON files, watched with fs.watch
└── feed.jsonl # Append-only activity log
Agents register when they start, unregister when they stop. If an agent crashes, stale entries get cleaned up on the next mesh_peers call via PID checking.
Messages use Pi's delivery system - normal messages queue until the recipient finishes their current turn, urgent ones interrupt immediately. No polling needed.
Reservations are enforced by hooking Pi's edit and write tools. When an agent tries to edit a reserved file, the tool call gets blocked and the agent sees who reserved it and why.
Non-interactive sessions (--print mode, daemon tasks) skip registration entirely so they don't spam interactive agents.
Open with /mesh. Tab switches between panels, arrow keys scroll, Esc closes.
| Tab | Shows |
|---|---|
| Agents | Live status of all peers - model, branch, current activity, reservations |
| Feed | Scrollable timeline of joins, edits, commits, messages |
| Chat | Type @name message to DM, or just type to broadcast. Tab-complete names |
Full config with defaults:
{
"autoRegister": false,
"autoRegisterPaths": [],
"contextMode": "full",
"feedRetention": 50,
"stuckThreshold": 900,
"autoStatus": true
}| Setting | What it does | Default |
|---|---|---|
| autoRegister | Join mesh when Pi starts | false |
| autoRegisterPaths | Only auto-join in these folders (trailing * wildcards) |
[] |
| contextMode | How much context to inject: "full", "minimal", "none" | "full" |
| feedRetention | Max events kept in the activity feed | 50 |
| stuckThreshold | Seconds idle before an agent is marked stuck | 900 |
| autoStatus | Generate status from activity automatically | true |
Config is loaded from: project .pi/pi-mesh.json > user ~/.pi/agent/pi-mesh.json > ~/.pi/agent/settings.json "mesh" key > defaults.
The library defaults to autoRegister: false. Set it to true in your project config if you want all agents to coordinate.
Names follow the pattern {type}-{N} where type comes from PI_AGENT env var (defaults to "agent") and N increments. So you get zero-1, zero-2, lite-1, etc.
Override with PI_AGENT_NAME env var, or rename at runtime:
mesh_manage({ action: "rename", name: "auth-worker" })pi-mesh supports lifecycle hooks for reacting to mesh events without forking the package. Specify a module path in your config:
{
"autoRegister": true,
"hooksModule": "./mesh-hooks.ts"
}The module should export a createHooks function:
import type { MeshConfig, MeshLifecycleHooks } from "pi-mesh/types";
export function createHooks(config: MeshConfig): MeshLifecycleHooks {
return {
onRegistered(state, ctx, actions) {
// Called after successful mesh registration.
// Use actions.rename("new-name") to trigger a mesh rename.
},
onRenamed(state, ctx, result) {
// Called after a successful rename (from mesh_manage or actions.rename).
},
onPollTick(state, ctx, actions) {
// Called on an interval while registered (default 2s).
// Can call actions.rename() to sync external name changes into mesh.
},
onShutdown(state) {
// Called during session shutdown, before unregister.
},
};
}All hooks are optional. The poll interval defaults to 2 seconds and can be customized by setting state.hookState.pollIntervalMs in onRegistered (read once when the timer starts; not dynamic at runtime).
Hooks receive MeshState which includes an optional hookState: Record<string, unknown> bag for storing custom state across calls.
onRegistered and onPollTick receive a HookActions object with:
actions.rename(newName)— rename this agent in the mesh registry. Handles watcher cycling internally and firesonRenamedon success. ReturnsRenameResultso hooks can handle failures (e.g., revert a tmux window on collision).
bashbypasses reservations. Onlyeditandwriteare hooked. Ased -ithrough bash won't be caught.- Concurrent feed writes can produce partial JSON lines. Malformed lines are skipped on read.
- PID checking doesn't work across container boundaries.
- Crashed agents leave stale registrations until the next
mesh_peerscleans them up.
Full docs at rhnvrm.github.io/pi-mesh.
Inspired by pi-messenger by Nico Bailon. pi-mesh focuses on coordination only - presence, messaging, reservations - without the crew/task layer.
MIT