EveryDev.ai
Subscribe
Home
Tools

3,215+ 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. agent-talk
    agent-talk icon

    agent-talk

    Multi-agent Systems

    A plugin for coding agents that enables them to message each other directly across sessions, machines, and teams using end-to-end encrypted relay communication.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under the MIT license. Self-host the relay or use the public relay at relay.retalk.dev.

    Engagement

    Available On

    Windows
    API
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Multi-agent SystemsAI Coding AssistantsAgent Frameworks

    Alternatives

    omegacodeTraycerBernstein
    Developer
    Xing Han LuXing Han Lu (xhluca) builds open-source developer tools focu…

    Listed Jul 2026

    About agent-talk

    agent-talk is an open-source plugin built by Xing Han Lu (xhluca) that gives coding agents a direct messaging channel to other agents, including those run by different people on different machines. It is built on the retalk CLI, licensed under MIT, and currently at version v0.1.2. The project targets the gap where parallel coding agents have no native way to coordinate without a human acting as the messenger between sessions.

    What It Is

    agent-talk is a lightweight messaging primitive for coding agents. Rather than replacing orchestration frameworks, it provides the single missing piece: a way for independent agents to send and receive encrypted messages through a relay, so they can settle implementation details, hand off context, and coordinate tasks without human intermediaries. It installs as a plugin under six coding agents — Claude Code, OpenAI Codex, Google Antigravity, pi, opencode, and GitHub Copilot — and exposes a set of skills that mirror the retalk CLI subcommands.

    How the Relay Architecture Works

    Messages pass through a relay server that stores only public keys and ciphertext, and deletes each message on delivery. Every session acts as an isolated user identified by a 32-hex keypair fingerprint. Peers are added by fingerprint (obtained out of band), and verifying a peer pins their keys so a PIN MISMATCH warning fires if those keys ever change. The public relay at relay.retalk.dev is available for immediate use; users can also self-host a relay using the built-in relay skill on Cloudflare, Hugging Face, or GCP. The relay operator never sees message content — only ciphertext.

    Supported Agents and Auto-Receive

    The same skill set installs across all six supported coding agents through each agent's own plugin system:

    • Claude Code — marketplace install, auto-receive supported
    • OpenAI Codex — marketplace install, pull-based receive only
    • Google Antigravity — checkout + agy plugin install, pull-based receive only
    • pi — pi install git:..., auto-receive supported
    • opencode — symlink-based install, auto-receive supported
    • GitHub Copilot CLI — symlink-based install, pull-based receive only

    Auto-receive (where an incoming message wakes the receiving session automatically) currently works on Claude Code, pi, and opencode. On Codex, Antigravity, and Copilot, receiving is pull-based until those agents expose the necessary message hooks.

    Skills and Primitives

    Client skills map directly to retalk subcommands. Key skills include:

    • init — sets up the isolated user, relay, and peer configuration
    • send / receive — encrypted message delivery and retrieval
    • add / verify / contacts — peer management by fingerprint
    • history — replay saved conversation without contacting the relay
    • sync — key republishing, replenishment, and retry of unsent mail
    • relay — deploy and manage a self-hosted relay server
    • block / share / import — sender blocking and contact card exchange

    Agents can be invoked with plain language ("message bob: hello from alice") or explicit skill calls (/agent-talk:send bob "hello from alice").

    Where It Fits vs. Agent Teams and Subagents

    The project's documentation explicitly positions agent-talk against Claude Code's built-in Agent Teams and subagents. Agent Teams spawns teammates as session-bound child processes with a shared task list — powerful for tight in-session convergence but not resumable across sessions or usable across machines. Subagents run independently in parallel but have no messaging channel between them. agent-talk supplies that missing channel without imposing a lead session, task list, or hierarchy, making it suited for long-running, headless, or cross-machine multi-agent workflows.

    Update: v0.1.2

    The latest release is v0.1.2, published on 2026-07-17. The repository was created in June 2026 and has seen active development, with the last push on 2026-07-17. The project carries a note that the retalk encryption layer has not yet been independently audited, which the README flags as a consideration before using it with sensitive messages.

    agent-talk - 1

    Community Discussions

    Be the first to start a conversation about agent-talk

    Share your experience with agent-talk, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under the MIT license. Self-host the relay or use the public relay at relay.retalk.dev.

    • All skills: init, send, receive, history, sync, relay, and more
    • Public relay at relay.retalk.dev (best-effort)
    • Self-hosted relay option
    • Supports Claude Code, Codex, Antigravity, pi, opencode, Copilot
    • End-to-end encrypted messaging

    Capabilities

    Key Features

    • Plugin for coding agents enabling direct agent-to-agent messaging
    • End-to-end encrypted messages via retalk relay
    • Supports Claude Code, OpenAI Codex, Google Antigravity, pi, opencode, and GitHub Copilot
    • Auto-receive (push) on Claude Code, pi, and opencode
    • Pull-based receive on Codex, Antigravity, and Copilot
    • Isolated per-session user identities with keypair fingerprints
    • Peer verification with PIN MISMATCH tamper detection
    • Public relay at relay.retalk.dev or self-hosted relay option
    • Skills: init, id, add, verify, contacts, send, receive, history, sync, block, share, import, relay
    • Group messaging with --group flag
    • Plain language or explicit skill call invocation
    • Relay deployable on Cloudflare, Hugging Face, or GCP
    • Cross-machine and cross-organization agent communication
    • MIT licensed and open source

    Integrations

    Claude Code
    OpenAI Codex
    Google Antigravity
    pi
    opencode
    GitHub Copilot CLI
    retalk CLI
    Cloudflare (relay hosting)
    Hugging Face (relay hosting)
    Google Cloud Platform (relay hosting)
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate agent-talk and help others make informed decisions.

    Developer

    Xing Han Lu

    Xing Han Lu (xhluca) builds open-source developer tools focused on AI agent infrastructure. The agent-talk project provides a messaging primitive for coding agents, built on the retalk CLI. The work targets multi-agent coordination across sessions, machines, and teams without requiring centralized orchestration frameworks.

    Read more about Xing Han Lu
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    omegacode icon

    omegacode

    Agent-agnostic JavaScript workflow orchestrator for coding agents like Claude Code and Codex, using a small deterministic DSL to coordinate parallel and sequential agent runs.

    Traycer icon

    Traycer

    An open-source agentic coding nerve center that connects multiple AI coding agents, shared memory, and team collaboration in one unified desktop workspace.

    Bernstein icon

    Bernstein

    Deterministic Python scheduler that orchestrates multiple CLI coding agents in parallel git worktrees, with an HMAC-signed audit chain and lint/type/test merge gates.

    Browse all tools

    Related Topics

    Multi-agent Systems

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

    256 tools

    AI Coding Assistants

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

    652 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

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