• About Us
  • Disclaimer
  • Contact Us
  • Privacy Policy
Wednesday, August 5, 2026
mGrowTech
No Result
View All Result
  • Technology And Software
    • Account Based Marketing
    • Channel Marketing
    • Marketing Automation
      • Al, Analytics and Automation
      • Ad Management
  • Digital Marketing
    • Social Media Management
    • Google Marketing
  • Direct Marketing
    • Brand Management
    • Marketing Attribution and Consulting
  • Mobile Marketing
  • Event Management
  • PR Solutions
  • Technology And Software
    • Account Based Marketing
    • Channel Marketing
    • Marketing Automation
      • Al, Analytics and Automation
      • Ad Management
  • Digital Marketing
    • Social Media Management
    • Google Marketing
  • Direct Marketing
    • Brand Management
    • Marketing Attribution and Consulting
  • Mobile Marketing
  • Event Management
  • PR Solutions
No Result
View All Result
mGrowTech
No Result
View All Result
Home Al, Analytics and Automation

Meta AI Releases Muse Code (Beta): A Terminal Coding Agent Powered by the New Muse Spark 1.2 Model

Josh by Josh
August 5, 2026
in Al, Analytics and Automation
0
Meta AI Releases Muse Code (Beta): A Terminal Coding Agent Powered by the New Muse Spark 1.2 Model


Meta AI has released Muse Code (in beta), a terminal coding agent in beta, powered by its new Muse Spark 1.2 model. Meta positions the pair as its next step toward the frontier, with larger models on the way. Muse Code targets complex software engineering across large repositories: it plans changes, writes code, and validates the results. A set of async background agents stays alive for the whole session instead of spawning per task. A local append-only event log records every model call, tool run, approval, and edit, which Meta calls replay-exact and restart-safe. Muse Spark 1.2 was co-trained with the harness itself. Meta also published a kernel-optimization case study running 1,000+ tool calls over as long as 24 hours.

Is it deployable

Yes. Muse Code ships in beta for macOS and Linux via curl -fsSL https://dev.meta.ai/install.sh | bash. Muse Spark 1.2 is available in Muse Code and the Meta Model API, with expanded global access. The launch post does not mention downloadable weights, so treat this as a hosted dependency.

READ ALSO

Building AI Agents? Here Are Some Anti-Patterns to Avoid.

Rust Adopts a Formal LLM Policy for Its Main Repository – Unite.AI

  • Company level: The API path fits any size. The Muse Code path fits teams already running agents in sandboxes with review gates.
  • Industries: Software and SaaS, developer tooling, fintech engineering, GPU and inference infrastructure, semiconductors and HPC.
  • Applications: Repository-scale refactors and migrations, long-running bug triage, test generation, and GPU kernel optimization.

Async background agents

Muse Code runs a simple agent loop plus a set of async background agents. These specialized agents remain active throughout each session. They are not spawned for individual tasks, which Meta says avoids redundant information gathering. They carry out next steps and choose when to report back to the main agent. Meta states this persistence reduces latency and steering on difficult, multi-step tasks.

Runtime design

Muse Code uses a local event log. Every model call, tool run, approval, and edit is appended to it. Meta calls this single source of truth replay-exact and restart-safe. After a crash, the agent resumes precisely where it stopped, letting long-running tasks survive failures.

Bundled skills

Three default skills ship with the agent. /plan turns a task into an approval-gated plan. /grill stress-tests that plan until it holds up. /goal works toward successful completion of the specified objective.

What changed in Muse Spark 1.2

Muse Spark 1.2 is a coding-focused update to Muse Spark 1.1. Meta reports gains in code generation, complex debugging, codebase understanding, and end-to-end developer workflows. The research team significantly scaled up training compute on coding tasks and expanded environment diversity. The model keeps its strength in other areas, including general agents.

Three important training details:

  • Co-training with the harness: Muse Spark 1.2 was co-trained with Muse Code. Training included rejection-sampled harness trajectories and recipe optimizations for goals, compaction, and subagents. The Muse Code toolset was integrated to maximize harness compatibility.
  • Long-horizon training: Training covered whole-repository generation, large end-to-end projects, and auto-research. The model uses planning, goal conditioning, and context compaction to sustain progress.
  • Self-improvement: Muse Spark 1.1 generated challenging coding environments and instruction-following templates, then graded candidate solutions against those requirements. That produced a scalable training dataset for 1.2.
https://research.meta.ai/blog/introducing-muse-code-and-muse-spark-1-2

Evaluation

Meta’s methodology report is unusually specific. Terminal-Bench 2.1 uses all 89 tasks, pass@1 over five attempts. DeepSWE v1.1 covers 113 tasks across 91 repositories and five languages. Meta Internal Coding Bench holds 440 tasks derived from real internal pull requests. Runs execute in isolated Daytona cloud sandboxes. Comparisons include Grok 4.5, Claude Opus 5, GPT-5.6 Terra, Gemini 3.6 Flash, and Kimi K3, each with its own agent product. Meta notes its harness may not be tuned for third-party models. For reference, Meta’s model page lists Muse Spark 1.1 at 80.0 on Terminal-Bench 2.1.

Case study: kernel optimization

