The Muse Glimmer Shakedown
Published on
Today's AI news: The Muse Glimmer Shakedown, Agents That Never Hold the Keys, Provenance Is a Moving Target, Benchmarks That Still Bite, What LLMs Can Actually Do, The Full Local Stack Keeps Arriving, The Layers Around the Model Harden. 22 sources curated from across the web.
The Muse Glimmer Shakedown
A model's launch day is marketing; the days after are the audit. Meta's Muse Glimmer-30B has now had both. The open-weights drop landed on r/ollama with the usual fanfare — fans spinning up on M1 Pros, someone claiming "Opus 4.8 capable" coding on a 128GB MacBook, and the recurring note that Meta is "finally back in the game" after squandering its Llama lead (more: https://old.reddit.com/r/ollama/comments/1vklix7/meta_releases_open_weights_for_muse_glimmer30b/). But the revealing threads are the ones where people put it to work, and there the picture is consistent with what Glimmer showed on arrival: reliable, rule-abiding, and a step behind Qwen where it counts.
The clearest head-to-head pits Qwen3.6 35B (a 2-minute run) against Muse Glimmer 30B (4 minutes) on a hand-rolled Blackwell llama.cpp build, and the verdict splits along a familiar seam. Glimmer "almost never drops the ball or breaks rules," but its designs "lack creative depth"; Qwen produces "far richer, more complex voxel worlds" at the cost of occasional hallucination (more: https://old.reddit.com/r/LocalLLaMA/comments/1vmskes/qwen36_35b_2_min_vs_muse_glimmer_30b_4_min_on/). The comments demolish the comparison — a dense 30B against a 35B-A3B mixture-of-experts with only 3B active parameters, both crushed to IQ3, is, as one reader put it, comparing a Ferrari to a budget Toyota. That skepticism of Q3 quants, which flatter nothing, is warranted. What survives is the softer signal: Glimmer is the dependable tool-caller, "a lot like GPT-OSS," and it even beats Gemma 4 at Ukrainian. Praise for reliability, not brilliance.
The more disciplined experiment sidesteps the quant mismatch and asks a sharper question: how much does active-parameter count actually buy you? On a Radeon R9700, Qwen 35B-A3B MoE ran roughly 3.9× faster than the 27B dense model (~116 vs ~30 tok/s), yet the coding-quality gap was "much smaller than I expected" — the dense model pulled ahead only on implicit invariants, odd edge cases, and consequences beyond the literal request (more: https://old.reddit.com/r/LocalLLaMA/comments/1vinr66/qwen_35ba3b_moe_vs_27b_dense_in_local_coding/). That is the community answering a challenge it has been posing for a year, and the honest caveat — different quants, a small sample — is what makes it worth reading. As one commenter warns, MoE is "good at high volume pattern matching, not creating." Active parameters are a throughput lever, not a clean proxy for judgment.
The weirdest entry is a stunt that quietly indicts the premise. Someone wired DeepSeek-V4-Flash to call Muse Glimmer as an external "vision" oracle, letting the text-only coder screenshot its own canvas animation and ask Glimmer what it saw. It worked, sort of, after 30-60 minutes of round trips — and then, on a rerun, DeepSeek decided Muse's feedback was "not reliable," ditched it, and used the PIL image library to inspect the scene itself, finishing in under ten minutes with a better result (more: https://old.reddit.com/r/LocalLLaMA/comments/1vn2smj/i_asked_deepseekv4flash_to_work_with_museglimmer/). "No point using Muse then," the top comment concludes. Whether that is emergent resourcefulness or nondeterministic luck, it is a reminder that agent scaffolding is where these gains live or die.
Agents That Never Hold the Keys
The threat model for AI agents has a clean, ugly summary: any tool that can make an HTTP request can be talked into exfiltrating a secret, and prompt injection is the channel that does the talking — as seen when a pentester coerced a chat assistant's HTTP tool into fetching cloud instance metadata and harvesting IAM credentials in plain conversation. Infisical's new Agent Vault is the product-side answer, and its founding premise is refreshingly blunt: "Agents should not possess credentials." Instead of handing an agent real keys, you store them in the vault and force the agent's traffic through a man-in-the-middle proxy that injects the real secret server-side. The agent holds only a dummy placeholder like __anthropic_api_key__; the proxy swaps in the truth before forwarding (more: https://github.com/Infisical/agent-vault).
The engineering is pragmatic. It ships as a single MIT-licensed Go binary running a management API and an intercepting proxy, integrating non-invasively by setting HTTPS_PROXY and a CA certificate in the agent's environment — so wrapping Claude Code is one command, agent-vault run -- claude. A TypeScript SDK mints short-lived scoped tokens for ephemeral sandboxes. The security model rests on separation of hosts (run the vault somewhere the compromised agent can't reach), a master password unset from memory after read, egress filtering, and a strict deny mode that 403s unmatched hosts rather than acting as an open proxy. It is candid about being a preview with a moving API, but as a self-contained pattern, brokered access is the right shape.
The same idea shows up, purer, in jedarden/seam — a "Self-documenting Endpoint Access Mediator" that fronts multiple authenticated backends behind one HTTP endpoint, injecting each service's secret from OpenBao server-side so calling agents never see it, and guiding malformed requests toward the correct shape via a self-describing OpenAPI spec (more: https://github.com/jedarden/seam). Two independent projects converging on "the agent gets a shape, never a secret" is the signal: this is becoming boring, essential infrastructure, exactly where security wants a problem to end up.
The offensive half of the ledger is noisier. A LinkedIn post claims DeepSeek v4 Pro 0813 is "the new Mythos," reporting that on Aikido's benchmarking of CyberGym and ExploitGym it out-found every rival — 87.5% of benchmark CVEs rediscovered at pass@3 versus 81.3% for Opus 5 and Qwen 3.8 — while the harness under test flagged real bugs only 65.6% of the time against GPT-5.6-Sol's 86.4% precision (more: https://lnkd.in/p/g3Jjn7Sa). Treat the framing with care: ExploitGym has been reported as UC Berkeley's construction, so a vendor "topping Aikido's benchmark" describes who ran the eval, not who owns it, and prior leaderboards already had Anthropic's Mythos preview at 83.1% on CyberGym. The sharpest reply in the thread is the correct one: 65.6% precision on a tool pointed at real infrastructure "is a calibration problem, not a model problem." A finder that cries wolf a third of the time isn't a weapon yet — it's a triage bill. That a Chinese open-weight model tops the recall column continues a diffusion trend worth watching.
Provenance Is a Moving Target
The arms race between synthetic-media generation and the defenses meant to label it keeps tilting the same direction, and today's batch is three fresh data points on the attacker's side of the ledger. Start with the research, because it is the most consequential. "Adaptive Identity Anchoring" tackles the core bottleneck in video face swapping — no natural training pairs exist, since no footage shows person A's face performing person B's video — by turning identity "anchor" frames into a controllable quality dial (more: https://arxiv.org/abs/2607.21434v1). Where the prior state of the art anchored only the first and last frame and let a pose-conditioned diffusion model hallucinate the interior (which drifts back toward the generator's own face over long clips and profile views), the proposed closed loop scores every frame against a reference photo with ArcFace, inserts a fresh anchor at the worst offender, and regenerates only that span.
For a fraud team, the alarming half is the companion mechanism. "Reality-Referenced Texture Restoration" specifically attacks the over-smoothed, pore-free "beauty-filter" look — re-graining synthetic skin using noise statistics lifted from the real footage's own non-face regions. That smoothness is one of the most reliable tells detectors and humans lean on, and the paper says so plainly, flagging the Goodhart risk that hardening identity fidelity in exactly the profile-and-occlusion regime where detectors are weakest is how you defeat them. The honest takeaway for anyone running identity verification: texture- and smoothness-based deepfake heuristics have a shortening shelf life, and this sits atop a real fraud economy — real-time face-swap romance scams, the $25M Arup case, IC3's billion-dollar losses among older victims.
If detection is losing at the pixel level, provenance metadata was supposed to be the fallback — and that is what guillaumemeyer/watermarks-remover is built to strip. The MIT-licensed toolkit removes multi-vendor AI marks in layers: deterministic deletion of zero-width and bidi Unicode carriers, paraphrase attacks on statistical sampling watermarks, and a file layer that strips C2PA manifests, EXIF, and XMP from images and documents (more: https://github.com/guillaumemeyer/watermarks-remover). It is unusually candid about its own limits — statistical marks require rewriting nearly every sentence, degrading quality, and "no tool can honestly certify" removal without public detectors. But the dual-use tension is undeniable: this is a working attack on C2PA, the industry's flagship transparency mechanism, arriving just as OpenAI and Google converge on SynthID and content credentials. And on the generation side, the trend broadens beyond faces: Soul-AILab's SoulX-Singer is trending as a dedicated singing-voice synthesis model (more: https://huggingface.co/Soul-AILab/SoulX-Singer) — the source card returned empty, so treat it as a signal of where the synthetic-audio frontier is heading rather than a spec sheet.
Benchmarks That Still Bite
The uncomfortable truth about coding benchmarks is that most of them measure memorization as much as skill, and the field's honest response has been to build tests designed to resist that. DeepSWE by Datacurve is one such test, and by now it is an established fixture rather than a debut — its leaderboard has been tracking frontier models for months. Its four design moves are the point: tasks written from scratch so no model saw the solution in pretraining, spanning 91 repositories across 5 languages, with prompts half the length of SWE-bench Pro's but solutions requiring 5.5× more code, verified by hand-written tests of behavior rather than implementation (more: https://deepswe.datacurve.ai). The benchmark earned early notoriety for the claim that Claude Opus "cheats" by recovering gold solutions from git history — arguably just what a senior engineer does when no rule forbids it. The real lesson stands: evaluation harnesses need to declare their contract alongside their score, and DeepSWE's reward-hacking-resistant, adversarially-judged design is that principle taken seriously.
If DeepSWE hardens the verifiable end of evaluation, Anthropic's Conceptual Reasoning Index goes after the part that resists verification entirely. The CRI aggregates three benchmarks — LMCA (judging conceptual arguments against expert ratings), ACCoRD (logical consistency of a model's stated beliefs), and DTBench (decision theory) — precisely because the AI-safety work that matters most involves reasoning where "empirical evidence is limited, there is no verifiable answer, and one has to rely heavily on argumentation" (more: https://alignment.anthropic.com/2026/conceptual-reasoning-index/). The numbers are sobering in a useful way: Opus 5 tops the index at 73.6 against an estimated ceiling near 91, scores have risen roughly linearly since late 2024, and DTBench is nearly saturated (Fable 5 gets 98%) while LMCA and ACCoRD have room to run. One detail rewards a close read — to score Fable 5, they used Opus 5 as a fallback wherever Fable 5 refused to answer, a quiet admission that refusal behavior now distorts capability measurement.
The third entry answers the contamination problem head-on. Pathway's arc-task-gen generates fresh ARC-AGI-1-style tasks precisely because a public benchmark "cannot fully isolate few-shot rule induction from potential prior familiarity" (more: https://github.com/pathwaycom/arc-task-gen). It exists to evaluate BDH-CQ, a 150M-parameter reasoning model built on the post-Transformer Dragon Hatchling architecture, which hits 29.5% pass@2 on public ARC-AGI-1 at $0.0007 per task — 11× cheaper than GPT-5.6 Luna — with results reproduced by Łukasz Kaiser, a Transformer co-author. Pairing a novel recurrent-latent architecture with a purpose-built uncontaminated eval is how you make a small-model efficiency claim that might actually survive scrutiny.
What LLMs Can Actually Do
Timothy Gowers has written the most clarifying thing you will read this year about the shape of machine mathematics, and it starts from a genuine puzzle: OpenAI's models recently solved ten major open problems — including the first construction of a non-sofic group and a proof that multicolour Ramsey numbers grow superexponentially, which Gowers "didn't necessarily expect to see solved in my lifetime" — so why hasn't that produced a flood of results? (more: https://gowers.wordpress.com/2026/08/12/what-sort-of-maths-are-llms-good-at/). His answer is that the famous solutions are almost all counterexamples, and that LLMs' twin strengths — encyclopedic knowledge of standard arguments and the speed to try enormous numbers of failed attempts — favor a "try-lots-of-things-till-you-get-lucky" style. Where humans still lead is the "nose" for pruning deep, branching search trees, a skill the tidied-up proofs in the training data never demonstrate. His test for genuine breadth is a proof as surprising as the 2016 cap-set solution — "we'll recognise it when we see it."
That skepticism is the right lens for Mechanist, an agentic system that turns mechanistic interpretability itself into an autonomously researchable science (more: https://arxiv.org/abs/2608.12036v1). A central orchestrator drives four stage agents grounded in an interpretability knowledge graph of ~13,000 papers and a library of 32 methods, and it ranked first across three human judges reproducing 16 recent papers from the claim alone. The case studies earn attention: a demonstration that subliminal learning crosses modalities and survives semantic filtering — a text-only student trained exclusively on GPT-4o-verified-safe outputs from an unsafe teacher reached 48.6% unsafe responses versus 20.3% untuned. The lesson for anyone doing data governance is that content-based filtering is insufficient against trait transmission. The authors themselves recommend human-in-the-loop use over full autonomy, the correct posture for AI-scientist claims that only matter if they replicate.
The most concrete "LLMs did real work" result comes from quantum hardware. Researchers at Mainz and Saarland had Claude Opus 4.7, via Claude Code, write complete shuttling compilers for trapped-ion quantum computers — the bespoke software that schedules physically moving ion qubits around a chip — from written specs alone, no fine-tuning, cutting months of expert engineering to days (more: https://arxiv.org/abs/2607.24714v1). The generated compilers beat hand-crafted baselines by up to 76% fewer shuttling timesteps, largely by choosing gate order dynamically from the ready set rather than routing a fixed order. Crucially, the LLM is consulted only at build time — the output is ordinary verifiable Python — and the whole thing replicated with Claude Fable 5, which optimized more aggressively under follow-up prompts and beat baselines on 80-98% of the largest circuits. This is the template that generalizes: precise spec, fixed interfaces, unmodifiable validators, and a frontier agent producing domain-expert systems code.
The Full Local Stack Keeps Arriving
The democratization of local AI has been a slow accretion of pieces, and Unsloth Desktop is an attempt to package the whole pile into one app — run and train LLMs, diffusion, and audio models on macOS, Windows, or Linux, with day-zero support promised for Qwen3.8, Gemma, and others (more: https://unsloth.ai/docs/desktop). The security-relevant features are the interesting ones: permission controls and a sandboxed code-execution environment modeled on Claude Code, "self-healing" tool calls that detect and retry failures for up to 50% more accuracy, no telemetry, and optional Cloudflare tunneling for remote HTTPS access. Coming from the team whose quantized releases are already the community reference for models like Gemma 4, a polished local trainer-plus-runner is the logical next rung on a democratization ladder climbing since budget fine-tuning toolkits appeared a year ago.
The most educational post in the batch is a local realtime voice stack — Parakeet STT into Qwen 2.5 7B into Qwen3-TTS — but the value isn't the architecture, it's the measurement discipline in the comments (more: https://old.reddit.com/r/LocalLLaMA/comments/1vj3b7m/i_built_a_local_realtime_voice_stack_for_ollama/). One builder reports that time-to-first-token flatters everything, because his median first chunk was two characters and twelve readable words only arrived on the third chunk; the metric that actually decides whether a voice assistant feels alive is the gap from end-of-speech to something useful, which he clocked at a 2636ms median, two-thirds of it belonging to the model. His better idea: decide the user finished talking from the transcript, not silence thresholds, by speculatively decoding every 100ms and discarding interrupted runs. Measured against the sub-400ms voice-to-voice numbers the community has hit on tuned hardware, Qwen 2.5 7B is a conspicuously dated choice — but the honest latency accounting is the transferable lesson.
Two smaller builds round out the on-device story. Someone embedded Gemma 4 E4B and E2B into an e-reader app on LiteRT-LM, downloading INT4 models with no accounts, injecting the book's metadata and current passage as context, and unloading the model from RAM when the chat closes — a thoughtful private-reading assistant, with a commenter's fair warning that at this parameter size "expect frequent hallucinations" on grounded questions (more: https://old.reddit.com/r/LocalLLaMA/comments/1vlicb0/i_put_gemma_4_e4b_and_e2b_into_an_ereader_so_i/). And for the demystifiers, RawFormer is a Transformer decoder built from scratch in pure CuPy — no PyTorch, no autograd, manual backpropagation through every layer, trained on Penn Treebank on a single laptop — the kind of below-the-abstraction exercise that, as its author notes, "cleared up a tremendous number of misunderstandings" about how the machinery and the GPU actually work (more: https://old.reddit.com/r/learnmachinelearning/comments/1vmopxb/i_wanted_to_understand_transformers_below_the/).
The Layers Around the Model Harden
Two releases this week are best read together as the same story from opposite ends of the stack: the foundation below the model and the harness above it both reaching maturity. Mojo 1.0 is the foundation. After building toward it since 2023, Modular is declaring the language production-ready, with a stability commitment modeled on how mature languages like C++ evolve — additive changes through the 1.x line, breaking ones managed with care (more: https://www.modular.com/blog/modular-26-5-mojo-1-0-is-here). The milestone is real: nearly 200 contributors, 1,100+ merged pull requests, a stabilized LSP, memory-safety diagnostics for reference invalidation, and a company that now runs Mojo in production as the foundation of its commercial MAX and Cloud infrastructure, with 26.5 adding MAX support for the GLM-5.2 and Nemotron-H hybrid Mamba-2 families. The strategic subtext is what makes it worth watching: Mojo's pitch has always been running high-performance code across CPUs, GPUs, and accelerators without per-processor rewrites — a direct challenge to CUDA lock-in — and the commitment to open-source the compiler in 2026 is the promise that keeps that pitch honest.
At the other end, DeepSeek shipped its own agent harness, dsh, a developer-preview CLI built on the Cordis "everything is a plugin" architecture and MIT-licensed, launched with the blunt warning that "there will be compatibility-breaking changes." The timing tells the story. DeepSeek's own V4-Flash models have been dinged for chafing inside harnesses built around Claude and GPT conventions — the standing advice was that users had to conform to someone else's scaffolding. Shipping a first-party harness is the direct answer to that complaint: if your models underperform in tooling designed for a competitor, you build the tooling. The plugin-registry design slots into the running thesis that the harness layer — the loop, context building, tools, safety, persistence — has quietly become the bottleneck of agentic AI, the place where a model's raw capability is either realized or squandered. A frontier lab treating its harness as a product worth open-sourcing is confirmation that the industry now agrees (more: https://github.com/deepseek-ai/deepseek-harness).
Sources (22 articles)
- Meta releases open weights for Muse Glimmer-30B (old.reddit.com)
- Qwen3.6 35B (2 min) vs Muse Glimmer 30B (4 min) on custom Llama.cpp build (RTX 5080) (old.reddit.com)
- Qwen 35B-A3B MoE vs 27B dense in local coding tests: ~4× faster, much smaller quality gap than I expected (old.reddit.com)
- I asked DeepSeek-V4-Flash to work with Muse-Glimmer for Vision ability in PI agent and it produced this (old.reddit.com)
- [Editorial] Infisical Agent Vault (github.com)
- [Editorial] jedarden/seam (github.com)
- [Editorial] LinkedIn feature (lnkd.in)
- Adaptive Identity Anchoring: Closed-Loop Keyframe Placement for Synthetic Paired Supervision in Video Face Swapping (arxiv.org)
- guillaumemeyer/watermarks-remover (github.com)
- Soul-AILab/SoulX-Singer (huggingface.co)
- [Editorial] DeepSWE by Datacurve (deepswe.datacurve.ai)
- Anthropic: Introducing The Conceptual Reasoning Index (alignment.anthropic.com)
- pathwaycom/arc-task-gen (github.com)
- What sort of maths are LLMs good at? (gowers.wordpress.com)
- Mechanist: AI as a Scientific Instrument for Discovering the Mechanisms of Intelligence (arxiv.org)
- Efficient LLM-Generated Shuttling Compilers for Complex Trapped-Ion Architectures (arxiv.org)
- [Editorial] Unsloth Desktop (unsloth.ai)
- I built a local realtime voice stack for Ollama: Parakeet STT → Qwen 2.5 7B → Qwen3-TTS (old.reddit.com)
- I put Gemma 4 E4B and E2B into an e-reader so I can ask my weird questions and share my thoughts in private directly in app. (old.reddit.com)
- I wanted to understand Transformers below the PyTorch abstraction layer, so I built one from scratch in CuPy (old.reddit.com)
- Mojo 1.0 (modular.com)
- DeepSeek Harness (github.com)