Muse Spark 1.3 and Muse Code: Meta's Closed-Weights Pivot Comes for Your Terminal

·12 min read·Evergreen Tools Team
Developer typing code in a terminal-focused workflow

💡 Tool TipComparing Muse Code outputs or drafting API configs? Use Evergreen Tools' JSON Formatter to validate Meta Model API payloads, AI Token Counter to track 1M-context agent runs, and Markdown to HTML to publish your eval results. JSON Formatter, AI Token Counter, Markdown to HTML

On September 3, 2026 Meta's AI chief Alexandr Wang made a bold claim: Muse Spark 1.3, the latest upgrade of Meta's flagship model family, now matches Anthropic and OpenAI on model performance and represents the company's biggest jump yet. The model is rolling out in Muse Code -- Meta's terminal coding agent that entered early beta on August 5, 2026 with a 1-million-token context window -- and through the paid Meta Model API. The claim landed ahead of any independent benchmark confirmation and pushed Meta stock up 4 percent. For developers the story worth tracking is not one sentence of parity but Meta's decisive pivot from open-weights Llama to a closed-weights, agent-platform strategy.

1. Claim Before Evidence: What Developers Should Trust

Wang described Muse Spark 1.3 as the company's biggest jump so far on model performance and said it now matches Anthropic and OpenAI offerings. As of release day, no independent benchmark had confirmed the claim, and prediction markets put only 48 percent odds on a Meta model scoring 55 percent or higher on Humanity's Last Exam this year. The conclusion for developers is simple: treat every vendor parity claim as a hypothesis. Replay 20 of your own real tasks, compare pass rate and cost per task, then decide whether to move your default model.

// Muse Code entered early beta on August 5, 2026 with a
// 1-million-token context window -- a terminal coding agent
// built to run long, repository-scale sessions.
const museCode = {
  status: "early_beta",
  contextWindow: "1M tokens",
  interface: "terminal",
  strengths: ["agentic", "coding", "long_context"],
  rollout: "muse-spark-1.3",
};

2. Six Weeks of Closed-Weights Pivot

Muse Spark 1.3 caps a rapid-fire sequence: Meta retired its hosted Llama API on July 6; shipped Muse Spark 1.1, its first paid closed-weights model, on July 9; released the coding-focused Muse Spark 1.2 on August 5 with Muse Code entering early beta the same day; and published Muse Glimmer 30B under Apache 2.0 on August 10. Four major releases in five weeks, followed immediately by Spark 1.3 and reports of Hatch and Watermelon. The signal is unmistakable: Meta is betting on closed models plus distribution through its own apps, not on being the open-weights community leader.

Digital code streams representing model releases
{
  "model": "muse-spark-1.3",
  "reasoning": "standard",
  "max_reasoning_mode": "pending_safety_testing",
  "tools": [
    { "name": "terminal", "mode": "granted" },
    { "name": "file_edit", "mode": "granted" },
    { "name": "web_search", "mode": "ask" }
  ],
  "note": "paid access via Meta Model API; consumer surfaces
           follow through Meta AI and social apps"
}

3. Muse Code: A 1M-Context Terminal Agent

Muse Code is Meta's answer to Claude Code and Codex-style tools: terminal-first, 1M-token context, built for long repository-scale sessions. The 1.3 upgrade sharpens agentic and coding capabilities, with a max reasoning mode still pending safety testing. A new terminal agent option is not the big story by itself -- the big story is that the Meta Model API lets any developer pay per token, making Meta an infrastructure vendor for the coding-agent market rather than just a social platform.

// Alexandr Wang's parity claim -- Muse Spark 1.3 matches
// Anthropic and OpenAI -- deserves the same treatment as any
// vendor claim: replay it on your own task suite first.
const evalGate = {
  vendorClaim: "parity with Anthropic and OpenAI",
  independentBenchmark: "not yet confirmed (as of Sep 3, 2026)",
  ourAction: "run 20 real tasks, compare pass rate and cost",
  ship: function (results) {
    return results.passRate >= 0.8 &&
           results.costPerTask <= baseline.costPerTask * 1.2;
  },
};

