explainx.ainewsletter3.5k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

corporate training

support@explainx.ai

get started

Find your pathTake Free Evaluation

learn

pathways — start freeworkshopsbootcampscoursescertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsagentsllmsdesignsdictionaryagi trackerranks

company

aboutvisionmissionteaminstructorscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource libraryfor LLMsexplainx.ai kids

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportprivacytermsdata rightshow we create contentsubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

On this page

  • TL;DR — what people are asking
  • What is Muse Code?
  • How does the sub-agent worktree isolation work?
  • Auditability — the event log and crash recovery
  • The kernel optimization demo
  • How much does Muse Code cost?
  • Is Muse Code open source?
  • How does Muse Code compare to Claude Code, Codex, and Antigravity on benchmarks?
  • What is Muse Spark 1.2?
  • Muse Code vs Muse Image/Video — different Muse product lines
  • The concurrent news cycle — separate stories, same week
  • Honest limitations to weigh before adopting
  • Where Muse Code fits among terminal coding agents
  • Related on explainx.ai
← Back to blog

explainx / blog

Meta Muse Code: Terminal Coding Agent Powered by Muse Spark 1.2

Meta released Muse Code in beta August 5-6, 2026 — a terminal coding agent powered by Muse Spark 1.2 with parallel sub-agents, worktree isolation, and a crash-safe event log. Pricing, benchmarks vs Claude Code, and setup.

Aug 6, 2026·11 min read·Yash Thakker
Meta AIMuse CodeAgent HarnessMuse SparkAI Coding
go deep
Meta Muse Code: Terminal Coding Agent Powered by Muse Spark 1.2

Update — August 10, 2026: Meta open-weighted Muse Glimmer, a 30B agentic model distilled from Muse Spark, under Apache 2.0 — and both Zuckerberg and Alexandr Wang said open weights for Muse Spark 1.2, the model powering Muse Code below, are coming "soon" too. See the Muse Glimmer coverage for details.

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.

Weekly digest3.5k readers

Catch up on AI

Curated AI updates on agents, skills, and MCP — delivered to your inbox. Unsubscribe anytime.

TL;DR — what people are asking

table · 2 cols
QuestionAnswer
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:

  1. 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.
  2. 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:

bash
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, was closed at launch — but that's since shifted: on August 10, 2026, alongside the Muse Glimmer open-weight release, both Zuckerberg and Alexandr Wang said on X that open weights for Muse Spark 1.2 itself are coming "soon." No date has been confirmed, and Muse Code's own open-source status is still unresolved separately.

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

table · 2 cols
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

table · 2 cols
Model (harness)Score
Opus 565.0%
GPT 5.6 Terra64.8%
Muse Spark 1.259.3%
Grok 4.556.6%
Muse Spark 1.153.0%
Gemini 3.6 Flash40.0%

Meta Internal Coding Bench

table · 2 cols
ModelScore
Opus 579.4%
Muse Spark 1.270.6%
Muse Spark 1.168.3%
GPT 5.6 Terra65.4%
Gemini 3.6 Flash63.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

  1. 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.
  2. 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.
  3. Open-source status is unresolved. Don't build a procurement decision around an assumption either way.
  4. It's beta. The kernel-optimization and six-feature-parallel demos are vendor-reported, not third-party reproduced yet.
  5. 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.

Spotted something out of date? Let us know.
Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

Related posts

Aug 18, 2026

Is Codex Auto-Review Secretly Eating Your Usage? What's True

A 300+ upvote r/codex post claimed OpenAI silently switched on a hidden auto-review feature that burns "100,000 tokens to output 100" and ate 10.4 million tokens of one user's quota in a week. The top corrections in the same thread — the chart shows turns, not tokens; the reviewer runs on a cheap model; the feature is opt-in per OpenAI's own docs — tell a more complicated story than the headline. Here's what's verifiable and what isn't.

Aug 10, 2026

Meta Muse Glimmer: A 30B Open-Weight Agentic Model for Local AI

On August 10, 2026, Meta open-weighted Muse Glimmer — a 30B-parameter agentic model distilled from Muse Spark, quantized to run on a single 24GB or 32GB consumer GPU. Here's how it benchmarks against Qwen3.6-27B and Gemma4-31B, what DFlash speculative decoding actually does, and what Hacker News found running it on real hardware.

Aug 10, 2026

Spotify Xirp: A Vendor-Neutral Environment for AI Coding Agents

Spotify Engineering shipped Xirp, a tool for running dozens of AI coding agent sessions — across Claude Code, Gemini CLI, and Codex — in parallel, isolated git worktrees. Paired with Portal, it turns Spotify's internal developer platform into an agent command center. Here's what's confirmed, what's fuzzy, and how it stacks up against other multi-session harnesses.