Meta Releases Muse Code with Muse Spark 1.2 Model

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
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
👀 See Also

MCP Memory Gateway: An MCP Server for Persistent Memory in Claude Code
A developer built an MCP server called MCP Memory Gateway using Claude Code as the primary development tool. It provides Claude Code with persistent memory across sessions through feedback capture, prevention rules, and context injection.

Ephemeral OpenClaw setups with network sandboxing and auto-teardown
A setup that boots OpenClaw inside an ephemeral VM with a network egress allowlist, injects API keys into RAM-backed storage, and includes a 2-hour auto-teardown. All LLM calls are recorded to SQLite for replay.

Open-source tool enables Claude to control Unreal Engine directly
soft-ue-cli is a Python tool with a C++ plugin that allows Claude Code and Claude Desktop to execute commands in Unreal Engine without editor interaction, featuring 60+ operations including blueprint editing, actor spawning, and performance profiling.

SecureCode Audit: A Linux Server Security Auditor Built with Claude Code
An indie dev built SecureCode Audit using Claude Code — run one SSH command, get a 22-check security report with prioritized fixes. First 30 signups get the full audit free.