// Stock moved 4 percent on the claim. Move your default model
// only on evidence, not on announcement-day momentum.

4. Business Logic: From Ads to Agents

Zuckerberg's three-part framework is now visible: keep advertising and recommendation as the cash cow, grow business agents and developer APIs as the mid-tier, and layer consumer agents like the reported Hatch on top as the newest, highest-margin bet. WhatsApp Business Agent already bills companies 2 USD per million tokens starting August 1, 2026. Seen through that curve, the rush to ship Muse Code and the API makes sense: Meta wants to claim the agent category before OpenAI, Google, and Anthropic lock it in, using distribution across billions of users as its wedge.

Keyboard close-up during agentic coding session

5. The Open and Closed Fork

Muse Glimmer 30B under Apache 2.0 shows Meta still plays at open for selected tiers, but the flagship road is closed. That sits in direct contrast to IFM's fully open K2 Horizon fleet, and it forces a strategy question for every enterprise: if flagship capability only ships through an API, are you willing to bind core workflows to one vendor's closed model? Governance-wise, write model allowlists and per-team autonomy into policy instead of letting each engineer choose.

// Wrap Muse Code the same way you wrap any agent: give it a
// bounded task, a repo slice, and a human approval point.
const repo = {
  url: "https://github.com/example/service",
  allowedPaths: ["src/", "tests/"],
  branch: "muse/feature-123",
};

function runAgent(task) {
  const plan = proposePlan(task, repo);
  await humanApprove(plan);
  const result = executeMuseCode(plan);
  return openReview(result);
}

6. What to Do Now

First, add Muse Spark 1.3 to your quarterly model eval and run the same task suite you run against Claude and Gemini. Second, do not change defaults on announcement-day momentum; change them on eval evidence. Third, when piloting Muse Code, reuse your existing agent guardrails: bounded repo paths, human approval points, cost caps. Finally, watch the September 23 Connect event. If independent benchmarks confirm the parity claim, Meta stops being a challenger and becomes a third pole -- that is the moment to re-evaluate your whole toolchain.

# Model governance: which teams may call which model, and at
# what autonomy level. Add Muse Spark 1.3 to the allowlist only
# after your eval gate passes on 20 representative tasks.
model_policy:
  muse-spark-1.3:
    teams: [platform, data]
    autonomy: review_required
    context_limit: 1M
    cost_cap_per_day: 120
  claude-code:
    teams: [all]
    autonomy: review_required
  gemini-3.8-flash:
    teams: [all]
    autonomy: standard

📌 Frequently Asked Questions

Does Muse Spark 1.3 really match Anthropic and OpenAI?

That is Meta AI chief Alexandr Wang's claim from September 3, 2026, made before any independent benchmark confirmation. Validate with your own task suite before switching default models.

Does Muse Spark 1.3 really match Anthropic and OpenAI?

That is Meta AI chief Alexandr Wang's claim from September 3, 2026, made before any independent benchmark confirmation. Validate with your own task suite before switching default models.

Does Muse Spark 1.3 really match Anthropic and OpenAI?

That is Meta AI chief Alexandr Wang's claim from September 3, 2026, made before any independent benchmark confirmation. Validate with your own task suite before switching default models.

Does Muse Spark 1.3 really match Anthropic and OpenAI?

That is Meta AI chief Alexandr Wang's claim from September 3, 2026, made before any independent benchmark confirmation. Validate with your own task suite before switching default models.

Does Muse Spark 1.3 really match Anthropic and OpenAI?

That is Meta AI chief Alexandr Wang's claim from September 3, 2026, made before any independent benchmark confirmation. Validate with your own task suite before switching default models.

What is Muse Code?

Meta's terminal coding agent that entered early beta on August 5, 2026 with a 1-million-token context window. The agentic and coding upgrades of Muse Spark 1.3 are rolling out in it.

What is Muse Code?

