GadgetBond

  • Latest
  • How-to
  • Tech
    • AI
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Add GadgetBond as a preferred source to see more of our stories on Google.
Font ResizerAa
GadgetBondGadgetBond
  • Latest
  • Tech
  • AI
  • Deals
  • How-to
  • Apps
  • Mobile
  • Gaming
  • Streaming
  • Transportation
Search
  • Latest
  • Deals
  • How-to
  • Tech
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • AI
    • Anthropic
    • ChatGPT
    • ChatGPT Atlas
    • Gemini AI (formerly Bard)
    • Google DeepMind
    • Grok AI
    • Microsoft Copilot
    • OpenAI
    • Perplexity
    • xAI
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren W1
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Follow US
AIMetaTech

Meta’s new coding agent: Muse Code, powered by Muse Spark 1.2

Meta is launching a terminal-based coding agent designed to handle multi-hour, repository-scale tasks without losing its place.

By
Shubham Sawarkar
Shubham Sawarkar's avatar
ByShubham Sawarkar
Editor-in-Chief
I’m a tech enthusiast who loves exploring gadgets, trends, and innovations. With certifications in CISCO Routing & Switching and Windows Server Administration, I bring a sharp...
Follow:
- Editor-in-Chief
Aug 6, 2026, 4:59 AM EDT
Share
We may get a commission from retail offers. Learn more
Abstract dark illustration showing many thin blue lines and arrow-like shapes streaming from the left, narrowing into a bright beam that shoots toward a glowing circular target on the right, symbolizing focused data flow or an AI system converging on a solution.
Image: Meta
SHARE

Meta is pushing deeper into the increasingly crowded market for AI coding agents with the launch of Muse Code, a terminal-based software engineering assistant, and Muse Spark 1.2, the coding-focused model that powers it. The pitch is not simply that the system can write code, but that it can take on larger, messier jobs: understand a repository, map out a plan, make changes, run validation, recover from interruptions, and keep going without needing a developer to repeatedly point it in the right direction.

That framing matters. The AI coding conversation has moved well past autocomplete tools that suggest the next few lines in an editor. The new race is over agents: systems designed to use a terminal, inspect files, execute commands, test their own work, and work through multi-step engineering tasks. Meta is now entering that race with a product that looks deliberately built for long-running, repository-scale work rather than one-off code generation.

Muse Code is launching in beta for macOS and Linux, while Muse Spark 1.2 is also available through Meta Model API with broader global access.

A terminal agent built to persist

At first glance, Muse Code resembles the growing class of command-line coding agents popularized by tools such as Claude Code and OpenAI‘s Codex. Developers give it a task in the terminal, and the agent can investigate the codebase, edit files, invoke tools, and verify its output. Meta says the product is intended for complex engineering tasks across large repositories, including planning changes, writing the implementation, and validating the results.

The more unusual part is its architecture. Muse Code uses a main agent loop alongside persistent asynchronous background agents. Rather than creating a fresh helper agent for every individual step, those background agents remain active during the session, carrying context forward and deciding when to report back to the primary agent. Meta argues this should reduce duplicated investigation, latency, and the amount of manual steering required on difficult tasks.

In plain terms, it is an attempt to make the system feel less like a chatbot that forgets what it was doing every few minutes and more like a small, always-on engineering team. One process can keep examining a problem while another continues the main task. That is a useful direction for real-world development, where much of the work is not typing code but checking assumptions, reading unfamiliar files, reproducing a bug, and figuring out which of several plausible fixes is actually safe.

Meta has also designed Muse Code around a local event log. Every model call, tool execution, approval, and edit is recorded in a single history, which the company says makes sessions replay-exact and restart-safe. If a process crashes or stops, Muse Code is meant to resume from the precise point where it left off rather than restarting the task from scratch.

That feature may sound mundane, but it addresses a real friction point in agentic development. A coding task that takes hours can become unusable if the agent loses its place after a failed command, a session timeout, or a local machine hiccup. Long-running reliability is less flashy than benchmark scores, yet it is one of the things that will determine whether agents become everyday engineering tools or remain impressive demos.

