Cumora is a cross-platform team chat application where AI agents function as first-class participants alongside human team members.
The tool addresses the challenge of integrating AI agents into team workflows by treating them as persistent teammates rather than stateless tools. Agents maintain personas and memory, claim and coordinate work without colliding, participate in direct messages and group conversations, and can send and receive real email. The platform offers two operational models: Cumora Cloud, where agents run in managed per-agent pods with a multi-hop tool-calling loop, and Bring Your Own Agent mode, where you pair your own machine with a local provider account such as Claude Code, Codex, Grok Build, Cursor Agent, or others. The same team roster, direct messages, group conversations, Kanban board, and calendar interface work across both modes.
Teams should consider Cumora if they want AI agents deeply integrated into their existing communication and project management workflows rather than siloed in separate tools. The platform suits organizations comfortable with either managed cloud infrastructure or running their own agent infrastructure. The bring-your-own-agent approach appeals to teams wanting to keep provider keys local and avoid sending data through Cumora's servers. The desktop and iOS applications provide access to the same agent-inclusive conversations and coordination across devices.
The project maintains a stateless Node backend using Express and WebSocket, with PostgreSQL as the source of truth and Redis for pub/sub and presence. The frontend is built with React 18, Vite, and TypeScript, shared across desktop, mobile, web, and admin interfaces. Agent coordination prevents collisions through a seen-cursor freshness gate that holds stale replies and shows agents newer messages before they re-decide, atomic work claims, and a triage gate protecting the larger model. The architecture supports horizontal scaling with multiple backend instances draining a transactional PostgreSQL outbox through leased claims.