Mark Zuckerberg announced Muse Code in beta on X the evening of August 5, 2026, with AI at Meta posting matching coverage the following morning. It's a terminal coding agent — Meta's answer to Claude Code, OpenAI's Codex, and Google's Antigravity CLI — and the first coding-specific product to ship from Meta Superintelligence Labs (MSL). It runs on a new model, Muse Spark 1.2, an upgrade over July's Muse Spark 1.1.
TL;DR — what people are asking
| Question | Answer |
|---|---|
| What is it? | A terminal coding agent — plans, writes, and validates changes across large repos |
| What model powers it? | Muse Spark 1.2, a coding-focused update to Muse Spark |
| Who shipped it? | Meta Superintelligence Labs — first coding agent from that org, per Alexandr Wang |
| Install? | curl -fsS https://dev.meta.ai/install.sh | bash |
| Cost? | "Low-cost to get started" — default contributor tier, reportedly ~$0.10/M input tokens |
| Open source? | Unconfirmed — Zuckerberg: "I'll have more to share on that soon" |
| How does it parallelize? | Background sub-agents in isolated Git worktrees; your working copy stays untouched |
| Crash recovery? | Every action hits a local event log before executing — resumes exactly where it left off |
| How does it benchmark? | Behind Claude Code (Opus 5) on Meta's own charts, ahead of Codex, Grok Build, Antigravity CLI |
What is Muse Code?
Zuckerberg's announcement post is the clearest primary-source definition:
"Releasing Muse Code in beta today. It's a terminal coding agent that takes on complete software engineering tasks across large repos: planning changes, writing code, validating the results. Powered by Muse Spark 1.2, a coding-focused model update."
AI at Meta's own post frames it similarly, adding a phrase worth underlining — "long-horizon software engineering":
"Introducing Muse Code (beta), a terminal coding agent built for long-horizon software engineering, powered by our new Muse Spark 1.2 model. Muse Code plans, implements, and validates complex, multi-file changes across large repositories with persistent sub-agents..."
That "long-horizon" framing matters. It puts Muse Code in the same category as loop engineering and goal-mode agents — tools built to stay on a task for hours, not just answer single prompts — rather than an autocomplete-style assistant. It's also the same category explainx.ai tracks in the agent harness fundamentals guide: a terminal-native orchestration layer wrapped around a model, managing context, tool calls, and verification.
Alexandr Wang, Meta's Chief AI Officer and head of Meta Superintelligence Labs (and founder of Scale AI), confirmed the org behind it directly:
"muse code in beta is live. first coding agent from msl, built on muse spark 1.2."
How does the sub-agent worktree isolation work?
The most technically distinctive claim in the launch is how Muse Code parallelizes work. Per Zuckerberg's thread:
"Muse Code runs specialized background agents that stay active your whole session, so they build up context over time instead of starting from scratch on every task. When a job is big enough, it fans out to separate sub-agents working in parallel in isolated worktrees. Your working copy is never touched."
Breaking that into its two mechanisms:
- Persistent background agents. Instead of a fresh context window per task, Muse Code keeps specialized agents alive for the whole session, so context — decisions made, files already inspected, patterns already learned about the repo — carries forward instead of resetting.
- Git worktree fan-out. When a task is large enough to split, Muse Code spins up separate sub-agents that each work in their own isolated worktree — a Git primitive that lets multiple branches check out to different directories simultaneously without touching the primary working copy. That's the same mechanism OpenCode's desktop client and several other harnesses use to run parallel agent sessions without collisions.
Zuckerberg's stated test result: Muse Code building six features for a game simultaneously with no collisions between sub-agents — a concrete claim, though (like most vendor demos) not independently reproduced yet.
Auditability — the event log and crash recovery
A second architectural claim, less flashy but arguably more consequential for production use:
"Auditable by design. Every model call, tool run, and edit hits a local event log before it executes. If it crashes mid-task, it picks up exactly where it left off from that log. No lost work and no re-prompting."
This is a write-ahead-log pattern applied to agent actions: log the intent, then execute, so a crash mid-task doesn't lose state — the agent replays from the log instead of the user re-explaining the task from scratch. It's a direct answer to one of the most common complaints about long-running coding agents (Claude Code's own /loop and goal-mode users hit this too): a crash or dropped session mid-task used to mean starting over.
The kernel optimization demo
Zuckerberg also shared a stress-test result meant to demonstrate long-horizon autonomy, not just correctness on short tasks:
"We pointed Muse Spark 1.2 at a kernel optimization task and let it run. 1,000+ tool calls over 24 hours on NVIDIA Hopper. It kept finding substantial improvements well beyond the initial exploration phase."
Twenty-four hours and 1,000+ tool calls unattended is a meaningfully longer leash than most demoed agent runs — closer to the multi-hour benchmark work explainx.ai covered in the 24-hour kernel/coding agent context than a typical single-session coding task. No independent verification of the specific speedup is public yet; treat it as a vendor-reported result until third-party benchmarks confirm.
How much does Muse Code cost?
Zuckerberg's own line on pricing is short:
"Pricing: It's easy and low-cost to get started. Install Muse Code with one line and you can start on our contributor tier."
Alexandr Wang's post adds the install command directly:
curl -fsS https://dev.meta.ai/install.sh | bash
The contributor tier is the mechanism worth understanding. Per public commentary around the launch — not a primary Meta pricing page, so treat this as reported rather than confirmed — the contributor tier offers steep discounts (roughly $0.10 per million input tokens versus about $1.25/M on the standard tier) in exchange for allowing Meta to use your usage data for model training. That's a familiar trade in the open-weight and free-tier AI world, but worth being explicit about before you point Muse Code at a proprietary codebase: cheap-or-free access is frequently priced in data, not just dollars. Confirm the exact terms and toggle settings in Meta's official docs before running it on anything sensitive.
Is Muse Code open source?
Unconfirmed. When asked directly on X "Will Muse Code be open source?", Zuckerberg's full reply was:
"I'll have more to share on that soon."
That's neither a yes nor a no — closer to "not decided publicly yet" than a roadmap commitment. Meta has both open-weighted (Llama family) and fully closed (Muse Spark family) release histories, so either outcome is plausible. Muse Spark 1.2, the model underneath Muse Code, is closed regardless of what happens with the harness itself.
How does Muse Code compare to Claude Code, Codex, and Antigravity on benchmarks?
Meta published a benchmark comparison chart alongside the launch. These are Meta's own self-selected comparisons on Meta's own chart — the standard caveat applies: Meta chose which models, which harnesses, and which configuration ("max," "high") to compare against. Treat this as a vendor's framing of its own launch, not an independent leaderboard, and validate on your own repository before switching production tooling — the same caution explainx.ai gave on Muse Spark 1.1's launch charts.
Terminal-Bench 2.1
| Model (harness) | Score |
|---|---|
| Opus 5 (max, Claude Code) | 86.7% |
| Muse Spark 1.2 (Muse Code) | 82.9% |
| GPT 5.6 Terra (max, Codex) | 81.8% |
| Grok 4.5 (high, Grok Build) | 81.6% |
| Gemini 3.6 Flash (high, Antigravity CLI) | 78.9% |
| Muse Spark 1.1 (mini-swe-agent) | 76.2% |
DeepSWE 1.1
| Model (harness) | Score |
|---|---|
| Opus 5 | 65.0% |
| GPT 5.6 Terra | 64.8% |
| Muse Spark 1.2 | 59.3% |
| Grok 4.5 | 56.6% |
| Muse Spark 1.1 | 53.0% |
| Gemini 3.6 Flash | 40.0% |
Meta Internal Coding Bench
| Model | Score |
|---|---|
| Opus 5 | 79.4% |
| Muse Spark 1.2 | 70.6% |
| Muse Spark 1.1 | 68.3% |
| GPT 5.6 Terra | 65.4% |
| Gemini 3.6 Flash | 63.9% |
The consistent pattern: Muse Spark 1.2 trails Claude Opus 5 running in Claude Code on every benchmark Meta chose to publish, but comfortably beats its own predecessor, Muse Spark 1.1, and edges out GPT-5.6 Terra and Grok 4.5 on Terminal-Bench 2.1 specifically. For deeper background on what Terminal-Bench actually measures — 89 real terminal tasks, the Harbor evaluation framework, and why frontier models still cap out well short of 100% — see explainx.ai's Terminal-Bench 2.0 deep dive.
What is Muse Spark 1.2?
Muse Spark 1.2 is the third named release in Meta's Muse Spark line: Muse Spark (April 2026) → Muse Spark 1.1 (July 2026, Meta Model API preview, 1M-token context) → Muse Spark 1.2 (August 2026, coding-focused). Zuckerberg's framing of where it sits in Meta's roadmap:
"Muse Spark 1.2 is our next step as we push toward frontier, with larger, more capable models on the way. Install it, use it, tell us what you think."
Unlike Muse Spark 1.1's broad multimodal/agentic pitch, Muse Spark 1.2 is explicitly coding-focused — the model update exists to power Muse Code specifically, not a general-purpose multimodal assistant refresh.
Muse Code vs Muse Image/Video — different Muse product lines
It's easy to conflate Meta's Muse branding across products. Muse Code (terminal coding agent, Muse Spark 1.2) is a completely separate line from Muse Image and Muse Video (agentic media generation, launched July 7, 2026). Same "Muse" brand umbrella from Meta Superintelligence Labs, different product category — one writes code, the other generates images and video.
The concurrent news cycle — separate stories, same week
Muse Code's beta landed in a busy week for AI news that's worth naming without conflating: reports of leadership changes at Google DeepMind and an OpenAI security incident both surfaced around the same window. None of those stories are related to Muse Code's launch — they're coincidental timing, not a connected narrative — but if you're triaging AI news this week, keep the threads separate rather than reading them as one story.
Honest limitations to weigh before adopting
- Meta's own benchmarks put it behind Claude Code (Opus 5) on every published chart — a real, not marginal, gap on Terminal-Bench 2.1, DeepSWE, and Meta's internal bench.
- Pricing specifics are secondhand. The $0.10/M vs $1.25/M contributor-tier framing comes from public commentary, not a Meta pricing page — confirm exact numbers before budgeting.
- Open-source status is unresolved. Don't build a procurement decision around an assumption either way.
- It's beta. The kernel-optimization and six-feature-parallel demos are vendor-reported, not third-party reproduced yet.
- Data-training trade-off on the discount tier — cheap access reportedly comes with your usage data feeding training, worth reviewing before pointing it at proprietary code.
Where Muse Code fits among terminal coding agents
Muse Code is now a fourth major closed-source terminal coding agent alongside Claude Code, Codex, and Antigravity CLI — worth adding to any harness comparison you're running. See explainx.ai's ranked list of the top closed- and open-source agent harnesses for how it stacks up against the rest of the category on adoption and architecture, not just benchmark scores.
Related on explainx.ai
- Muse Spark 1.1 and the Meta Model API (July 2026)
- Muse Spark and personal superintelligence (April 2026)
- Meta Muse Image and Muse Video — agentic media generation
- Zuckerberg: The AI Future Is for Everyone (WSJ op-ed)
- Top 10 closed- and open-source agent harnesses (2026)
- Terminal-Bench 2.0: the AI agent benchmark that actually matters
- What is an agent harness? Complete guide
- What is loop engineering?
Official sources: Mark Zuckerberg on X (@finkd) · AI at Meta on X (@AIatMeta) · Alexandr Wang on X (@alexandr_wang) · dev.meta.ai
Details reflect Meta's August 5-6, 2026 X announcements for Muse Code beta and Muse Spark 1.2. Benchmarks are Meta's own self-published comparison set. Pricing figures for the contributor tier are reported via public commentary, not confirmed on an official Meta pricing page — verify current terms at dev.meta.ai before budgeting or standardizing tooling.