Meta tested iterative GPU kernel optimization over 1,000+ tool calls, running up to 24 hours. The model writes, compiles, profiles, and progressively improves kernels against a provided baseline. Benchmarks covered KDA and MLA kernels on NVIDIA Hopper GPUs. For KDA, the baseline is the FLA Triton implementation, with third-party kernel libraries prohibited. Muse Spark 1.2 paired a chunk-parallel preparation kernel with a sequential inter-chunk scan. For MLA, the reference is PyTorch at batch size 1, 64 heads, sequence length 8192, and latent dimension 512. The model built a two-kernel Triton pipeline that reuses the shared KV latent as both K and V.

Key Takeaways

  • Muse Code is a beta terminal coding agent for macOS and Linux, powered by Muse Spark 1.2.
  • Persistent async background agents replace per-task spawning to cut redundant information gathering.
  • An append-only local event log makes the runtime replay-exact and restart-safe after crashes.
  • Muse Spark 1.2 was co-trained with the harness and trained on long-horizon, repository-scale work.
  • Kernel case study ran 1,000+ tool calls over 24 hours on NVIDIA Hopper KDA and MLA kernels.

Check out the Technical details, Model (Muse Spark 1.2) and Evaluation Methodology. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us


Asif Razzaq is the CEO of Marktechpost Media Inc.. As a visionary entrepreneur and engineer, Asif is committed to harnessing the potential of Artificial Intelligence for social good. His most recent endeavor is the launch of an Artificial Intelligence Media Platform, Marktechpost, which stands out for its in-depth coverage of machine learning and deep learning news that is both technically sound and easily understandable by a wide audience. The platform boasts of over 2 million monthly views, illustrating its popularity among audiences.



Source_link

Related Posts

Building AI Agents? Here Are Some Anti-Patterns to Avoid.
Al, Analytics and Automation

Building AI Agents? Here Are Some Anti-Patterns to Avoid.

August 5, 2026
Rust Adopts a Formal LLM Policy for Its Main Repository – Unite.AI
Al, Analytics and Automation

Rust Adopts a Formal LLM Policy for Its Main Repository – Unite.AI

August 5, 2026
Solving the solvent problem | MIT News
Al, Analytics and Automation

Solving the solvent problem | MIT News

August 5, 2026
Al, Analytics and Automation

Pixel-Native RAG: A Practical Guide to Visual Document Indexing

August 5, 2026
LLM Evaluation Frameworks Compared: How to Actually Measure What Your Model Does
Al, Analytics and Automation

LLM Evaluation Frameworks Compared: How to Actually Measure What Your Model Does

August 4, 2026
AI Is Not the Transformation. Decision Velocity Is. – Unite.AI
Al, Analytics and Automation

AI Is Not the Transformation. Decision Velocity Is. – Unite.AI

August 4, 2026
Next Post
Senate Advances The Latest Kids Online Safety Act Out Of Committee

Senate Advances The Latest Kids Online Safety Act Out Of Committee

POPULAR NEWS

Trump ends trade talks with Canada over a digital services tax

Trump ends trade talks with Canada over a digital services tax

June 28, 2025
15 Trending Songs on TikTok in 2025 (+ How to Use Them)

15 Trending Songs on TikTok in 2025 (+ How to Use Them)

June 18, 2025
Communication Effectiveness Skills For Business Leaders

Communication Effectiveness Skills For Business Leaders

June 10, 2025
Comparing the Top 7 Large Language Models LLMs/Systems for Coding in 2025

Comparing the Top 7 Large Language Models LLMs/Systems for Coding in 2025

November 4, 2025
App Development Cost in Singapore: Pricing Breakdown & Insights

App Development Cost in Singapore: Pricing Breakdown & Insights

June 22, 2025

EDITOR'S PICK

10 GEO Tools for Agencies, SaaS & Even Small Businesses

10 GEO Tools for Agencies, SaaS & Even Small Businesses

July 21, 2026
The latest Pixel 11 leak shows slimmer bezels and an all-black camera bar

The latest Pixel 11 leak shows slimmer bezels and an all-black camera bar

March 31, 2026
Gemini in Chrome expands to India, New Zealand and Canada

Gemini in Chrome expands to India, New Zealand and Canada

March 14, 2026
Healthcare Payer Analytics: Transforming Claims into Insights

Healthcare Payer Analytics: Transforming Claims into Insights

November 24, 2025

About

We bring you the best Premium WordPress Themes that perfect for news, magazine, personal blog, etc. Check our landing page for details.

Follow us

Categories

  • Account Based Marketing
  • Ad Management
  • Al, Analytics and Automation
  • Brand Management
  • Channel Marketing
  • Digital Marketing
  • Direct Marketing
  • Event Management
  • Google Marketing
  • Marketing Attribution and Consulting
  • Marketing Automation
  • Mobile Marketing
  • PR Solutions
  • Social Media Management
  • Technology And Software
  • Uncategorized

Recent Posts

  • Senate Advances The Latest Kids Online Safety Act Out Of Committee
  • Meta AI Releases Muse Code (Beta): A Terminal Coding Agent Powered by the New Muse Spark 1.2 Model
  • 5 Meghan Markle Home Essentials to Shop Now
  • I Reviewed G2’s 7 Best Patch Management Software
  • About Us
  • Disclaimer
  • Contact Us
  • Privacy Policy
No Result
View All Result
  • Technology And Software
    • Account Based Marketing
    • Channel Marketing
    • Marketing Automation
      • Al, Analytics and Automation
      • Ad Management
  • Digital Marketing
    • Social Media Management
    • Google Marketing
  • Direct Marketing
    • Brand Management
    • Marketing Attribution and Consulting
  • Mobile Marketing
  • Event Management
  • PR Solutions