Meta's terminal coding agent that entered early beta on August 5, 2026 with a 1-million-token context window. The agentic and coding upgrades of Muse Spark 1.3 are rolling out in it.

What is Muse Code?

Meta's terminal coding agent that entered early beta on August 5, 2026 with a 1-million-token context window. The agentic and coding upgrades of Muse Spark 1.3 are rolling out in it.

What is Muse Code?

Meta's terminal coding agent that entered early beta on August 5, 2026 with a 1-million-token context window. The agentic and coding upgrades of Muse Spark 1.3 are rolling out in it.

What is Muse Code?

Meta's terminal coding agent that entered early beta on August 5, 2026 with a 1-million-token context window. The agentic and coding upgrades of Muse Spark 1.3 are rolling out in it.

Why did Meta retire the hosted Llama API?

Meta stopped serving Llama models from its hosted API on July 6, 2026, pivoting to the closed Muse family and an agent-platform strategy built on paid APIs, developer distribution, and consumer agents.

Why did Meta retire the hosted Llama API?

Meta stopped serving Llama models from its hosted API on July 6, 2026, pivoting to the closed Muse family and an agent-platform strategy built on paid APIs, developer distribution, and consumer agents.

Why did Meta retire the hosted Llama API?

Meta stopped serving Llama models from its hosted API on July 6, 2026, pivoting to the closed Muse family and an agent-platform strategy built on paid APIs, developer distribution, and consumer agents.

Why did Meta retire the hosted Llama API?

Meta stopped serving Llama models from its hosted API on July 6, 2026, pivoting to the closed Muse family and an agent-platform strategy built on paid APIs, developer distribution, and consumer agents.

Why did Meta retire the hosted Llama API?

Meta stopped serving Llama models from its hosted API on July 6, 2026, pivoting to the closed Muse family and an agent-platform strategy built on paid APIs, developer distribution, and consumer agents.

Can developers use Muse Spark 1.3 today?

Yes, via paid access through the Meta Model API, with rollout into Muse Code. Consumer surfaces through Meta AI and social apps follow, and a max reasoning mode awaits safety testing.

Can developers use Muse Spark 1.3 today?

Yes, via paid access through the Meta Model API, with rollout into Muse Code. Consumer surfaces through Meta AI and social apps follow, and a max reasoning mode awaits safety testing.

Can developers use Muse Spark 1.3 today?

Yes, via paid access through the Meta Model API, with rollout into Muse Code. Consumer surfaces through Meta AI and social apps follow, and a max reasoning mode awaits safety testing.

Can developers use Muse Spark 1.3 today?

Yes, via paid access through the Meta Model API, with rollout into Muse Code. Consumer surfaces through Meta AI and social apps follow, and a max reasoning mode awaits safety testing.

Can developers use Muse Spark 1.3 today?

Yes, via paid access through the Meta Model API, with rollout into Muse Code. Consumer surfaces through Meta AI and social apps follow, and a max reasoning mode awaits safety testing.

How should we evaluate Muse Code before adopting it?

Run the standard agent evaluation: the same real task set compared on pass rate and cost, bounded repo paths, human approval points, and cost caps, then add the model to your governance allowlist only after the gate passes.

How should we evaluate Muse Code before adopting it?

Run the standard agent evaluation: the same real task set compared on pass rate and cost, bounded repo paths, human approval points, and cost caps, then add the model to your governance allowlist only after the gate passes.

How should we evaluate Muse Code before adopting it?

Run the standard agent evaluation: the same real task set compared on pass rate and cost, bounded repo paths, human approval points, and cost caps, then add the model to your governance allowlist only after the gate passes.

How should we evaluate Muse Code before adopting it?

Run the standard agent evaluation: the same real task set compared on pass rate and cost, bounded repo paths, human approval points, and cost caps, then add the model to your governance allowlist only after the gate passes.

How should we evaluate Muse Code before adopting it?

Run the standard agent evaluation: the same real task set compared on pass rate and cost, bounded repo paths, human approval points, and cost caps, then add the model to your governance allowlist only after the gate passes.