CopilotKit released OpenMuse on September 22, 2026 — an MIT-licensed, self-hostable personal-agent template with its own persistent browser, an optional sandboxed Linux terminal, and real Gmail/Calendar integration, positioned explicitly as an open alternative to closed personal-agent products. The launch post from CopilotKit CEO Atai Barkai quote-tweeted Meta's own Muse announcement directly, making the comparison the project is inviting unambiguous.
TL;DR
| Question | Answer |
|---|---|
| What is it? | A self-hostable personal-agent template — browser, terminal, files, task memory |
| License? | MIT |
| Built on? | React Native (iOS, Android, web), AG-UI, CopilotKit |
| Model backends? | OpenAI, Anthropic, or Google — your own API key |
| Requires an account? | No, for local exploration; yes (Google OAuth) for real Gmail/Calendar use |
| Where's the code? | github.com/CopilotKit/OpenMuse |
| Stars at launch coverage | 890 |
What's actually implemented in the alpha
OpenMuse's README is unusually explicit about the line between "verified working" and "roadmap," which is worth taking at face value rather than the more common pattern of marketing copy blurring the two:
| Surface | What runs today |
|---|---|
| Chat | Streamed agent responses, inline email/browser/PDF/plan/finance result cards, a visible follow-up queue, retained drafts |
| Agent computer | Persistent browser profiles with a takeover console; optional isolated Linux terminal with saved command receipts and editable workspace files |
| Activity | Durable task plans with pause/resume/cancel/retry and approvals; SQL-based leases recover interrupted work after a crash or restart |
| Documents | Full pipeline from email attachment → PDF → form values → filled copy → reviewed reply, with native/web PDF viewing |
| Gmail & Calendar | Full Google OAuth integration, complete mail threads, drafts, calendar event creation with review before sending |
| Finance | CSV import to generate a categorized spending summary |
Explicitly not yet built, per the project's own roadmap: health, bank, and social media connectors; mobile device push notifications; voice interaction; generated executable tools; and automatic reservations or payments. That last exclusion is worth noting specifically — the project draws a hard line at agent-initiated financial transactions without explicit per-action human review, which is a more conservative default than some competing personal-agent products claim to offer.
The sandboxing details that matter
For anyone evaluating this specifically because of the "runs commands on its own" pitch, the actual security boundaries are documented in more detail than most open-source agent projects bother with. The Linux terminal runs in a nonroot Docker container with no host-directory mounts and no credentials passed in — a named Docker volume is the only thing that persists between sessions, and terminal networking is disabled entirely, meaning any public web access the agent needs goes through the separate, token-protected browser worker instead of the terminal directly. Commands inside that container have a 30-second execution limit, with saved output and exit-code receipts for every run. That's a meaningfully tighter default sandbox than "give the agent shell access and hope," and it's a useful reference architecture for anyone building a similar tool-use system regardless of whether they use OpenMuse itself.
Positioning against closed alternatives
CopilotKit's framing draws a direct, if implicit, contrast with Meta's Muse — a closed, hosted personal-agent product Meta launched earlier in September 2026 with the tagline "your personal AI agent that gets things done." OpenMuse's pitch is the inverse on every axis that matters for a technical audience: self-hosted rather than hosted, MIT-licensed and auditable rather than closed, and compatible with any of the three major model providers rather than locked to one company's models. That positioning also explains the explicit "OpenBot compatibility" section in its own documentation — OpenMuse ships a disabled, contract-tested adapter for OpenBot's interfaces, signaling an intent toward interoperability with the broader open personal-agent ecosystem rather than building an isolated silo.
The durable-task-recovery detail worth understanding
One implementation detail buried in OpenMuse's architecture is worth pulling out specifically because it addresses a failure mode most hobbyist agent projects ignore entirely: what happens to a long-running task if the process managing it crashes or restarts mid-execution. OpenMuse uses SQL-based leases to track task ownership, meaning an interrupted task can be picked back up by a task worker after a restart rather than silently vanishing or, worse, being picked up and re-executed from scratch by a second worker running in parallel with the first (a classic distributed-systems bug that produces duplicate side effects — sending the same email twice, for instance). The project's own documentation is explicit about the resulting guarantee and its limits: "no hidden retry occurs after an uncertain external write. Review its provider outcome before creating a replacement." That's a conservative, correctness-first design choice — rather than silently guessing whether a partially-completed external action (like a sent email or a calendar write) succeeded and automatically retrying, the system surfaces the uncertainty and asks for explicit human review before taking any follow-up action.
Why a React Native, cross-platform base matters for a personal agent specifically
OpenMuse's choice to build on React Native for iOS, Android, and web from a single shared codebase, rather than three separate native implementations, is a practical decision worth noting for anyone considering building something similar. A personal-logistics agent is close to useless if it only works on one device a person happens to be near — the entire value proposition depends on being reachable from whichever device is at hand when a task or notification comes up, whether that's a phone during a commute or a laptop at a desk. Building three separate native apps to cover that requirement is a substantially larger engineering commitment than most open-source personal-agent projects are willing to take on, which is likely part of why genuinely cross-platform open-source personal-agent projects remain comparatively rare — OpenMuse's shared CopilotKit headless-hooks architecture across all three platforms is a meaningful engineering investment that lowers the bar for anyone building on top of it specifically, rather than starting a cross-platform agent app from scratch.
Honest limitations
- This is an alpha release, and the project's own documentation is explicit that live features — Google account integration, CopilotKit Intelligence persistence — require their own configuration and are not guaranteed production-hardened; the README specifically flags this deployment model as single-owner, not multi-tenant.
- Build scripts export JavaScript/Hermes bundles, not signed app binaries — getting this running as an actual installed mobile app requires additional platform-specific work beyond what the repository provides directly.
- All capability claims in this post come from the project's own README and CHANGELOG, not independent third-party testing of the agent's actual real-world reliability over extended use.
The CopilotKit ecosystem context
OpenMuse isn't CopilotKit's only project in this space, and understanding it as part of a broader agent-infrastructure ecosystem the company is building is useful context for evaluating its likely longevity and support trajectory. CopilotKit's core business is providing agent-UI infrastructure — the AG-UI protocol this project is built on — to other companies building agent products, and OpenMuse functions partly as a flagship reference implementation demonstrating what a full, production-shaped agent application built on that infrastructure looks like end to end. That's a meaningfully different situation than a typical hobbyist open-source project maintained in someone's spare time: OpenMuse has a direct, ongoing commercial incentive behind its continued development, since it's simultaneously serving as marketing and a technical proving ground for CopilotKit's own paid infrastructure offering. Whether that incentive translates into sustained long-term maintenance is unproven this early, but it's a more grounded basis for cautious optimism than most single-maintainer open-source agent projects can claim.
What this means for builders
If you want to experiment with a personal-agent architecture without committing to a closed platform's data model, OpenMuse's documented sandbox boundaries (nonroot container, no host mounts, disabled terminal networking) and its clear separation of what's actually implemented versus roadmap make it a reasonable, honestly-documented starting point rather than a project overselling its current state. The Linux computer's sandboxing approach specifically — bounded container, saved receipts, hard command timeouts — is worth studying as a reference pattern even if you build your own agent from scratch rather than using OpenMuse directly.
Trying it yourself: the fastest path to a first impression
For anyone who wants a hands-on read on OpenMuse rather than relying on this summary, the project's own quick-start path is genuinely fast to try — cloning the repository and running the local sample app requires no model API key, no Google account, and no Docker setup at all, since the sample mode ships with fictional data and a local, unauthenticated task-completion demo built specifically for this kind of first-look evaluation. That's a meaningfully lower barrier to forming an independent opinion than most agent projects offer, where a real evaluation typically requires committing API keys and cloud credentials before you can see anything working at all. Starting there, before deciding whether to configure a real model provider and live Google integration, is the most efficient way to judge whether the project's actual interaction design matches what this post describes.
Related on explainx.ai
- Google Labs Launches "CC," an AI Agent for Running a Household — a closed, hosted comparison point for the same personal-agent category
- What Is Harness Engineering for AI Agents?
- Unreal Agent: An Async Tool-Calling Harness That Cuts Coding-Agent Costs 40% — another recent open-source agent-infrastructure release
Primary sources: Atai Barkai on X, September 22, 2026; OpenMuse on GitHub.
This post reflects OpenMuse's repository state and documentation as of September 23, 2026. Features and stability are subject to change during the alpha phase.
