Meta Releases Muse Code with Muse Spark 1.2 Model

✍️ OpenClawRadar📅 Published: August 6, 2026🔗 Source
Meta Releases Muse Code with Muse Spark 1.2 Model
Ad

Meta has introduced Muse Code (beta), a terminal coding agent powered by the new Muse Spark 1.2 model. It's designed to handle complex software engineering tasks across large repositories, from planning to validation, and is available for macOS and Linux via a curl install script.

Async Background Agents

Muse Code runs a main agent loop but also spawns persistent async background agents that stay active for the entire session. Instead of being created per task, these agents maintain context and pick up next steps autonomously, communicating when needed. This design cuts down on redundant information gathering and reduces the need for manual steering on multi-step tasks.

Replay-Exact Runtime

A core feature is the local event log, which records every model call, tool run, approval, and edit. Because all actions are logged, the runtime is replay-exact and restart-safe: if the process crashes, it can resume exactly where it stopped. That makes long-running tasks viable without losing progress.

Bundled Skills

Muse Code ships with three default skills:

  • /plan — turns a task into an approval-gated plan
  • /grill — stress-tests the plan until it holds up
  • /goal — works toward successful completion of the objective
Ad

Muse Spark 1.2 Model

The underlying model, Muse Spark 1.2, is a coding-focused update over 1.1. Meta scaled up training compute on coding tasks and expanded training environment diversity. It also maintains strength in general agent tasks. The model was co-trained with Muse Code to ensure best performance in the harness, and it's trained on long-horizon coding tasks like whole-repository generation, large end-to-end projects, and auto-research.

Case Study: GPU Kernel Optimization

In a kernel optimization test, the agent ran for over 1,000 tool calls (up to 24 hours) on NVIDIA Hopper GPUs. It iteratively wrote, compiled, profiled, and improved GPU kernels for KDA and MLA workloads, with the model forbidden from importing third-party kernel libraries. Muse Spark 1.2 produced two-kernel Triton pipelines, achieving significant performance gains over baselines by applying optimizations like re-centering gated cumulative decay for KDA and reusing the shared KV latent for MLA.

Availability

Muse Spark 1.2 is available today in Muse Code and via Meta's platform. To install Muse Code, run:

curl -fsSL https://dev.meta.ai/install.sh | bash

📖 Read the full source: HN AI Agents

Ad

👀 See Also