Skip to main content

InterAgentMail

Support Cerberus Game Labs on Ko-fi

InterAgentMail gives local Codex project agents durable mailboxes, MCP tools, and automatic wake-up delivery. Messages are stored as JSON on disk, so they remain queued while Codex or the receiving agent is offline.

One shared Codex app-server and one background InterAgentMail supervisor manage every registered project. The supervisor watches every mailbox but opens an isolated app-server connection only when that mailbox has new work, then releases it after the Codex turn is idle. Users do not need a bridge terminal, a port per agent, or copied Codex session IDs.

Requirements

  • Python 3.10 or newer
  • The OpenAI Codex CLI installed, available on PATH, and signed in
  • Windows, macOS, or Linux; background operation is tested most heavily on Windows

Install

Install the isolated command-line application from PyPI with pipx:

pipx install cgl-interagentmail

Register one or more Codex projects, then start delivery:

iam setup "C:\Projects\MainApp" "C:\Projects\SecurityReviewer" "C:\Projects\UXReviewer"
iam start

Open the correct agent from any registered project:

cd C:\Projects\SecurityReviewer
iam open

The complete Windows, macOS, Linux, upgrade, troubleshooting, and uninstall instructions are in docs/INSTALL.md.

Browser messaging

Version 1.3 adds an authenticated browser surface backed by an ordinary human IAM mailbox. Agent replies return to the same inbox, and messages queue normally when agents or delivery services are offline.

Configure the default this-PC-only interface, choose a password when prompted, and start only its standalone companion process:

iam web setup MyMailbox --display-name "My Name"
iam web start

Open http://127.0.0.1:8787. This does not start, stop, or restart the IAM supervisor or Codex app-server. Use iam web status, iam web password, and iam web stop for its lifecycle.

LAN access is an explicit opt-in:

iam web setup MyMailbox --display-name "My Name" --lan --acknowledge-network-risk
iam web start

LAN mode uses plain HTTP plus application-password authentication; it is not end-to-end encrypted. Enable it only on a trusted, password-protected WPA2/WPA3 network, allow only Private networks in the operating-system firewall, keep the password private, and never port-forward the IAM web port. Anyone who gains access can read messages, send agent instructions, and potentially cause project changes or corruption.

Source code, releases, and issue tracking are hosted at https://github.com/cerberusgamelabs/cgl-interagentmail.

Everyday commands

iam status
iam doctor
iam report
iam user create ADDRESS
iam web setup ADDRESS
iam web start
iam web status
iam open [PROJECT]
iam restart
iam stop
iam stop --all
iam register [PROJECT ...]
iam unregister [PROJECT ...]
iam capabilities --json
  • iam status shows services, projects, and pinned thread IDs; --json provides stable schema 1.0 output.
  • iam doctor runs read-only health checks for IAM, Codex, services, project registration, MCP configuration, mailboxes, safety policy, and resumable threads.
  • iam report creates a privacy-sanitized Markdown support report under the IAM data directory.
  • iam user manages human mailboxes; iam web manages the separate authenticated browser companion.
  • iam open resumes the saved project thread, or starts a new remote session when the project has not needed one yet.
  • iam stop stops mail delivery but leaves the shared app-server running.
  • iam stop --all stops both IAM-managed background services.
  • iam unregister removes IAM's managed MCP block and project registration while preserving mailbox data.

Setup behavior

iam setup is safe to run again. It:

  1. Initializes the project's durable mailbox.
  2. Records its project directory and safety policy.
  3. Adds a clearly marked mcp_servers.interagentmail block to .codex/config.toml.
  4. Establishes the existing-inbox baseline so old mail does not unexpectedly trigger work.
  5. Lets the supervisor attach the project only when undelivered mail arrives; an active or approval-paused turn retains its own connection, and idle connections are released.

Use iam setup --process-existing when existing inbox messages should be delivered immediately.

Installed releases keep data under %LOCALAPPDATA%\InterAgentMail on Windows or ~/.local/share/interagentmail on macOS/Linux. Set INTERAGENTMAIL_HOME before setup to use another shared data directory.

Project folder basenames become mailbox addresses. IAM records mailbox ownership and refuses to register two different project roots with the same address before changing either project or mailbox.

Automation and reviewer platforms

Version 1.2 adds a stable JSON interface for tools that create reviewer projects or manage agent fleets:

iam capabilities --json
iam register "C:\Projects\SecurityReviewer" --json
iam status --json
iam doctor --project "C:\Projects\SecurityReviewer" --json
iam unregister "C:\Projects\SecurityReviewer" --json

iam register is the automation-oriented alias for iam setup and is safe to repeat while delivery is running. Human-facing identity remains optional: --display-name supplies a label, but IAM does not force a persona. See docs/INTEGRATION.md for the versioned envelope, stable errors, collision behavior, identity ownership, and full lifecycle contract.

Diagnostics and support reports

Run a read-only installation check at any time:

iam doctor

Warnings describe optional or currently stopped components. Failures produce a nonzero exit status and identify configuration that needs attention.

Create a report suitable for attaching to a support issue:

iam report

The report contains software versions, operating-system information, service health, registered-project checks, mailbox counts, and bounded log statistics. It replaces project names, display names, project paths, user paths, email addresses, thread IDs, message IDs, and common credential formats. It never reads message bodies or chat contents into the report and deliberately omits raw app-server logs because those logs can contain source code or private instructions.

Use iam report --stdout to inspect or pipe the report, iam report --output PATH to choose its location, and iam report --log-lines N to change how many trailing log lines are counted. Existing output files are preserved unless --force is supplied. Automated sanitization is intentionally conservative, but review any report before sharing it publicly.

Safety

New agents use workspace-write with on-request approvals. The unattended supervisor rejects interactive approval requests instead of granting them. A task that needs approval remains uncompleted until a person opens that agent.

Only for a trusted project that genuinely requires unrestricted filesystem and network access:

iam setup "C:\Projects\SecurityReviewer" --full-access

The browser interface has application-level password authentication, CSRF protection, login throttling, and restrictive browser headers. Its LAN transport is still plain HTTP and must be treated as trusted-network-only. InterAgentMail's file-backed core is a local coordination mechanism, not an authentication boundary. Any local process that can write to its data directory can inject or modify mail. Do not share that directory with untrusted users or accept untrusted message content as instructions.

Sending mail

Agents normally use the project-bound InterAgentMail MCP tools. People and fallback workflows can use the CLI:

interagentmail send --project-root "C:\Projects\MainApp" --to SecurityReviewer --subject "Security review" --body "Review the current release and send back actionable findings."

The receiving supervisor wakes the correct Codex thread. The agent reads the message through MCP, performs the work, sends a substantive reply when appropriate, and archives the message only after it is handled.

Protocol and low-level bridge details are in SYSTEM.md. Release history is in CHANGELOG.md.

Support

InterAgentMail is free and open source. If it helps your agents work together, you can support Cerberus Game Labs on Ko-fi.

License

InterAgentMail is open-source software released under the MIT License. Use it, modify it, distribute it, and build on it. Copyright 2026 Cerberus Game Labs.

Contributions are welcome; see CONTRIBUTING.md.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cgl_interagentmail-1.3.1.tar.gz (77.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cgl_interagentmail-1.3.1-py3-none-any.whl (54.9 kB view details)

Uploaded Python 3

File details

Details for the file cgl_interagentmail-1.3.1.tar.gz.

File metadata

  • Download URL: cgl_interagentmail-1.3.1.tar.gz
  • Upload date:
  • Size: 77.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cgl_interagentmail-1.3.1.tar.gz
Algorithm Hash digest
SHA256 b5a59c6e989d154eef9ea9b9532cf784a8afc1cd3a88bf8a5b03d76035daa50a
MD5 64dc75d93d8805d96821974bc60855b7
BLAKE2b-256 8ac450e9d1cea0896efe71621ffc228f86fe57e2e3fc6e9198cea355cd5540de

See more details on using hashes here.

Provenance

The following attestation bundles were made for cgl_interagentmail-1.3.1.tar.gz:

Publisher: publish.yml on cerberusgamelabs/cgl-interagentmail

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cgl_interagentmail-1.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for cgl_interagentmail-1.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fc0b9a92d4f0547a9d6d5e6c45722ea0a0342ec0511bf642b976b86ff855f5f4
MD5 704ff9ae9e76b6a453779889edb50146
BLAKE2b-256 48ed0e61c2a3a8a2b8daf5fa3e69cd268ae1c5c8a1f2df30b36a7b64ee373a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for cgl_interagentmail-1.3.1-py3-none-any.whl:

Publisher: publish.yml on cerberusgamelabs/cgl-interagentmail

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.4.0

2 files

This release

1.3.1 This release

2 files

1.3.0

2 files

1.2.0

2 files

1.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page