The model behind it

Muse Spark 1.2 is a coding-oriented update to Muse Spark 1.1. Meta says it increased training compute for coding work and broadened the mix of training environments, with the stated goal of improving code generation, difficult debugging, codebase comprehension, and end-to-end developer workflows. The company also says the model retains strength in general agent tasks, not just programming.

The company trained the model alongside Muse Code, an approach often described as co-training a model with its “harness.” That is important because a coding model’s real performance depends heavily on the environment wrapped around it: what tools it can call, how it is instructed to plan, how it manages context, and how it verifies results. A strong model in a weak agent framework can still produce fragile outcomes. Meta says its training included examples from the Muse Code workflow, plus optimizations around goals, context compaction, and subagent behavior.

Meta is also emphasizing long-horizon tasks. According to the company, Muse Spark 1.2 was trained for whole-repository generation, end-to-end projects, and automated research-style work. It uses planning to sequence operations, goal conditioning to keep the task on track, and context compaction to retain the most relevant information as a session grows longer.

This is a direct response to one of the hardest problems in AI-assisted software engineering: maintaining coherence over time. Generating a function is easy compared with making changes across a large codebase without breaking naming conventions, interfaces, tests, dependencies, or product logic. The challenge is less about producing syntax and more about preserving an accurate working model of a project as the task evolves.

Benchmarks need context

Meta reports evaluations on Terminal-Bench 2.1, DeepSWE v1.1, GDPVal-AA v2, MCP Atlas, and its own internal coding benchmark. The reported coding tests cover practical terminal tasks and software engineering problems where an agent must produce working changes, not merely describe a solution.

For Terminal-Bench 2.1, Meta says it evaluated all 89 official tasks in isolated cloud sandboxes, measured task success over five attempts, and used executable verifiers to judge the resulting environment. DeepSWE v1.1, meanwhile, includes 113 tasks across 91 repositories and five languages – TypeScript, Go, Python, JavaScript, and Rust – with functional checks and regression tests used to evaluate final patches.

Those are meaningful tests because they better resemble actual development work than a static coding prompt. Still, there is a caveat that readers should keep in mind: benchmark comparisons among agents are rarely perfectly apples-to-apples. Meta says it tested each competing model with its selected agent product, rather than putting all models into one identical harness, and acknowledges that its setup may not represent the best possible performance of proprietary competitors in their own optimized environments.

That does not invalidate the results, but it does make the broader point: the agent and the model are now inseparable parts of the product. Developers should treat rankings as signals rather than final verdicts, then test the systems on the languages, repositories, security requirements, and workflows that actually matter to them.

The 24-hour stress test

Meta’s most striking example is a GPU kernel optimization experiment. The company says Muse Spark 1.2, working through Muse Code, was tested on iterative optimization tasks involving more than 1,000 tool calls and runs lasting up to 24 hours. The agent wrote code, compiled it, profiled performance, and repeatedly improved GPU kernels relative to a baseline implementation for NVIDIA Hopper hardware.

That is the kind of workload that highlights why persistent agents and restartable execution are central to Meta’s launch message. A system trying to optimize performance-sensitive code cannot stop after producing a plausible first answer. It has to test, measure, change one variable at a time, and recognize whether a modification actually improved the result.

Meta notes that the agents were prohibited from simply importing third-party kernel libraries, forcing them to implement the underlying algorithms in Triton and apply specialized optimization techniques themselves. It is an impressive use case, although it is still a controlled evaluation rather than proof that the agent can independently handle every high-stakes performance problem in production.

Why this launch matters

For Meta, Muse Code is also a strategic move. The company has spent years building major AI research capabilities, but the commercial developer tooling layer has been increasingly dominated by rivals offering polished coding agents, model APIs, and tightly integrated workflows. Launching a first-party terminal agent gives Meta a more visible way to connect its models to developers’ day-to-day work.

