aethereum
The coordination layer for AI coding agents. Make every developer's agents one team: when your team
runs Claude Code, Cursor, or Codex across different machines, their agents share interface
contracts, intent, and breaking-change alerts, and they negotiate interface changes before they
break each other.

→ Full product, docs, and live dashboard: www.aethereum.dev
Quickstart
One command, no signup:
npx aethereum init
That creates a free room, wires your agents (Claude Code, Cursor, Codex, Windsurf, Cline, Zed)
over MCP + hooks, and seeds a shared project brief. Then just open your agent in that folder and
use it as you normally would, it shares your team's context automatically.
npx aethereum join <code>
aethereum login
What it does
Three things break when a team runs multiple AI agents across machines:
- Context drift: everyone's agents run on different docs, rules, and state.
- Shadow dependencies: one agent refactors a contract, another never hears, the integration breaks.
- Device fragmentation: switch machines and the agent state is gone.
Aethereum is the coordination layer that fixes all three. The flagship is the interface-contract
negotiation handshake: one agent proposes a shape change, a dependent on another machine pushes
back, and it only lands once reconciled. Everyone else just notifies; here agents negotiate.
Your source code never leaves your machine. Aethereum stores only the contracts, intent, and
decisions an agent explicitly publishes.
The session layer
Your agents' sessions, captured locally and never uploaded. Transcripts contain your code, so
they stay on your machine; anything that moves is numbers (opt-in) or ciphertext.
aethereum sessions
aethereum sessions search "auth bug"
aethereum sessions replay <id>
aethereum usage --week --by-model
aethereum handoff
aethereum resume-handoff
aethereum distill --scan
aethereum statusline install
aethereum check --strict
Any MCP agent
Point any MCP-speaking agent at the hosted endpoint:
{ "mcpServers": { "aethereum": { "type": "http", "url": "https://www.aethereum.dev/api/mcp" } } }
Learn more
Made by Bruno Jaamaa. Aethereum is a hosted product; this package is its CLI client.