Multiplayer AI coding. Open source.
A live room where several people and several agents build the same project, seeing the same thing at the same time.
┌─────────────────────┬──────────────────────────────────────────┐
│ taco-crew-21 │ [ SELECT ELEMENT ] D E + │
│ 3 IN THE ROOM ├──────────────────────────────────────────┤
│ │ THE APP THE BACK │
│ ● agente-1 │ ┌──────────────────────────────────────┐ │
│ writing Nav.tsx │ │ │ │
│ ○ agente-2 idle │ │ your app, moving live
│ │ │ │ │
│ ───────────────── │ │ ↖ donscanor │ │
│ D Donscanor │ │ ↖ your teammate │ │
│ @agente make the │ │ │ │
│ header red │ └──────────────────────────────────────┘ │
│ │ HISTORY ● ● ● ● ● NOW │
│ AI agente-1 │ │
│ Done. │ │
└─────────────────────┴──────────────────────────────────────────┘
git clone https://github.com/ErickUser1/multi
cd multi
npm install
npm startOpen http://localhost:4000, create a room, ask an agent for something. It'll ask for your API key , that's the whole setup.
Needs Node 22+, and Docker for isolation.
npm run compartirPrints a public link. Send it and they walk in. nothing to install on their side.
While that runs your machine is on the internet, and anyone with the link can enter any room.
Ctrl+Cwhen you're done.
Every work tool of the last two decades won by going multiplayer. Google Docs beat Word. Figma beat Photoshop.
AI coding hasn't had that moment. You open a chat, type a prompt, get an answer in a box only you can see. Two people building the same thing means two private threads, two agents, and finding out you diverged three days later.
Multi makes the project the place you're in, not the file you pass around.
The idea comes from Multiplayer AI (Aaron Epstein, YC RFS).
@agenteto talk to an agent. Without the mention, the chat is just people, you can think out loud without anyone starting to work.- Anyone can interrupt any agent. Your teammate asked for a red header, you see it going wrong:
@agente-1 make it bluestops it right there. - Several agents at once. They work in parallel; the engine keeps them from stepping on each other.
- Point and talk. Click an element in the preview, everyone sees your selection, and what you ask applies to it.
- The history belongs to the room. Every agent turn is a point you can go back to.
Everyone brings their own key and pays only for what they ask. In one room, one person can be on Claude, another on a free model, another on a local one.
Anthropic · OpenRouter · OpenAI · Groq · DeepSeek · Ollama
Your key lives in your browser and in the server's memory while you're connected, never on disk, never inside the container, never visible to anyone else in the room.
Each room is a folder with its own git, isolated in its own container. The agent is hand-written. no agent framework, no model SDK — and rooms start empty: it scaffolds whatever stack you ask for.
Full walkthrough in E2E.md · What's missing and why in ROADMAP.md · Both in Spanish.
The UI, code, comments and commits are in Spanish. This README is in English so the project can be found, but if you open keyed-mutex.ts you'll read "misma clave hace fila."
Deliberate, not an oversight. PRs in either language. just keep the file you touch consistent with itself.
See CONTRIBUTING.md. MIT licensed.