The bigger story is that software development is starting to be reshaped around delegation. Engineers will still decide what to build, set constraints, review architecture, and take responsibility for the final code. But the mechanics of implementation – exploring a repository, making repetitive edits, running tests, tracing a failure, and iterating on a patch – are becoming tasks that AI agents can increasingly share.

Muse Code’s beta status is worth taking seriously. The biggest unanswered questions will be practical ones: how dependable it is outside benchmarks, how much oversight it needs, how well it works in proprietary codebases, what it costs at scale, and how safely teams can give it access to tools and repositories. Meta has made a compelling case that it is targeting the right problems. The next test is whether developers find that the system saves time on ordinary work, not just spectacular technical demonstrations.


Discover more from GadgetBond

Subscribe to get the latest posts sent to your email.

Topic:Meta AI
Leave a Comment

Leave a ReplyCancel reply

Most Popular

Apple expands retail presence with new stores in Briargate and Briarwood

Nested folders land in Figma just as AI makes organization harder

Leagues Cup 2026 kicks off on Apple TV

WhatsApp group chats get three useful upgrades: better polls, @all mentions and faster spin-off groups

Samsung and Prime Video launch HDR10+ ADVANCED for select 2026 sets

Also Read
Abstract blue wave lines converging toward a bright point on a white background.

Meta’s new Mac coding agent is cheap – if you let it train on your code

Minecraft promotional artwork showing Steve and Alex on a grassy hill in a colorful blocky world, with the Minecraft logo above them and biomes, animals, water, and rail tracks in the background.

Minecraft comes to Switch 2 with Mario mash-up on October 27

Promotional graphic for AT&T amiGO Jr. Tab 2 showing a blue kids tablet with a rugged case and handle on a bright blue wavy background, alongside the text ‘AT&T amiGO Jr. Tab 2 – Adventure-ready, parent approved.’

AT&T’s latest kids tablet, the amiGO Jr. Tab 2, adds cellular and a stylus

Sony SEL100400 FE aClose-up of a person holding a Sony ILCE-6700 camera fitted with the SEL100400 FE 100-400mm F5.6-8 OSS super-telephoto zoom lens, thumb resting on the focus-hold button.100 400mm F5.6 8 OSSS Situ close up

Sony launches a lighter, more approachable 100-400mm lens for Alpha shooters

A busy city crosswalk scene viewed from above, showing multiple pedestrians and cyclists moving in different directions, each outlined by green detection boxes labeled “PERSON,” illustrating how computer vision systems track people in public spaces.

Simon Weckert’s Digital Camouflage wants AI cameras to miss you

Hand holding a compact DJI Mic Mini 2S wireless microphone with a fluffy windscreen, against a softly blurred outdoor background of green foliage.

DJI Mic Mini 2S debuts globally with 32-bit float recording and AI noise cancellation

Walmart and Vibe.co logos on a blue background.

Walmart completes Vibe.co acquisition to expand connected TV reach

Notion Custom Agents settings page with the "Meeting note summarized" trigger enabled for a CRM Enricher agent.

Notion’s AI Meeting Notes now run your follow-ups

Company Info
  • Homepage
  • Support my work
  • Latest stories
  • Company updates
  • GDB Recommends
  • Daily newsletters
  • About us
  • Contact us
  • Write for us
  • Editorial guidelines
Legal
  • Privacy Policy
  • Cookies Policy
  • Terms & Conditions
  • DMCA
  • Disclaimer
  • Accessibility Policy
  • Security Policy
  • Do Not Sell or Share My Personal Information
Socials
Follow US

Disclosure: We love the products we feature and hope you’ll love them too. If you purchase through a link on our site, we may receive compensation at no additional cost to you. Read our ethics statement. Please note that pricing and availability are subject to change.

Copyright © 2026 GadgetBond. All Rights Reserved. Use of this site constitutes acceptance of our Terms of Use and Privacy Policy | Do Not Sell/Share My Personal Information.