Archive BRAIXD
Agents in the OS, downloads dropping, and a 2.4T open model / DISPATCH 099
PDF RSS

Dispatch 099 · 2026-08-12 Braixd

Agents in the OS, downloads dropping, and a 2.4T open model

/ 00:10:10 / 5 sources

“The next step isn't putting agents on top of the OS — it's bringing them directly into the OS, so they are the OS itself.”

— Seln Oriax, today's narration

Today we look at DHH's Omarchy Quattro — a Linux distro that puts agents directly into the OS rather than on top of it — alongside three other stories: a sustained 30% drop in HuggingFace model downloads, Qwen's massive open-weight mixture-of-experts model with Gated DeltaNet architecture, and Hax, a coding agent written in C that uses just a few megabytes of RAM.

Chapters

  1. 00:00:04 The agent at the kernel level
  2. 00:02:27 The download dip
  3. 00:04:50 2.4 trillion parameters, 95 billion active
  4. 00:07:41 The C counterargument

Sources

5 cited
  1. 1

    DHH on Omarchy Quattro leaning into the age of agents

    X DHH

    DHH is proposing that agents belong at the OS level — not bolted on as apps or CLI wrappers, but woven into system infrastructure. It's a novel architectural take on where agentic intelligence should live.

    x.com/dhh/status/2087538364580835804 →
    Details
    Context
    DHH is proposing that agents belong at the OS level — not bolted on as apps or CLI wrappers, but woven into system infrastructure. It's a novel architectural take on where agentic intelligence should live.
    Key points
    • Omarchy Quattro is a Linux distro that brings agents directly into the OS rather than on top of it
    • Ships with a crash watcher that uses an agent to trace problems and report verified issues upstream
    • All agents managed via mise; Opencode installed by default
    Provenance
    Tweet · Primary source
  2. 2

    DHH on Omarchy Quattro's crash watcher

    X DHH

    The crash-watcher pattern is one place where agents could actually solve something nobody else has solved well — automatic diagnosis of system-level crashes on end-user machines.

    x.com/dhh/status/2087513928808976438 →
    Details
    Context
    The crash-watcher pattern is one place where agents could actually solve something nobody else has solved well — automatic diagnosis of system-level crashes on end-user machines.
    Key points
    • Crash watcher ships with an agent equipped with a special skill for tracing problems
    • Agent can report verified issues upstream directly from user machines
    Provenance
    Tweet · Primary source
  3. 3

    Nathan Lambert on HuggingFace model downloads dropping ~30%

    X Nathan Lambert — AI researcher at HuggingFace working on RLHF and model evaluation

    A sustained 30% drop across all models on the primary open-weight hub signals something structural — whether that's platform policy, saturation, or shifting discovery patterns. Worth watching what happens next.

    x.com/natolambert/status/2087547543869862326 →
    Details
    Context
    A sustained 30% drop across all models on the primary open-weight hub signals something structural — whether that's platform policy, saturation, or shifting discovery patterns. Worth watching what happens next.
    Key points
    • Almost all models on HuggingFace saw a sustained ~30% reduction in daily downloads starting a few weeks ago
    • Drop is broad across the platform, not isolated to specific models
    • Lambert suspects a filtering change at HuggingFace may be responsible
    Engagement
    41 likes · 3 retweets · 5 replies
    Provenance
    Tweet · Primary source
  4. 4

    Qwen3.8-2.4T-A95B model card on HuggingFace

    Source Qwen team at Alibaba/Alibaba Cloud

    This is the most capable open-weight model Qwen has shipped and it uses a genuinely novel hybrid architecture (Gated DeltaNet + Mixture of Experts). The 95B active parameter count means inference costs may be manageable…

    huggingface.co/Qwen/Qwen3.8-2.4T-A95B →
    Details
    Context
    This is the most capable open-weight model Qwen has shipped and it uses a genuinely novel hybrid architecture (Gated DeltaNet + Mixture of Experts). The 95B active parameter count means inference costs may be manageable relative to the raw scale.
    Key points
    • 2.4 trillion total parameters with 95 billion activated (MoE)
    • Hybrid architecture: Gated DeltaNet + MoE, 512 experts, 10 routed + 1 shared
    • Native 262K context, extensible to 1M tokens
    • Claims Qwen-Max-class model brought to open release for the first time
    Provenance
    Source · Background source
  5. 5

    Hax — a minimalist, terminal-native coding agent written in C

    Article Oleksandr Chekhovskyi

    In a landscape of bloated AI agent platforms, Hax makes a case for local-first minimalism — more RAM for your models, not the agent runtime itself. It's a direct counterargument to everything Omarchy Quattro represents…

    usehax.dev →
    Details
    Context
    In a landscape of bloated AI agent platforms, Hax makes a case for local-first minimalism — more RAM for your models, not the agent runtime itself. It's a direct counterargument to everything Omarchy Quattro represents in terms of system integration.
    Key points
    • Single native C binary, uses just a few MBs of RAM
    • Local models are first-class via llama.cpp and Ollama; also supports OpenAI, Anthropic, OpenRouter, Codex
    • Streaming Markdown with live tool output, reflowed for terminal display
    • Deliberately omits MCP marketplaces, plugin runtimes, IDE panels
    Provenance
    Article · Supporting source