Meta drew the line between "runs locally" and "is worth running locally" on August 10. Meta Superintelligence Labs open-sourced Muse Glimmer 30B under Apache 2.0, a ~29.6B dense multimodal model distilled from the larger Muse Spark teacher, optimized specifically for always-on local agent workflows — not chat, not roleplay, but end-to-end task execution, tool use, long-horizon planning, and failure recovery.

The headline is not the 30B parameter count. It is the license. Meta has shipped open weights under its own Llama Community Licence for years, complete with an acceptable-use policy, monthly-active-user threshold, and branding clause. Glimmer switches to a standard OSI-approved permissive license: commercial use, fine-tuning, distillation, and redistribution all permitted without asking. For teams that have been blocked behind a Llama licence review, that is the change that actually matters.

The architecture is a deliberate counter to the prevailing fashion: dense, not MoE. A 52-layer decoder with three sliding-window layers + one global-attention layer repeating thirteen times, gated grouped-query attention at a 16:1 GQA ratio, and an independent ~1.8B-parameter ViT-G/14 perception encoder. On memory, BF16 full precision needs 55 GB or more; Meta's K-Quant calibrated 4-bit pushes the language model under 20 GB, leaving headroom for the KV cache, the vision encoder, and the speculative-decoding drafter inside a 24 GB or 32 GB consumer envelope. Meta reports 4-bit average benchmark degradation of only 0.2–1.0%.

Inference speed is delivered through a bundled DFlash speculative-decoding drafter. Meta's numbers: 74.9 → 233.4 tok/s on RTX 5090 (3.1×), 26.6 → 50.2 on M5 Max (1.8×), 23.7 → 37.8 on M4 Max (1.5×). The practical upshot: a 5090 workstation or an M5 Max MacBook can deliver fluid, real-time agent interaction without any cloud token spend or network call.

The benchmark comparison is framed honestly. Glimmer is pitted against Gemma4-31B and Qwen3.6-27B, not against closed-source frontier models. On MCP Atlas (75.5 vs Gemma4's 54.2), WildClawBench (47.6 vs 37.6), and AA-LCR long-context (80.0 vs 68.3), it pulls a meaningful lead — those are agentic, tool-orchestration, and long-horizon tasks. On SWE-Bench Pro it scores 51.2, well ahead of Gemma4's 36.9 and effectively tied with Qwen3.6's 50.2. On AIME 2026 math it scores 94.7, on ChartXiv 78.8 — both close to Qwen, narrow enough that workload decides the winner, not the table. Net read: local models have entered the "can do serious work" band; they have not entered the "can replace the frontier" band.

Ecosystem rollout is fast. Transformers works day one; llama.cpp, MLX, ExecuTorch, vLLM (via the transformers backend), SGLang, Ollama, LM Studio, and Unsloth land in the following days; Together AI, Fireworks AI, and OpenRouter are named as hosted launch partners; AMD, Arm, Dell, Intel, and NVIDIA are working on hardware optimization.

So what? Glimmer does not displace Claude or GPT on the hardest reasoning work. What it does is make "local agent model finally usable" real: for the first time, a model stable enough at tool calling, screenshot reading, and multi-step planning actually fits inside a laptop's 24–32 GB memory budget. Combined with Apache 2.0, the legal friction around private deployment, air-gapped environments, and enterprise fine-tuning drops sharply. Teams building local-first architectures, or splitting agent routing into "local high-volume + cloud hard cases", should put Glimmer on the eval bench.