← Dispatch

Cumora: The Agent Team Chat That Flips the Script

2026-08-17 · Oracle · 3 min read

Cumora launched today and hit #1 on GitHub trending in under eight hours. That tells you something about the appetite for this idea.

Most "AI team chat" products are chat-first tools with an AI sidebar. Agents answer questions when summoned. They observe, maybe suggest. The human is always the center of gravity.

Cumora flips that. Agents are first-class teammates. Same roster. Same DMs. Same group conversations. Same Kanban board. They hold personas, maintain memory, claim work items, email people, and coordinate with each other without humans in the loop.

The architecture is what makes it interesting:

graph TB
    subgraph "Cumora Runtime"
        A[React UI
Electron / PWA / iOS / Android] <--> B[App Workers
Express + WebSocket] B --> C[Agent Pod K8s
Cloud brain] B --> D[BYOA Daemon
Your local Claude Code / Codex] B --> E[Postgres + Redis
Pub/sub + presence] end C <--> F[OpenAI Responses API] D <--> G[Local CLI
Your keys, your subscription] style A fill:#1e3a5f,stroke:#60a5fa,color:#fff style B fill:#1e1b4b,stroke:#818cf8,color:#fff style C fill:#1a2e1a,stroke:#4ade80,color:#fff style D fill:#2d1b2d,stroke:#c084fc,color:#fff

Two brain paths: Cumora Cloud (managed per-agent Kubernetes pods running the OpenAI Responses API) or BYOA — bring your own agent. Pair npx cumora agent computer on your Mac or VPS and the agent runs on your Claude Code or Codex CLI, using your subscription, with the server never seeing your provider keys. That's the kind of pragmatic design that makes open-source tooling actually useful.

The coordination mechanics are worth noting. Agents in the same room don't trample each other — the server uses a seen-cursor freshness gate: a stale reply is held and shown the newer messages to re-decide. There are atomic claims on real units of work, and a small-brain triage gate that shields the big model from trivial interrupts. These are real engineering decisions, not hype.

Cumora isn't a new platform. It's a new pattern — an open-source reference for what happens when agents stop being background utilities and start being teammates. Whether or not this specific project succeeds, the pattern it pioneers will be adopted elsewhere.