EveryDev.ai
Subscribe
Home
Tools

3,419+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai Ā© 2026
    1. Home
    2. Tools
    3. Pi Messenger
    Pi Messenger icon

    Pi Messenger

    Multi-agent Systems

    Open-source extension for the Pi coding agent that lets multiple AI agents coordinate via file-based messaging, file reservations, and parallel task orchestration — no daemon or server required.

    Visit Website

    At a Glance

    Pricing
    Open Source

    MIT-licensed extension installable via npm.

    Engagement

    Available On

    macOS
    Linux
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Multi-agent SystemsAgent HarnessAI Coding Assistants

    Alternatives

    NimbalystPaseoEmdash
    Developer
    Ayoub GhrissAyoub Ghriss builds open-source developer tools focused on i…

    Listed Aug 2026

    About Pi Messenger

    Pi Messenger is an open-source extension for the Pi coding agent that lets multiple AI agents running in different terminals coordinate as if they were in a shared chat room. Agents join a mesh, claim memorable themed names, send direct messages or broadcasts, reserve files to prevent collisions, and track each other in a unified activity feed. The README credits mcp_agent_mail by @doodlestein as the inspiration for its agent-to-agent messaging model. Everything runs on plain files — no daemon, no server.

    What It Is

    Pi Messenger adds a coordination layer on top of Pi coding agent sessions. Once agents join, they appear in a shared presence list showing status, current model, and git branch. The /messenger command opens an interactive terminal overlay with tab-based navigation across agent presence, the activity feed, crew tasks, and per-agent chat threads. Chat input supports @Name for direct messages and @all for broadcasts. The README notes that your own interactive pi session shows up in the agent list marked (you), so a human participates on the same footing as the agents.

    File-Based Architecture

    The entire coordination system runs without any background process. Shared state — the registry, inboxes, and swarm claims — lives in ~/.pi/agent/messenger/. Project-scoped data such as the activity feed and crew logs lives under .pi/messenger/ inside each project directory. Dead agents are detected via PID checks and cleaned up automatically. Incoming messages wake the receiving agent through pi.sendMessage() with triggerTurn: true and deliverAs: "steer", injecting the message as a steering prompt. File reservations are enforced by returning { block: true } from a tool_call hook on write and edit operations.

    Crew: Parallel Task Orchestration

    The Crew system converts a PRD or an inline prompt into a dependency graph of tasks and executes them in parallel waves. The documented workflow has three phases. In Plan, a planner agent explores the codebase and PRD and drafts tasks with dependencies while a reviewer refines the plan until it passes or hits maxPasses. In Work, workers implement ready tasks concurrently, with autonomous: true running waves back-to-back until everything is done or blocked; each completed task gets an automatic reviewer pass. In Review, a manual or automatic check returns SHIP, NEEDS_WORK, or MAJOR_RETHINK with feedback.

    Crew workers are spawned as pi --mode json subprocesses carrying their own system prompt, model, and tool restrictions. The overlay shows each worker's current tool, call count, and token usage in real time via JSONL streaming. No special PRD format is required — the planner auto-discovers PRD.md, SPEC.md, DESIGN.md, and similar files in the project root and docs/.

    Crew Skills

    Crew Skills let workers acquire domain knowledge on demand rather than carrying it in every prompt. Skills are discovered from three locations that override each other by name: user skills in ~/.pi/agent/skills/, extension skills bundled in crew/skills/, and project skills in .pi/messenger/crew/skills/. The planner sees a compact index of everything discovered and can tag tasks with relevant skills; workers see tagged skills as recommended alongside the full catalog and load only what they need. The README states that zero tokens are spent until a worker actually needs the knowledge.

    Configuration and Model Control

    Crew configuration lives in ~/.pi/agent/pi-messenger.json and supports per-role model overrides, concurrency limits and a hard ceiling of ten workers, review settings, dependency scheduling mode, and coordination verbosity levels of none, minimal, moderate, or chatty. Model strings accept provider/model format for explicit provider selection and a :level suffix for inline thinking control. Per the documented defaults, the planner and reviewer run on anthropic/claude-opus-4-6 while workers and the plan-sync analyst run on anthropic/claude-haiku-4-5. The README warns that Crew spawns multiple LLM sessions in parallel and can burn tokens quickly, recommending a cheap worker model to start.

    Update: v0.15.0 and the Team Layer

    The latest release is v0.15.0, published July 30, 2026. Its release notes describe an optional Team layer adding reusable profiles, a project charter and memory, role-aware tasks, approval gates, worker context, and overlay signals, along with a team.setup action for first-run configuration and task.revise guidance for rejected approval-gated tasks. The notes also state that Team roles and sample profiles were aligned with the packaged pi-subagents role vocabulary while Crew remains the execution engine, and that activity-feed reads were rewritten to scan only a bounded tail of feed.jsonl. The repository shows 659 stars and 50 forks as of early August 2026. The project is written almost entirely in TypeScript, licensed MIT, and distributed on npm as pi-messenger.

    Pi Messenger - 1

    Community Discussions

    Be the first to start a conversation about Pi Messenger

    Share your experience with Pi Messenger, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    MIT-licensed extension installable via npm.

    • Multi-agent presence and messaging
    • File and directory reservations
    • Crew task orchestration with parallel waves
    • Optional Team layer with approval gates
    • Crew Skills system

    Capabilities

    Key Features

    • Multi-agent presence tracking with status indicators (active, idle, away, stuck)
    • Direct messaging and broadcast between agents
    • File and directory reservations that block conflicting writes
    • Unified activity feed of edits, commits, test runs, and task events
    • Crew task orchestration across plan, work, and review phases
    • Parallel wave execution driven by a task dependency graph
    • Interactive /messenger terminal overlay with tabbed navigation
    • Crew Skills system for on-demand domain knowledge loading
    • Optional Team layer with reusable profiles, charter, memory, and approval gates
    • Stuck detection with peer notifications
    • Human-as-participant: interactive pi session appears in the agent list
    • File-based coordination with no daemon or server
    • Per-role model and thinking-level configuration
    • Auto-discovery of PRD, SPEC, and DESIGN files
    • Swarm spec-based task claiming and completion
    • Graceful worker shutdown with configurable grace period

    Integrations

    Pi coding agent
    npm
    Anthropic Claude models
    OpenRouter
    pi-subagents
    Git

    Ratings & Reviews

    No ratings yet

    Be the first to rate Pi Messenger and help others make informed decisions.

    Developer

    Ayoub Ghriss

    Ayoub Ghriss builds open-source developer tools focused on improving the usability of AI coding assistants. The i-have-adhd project applies cognitive accessibility principles to LLM output formatting, making Claude Code responses more direct and actionable. The project is MIT-licensed and community-driven.

    Read more about Ayoub Ghriss
    WebsiteGitHub
    2 tools in directory

    Similar Tools

    Nimbalyst icon

    Nimbalyst

    Open-source visual workspace for building with Claude Code and Codex — manage parallel agent sessions, edit work visually, and track tasks in one local desktop app.

    Paseo icon

    Paseo

    Orchestrate coding agents from your desktop, phone, terminal, or browser. Self-hosted, multi-provider, and open source.

    Emdash icon

    Emdash

    An open-source agentic development environment that lets you run multiple coding agents in parallel, each isolated in their own Git worktree.

    Browse all tools

    Related Topics

    Multi-agent Systems

    Platforms for creating and managing teams of AI agents that can collaborate.

    295 tools

    Agent Harness

    Infrastructure, orchestrators, and task runners that wrap around LLM coding agents — covering session management, context delivery, worktree isolation, architecture enforcement, and issue-to-PR pipelines.

    128 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    711 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions