Engineering & Technical

The Engineer

The Signal

Anthropic's Claude Mythos Preview — 93.9% on SWE-bench Verified

Alex Stamos estimates open-weight models reach parity in ~6 months, meaning every ransomware operator gets this capability. Project Glasswing (40+ companies, $100M in Anthropic credits)

In Play

  1. AI Zero-Day Discovery Crosses the Chaining Threshold

    Mythos Preview found a 27-year-old OpenBSD bug, Linux kernel RCEs, and flaws FFmpeg's 5M fuzzing runs missed — without cybersecurity training. It chains 5 separate vulns into novel exploits. Open-weight parity in ~6 months means attackers get this for free, with no forensic trail.

    Ask Clarity
  2. Security Toolchain Itself Is Now the Attack Surface

    Trivy (your container scanner) was supply-chain compromised, breaching the EU Commission for 340 GB. GrafanaGhost exfiltrates data through normal AI behavior, invisible to SIEM. React2Shell hit 760+ Next.js apps via pre-auth RCE. FortiClient EMS has a second CVSS 9.8 in weeks. The tools you trust to find vulnerabilities are the vulnerabilities.

    Ask Clarity
  3. Agent-Ready Infrastructure Requirements Crystallize

    OpenAI's 1M LOC zero-human-code experiment reveals hard constraints: <60s builds or agents thrash, Elixir/BEAM for orchestration, 'ghost libraries' as specs not code. Controlled experiments show 41% more bugs despite 26% speed gains. Context degrades from 95% to 60% accuracy as you stuff more tokens. MCP gets simultaneous adoption (Google, Figma, Gemma 4) and rejection (OpenAI's heaviest user calls it broken).

    Ask Clarity
  4. GitHub Infrastructure Buckling Under 14x AI Agent Load

    GitHub went from 1B commits/year to 14B run rate. Availability dropped to 90% — databases and Redis clusters saturated by agent traffic patterns that defeat LRU caching. Claude Code alone hit 2.5M weekly commits (25x in months). GitHub is simultaneously migrating to Azure. OpenAI and GitHub's ex-CEO both building alternatives.

    Ask Clarity
  5. Open-Weight Models Hit Production Deployment Threshold

    Gemma 4 runs at 40 tok/s on iPhone via MLX. Red Hat shipped NVFP4/FP8 quantized 31B variants. Day-one support across vLLM, SGLang, llama.cpp, Ollama. A 1.3M-param specialized model outperformed full LLMs on real-time tasks in 31ms on CPU. Meanwhile, Meta's moving its best models closed — the open-weight parity window may be narrowing.

    Ask Clarity

Deep Dives

Mythos Preview's Zero-Day Harvest and Your 6-Month Countdown

This is not another benchmark story. Claude Mythos Preview hit 93.9% on SWE-bench Verified — a 13-point jump from Opus 4.6's 80.8% in February — and the same general reasoning improvements that resolve complex multi-file GitHub issues have accidentally created the most potent vulnerability discovery engine ever built.

What Mythos Actually Found

Without any specialized cybersecurity training, Mythos discovered: Linux kernel RCEs enabling complete machine takeover, a 27-year-old OpenBSD vulnerability in a codebase legendary for security rigor, a flaw in FFmpeg that survived 5 million automated fuzzing runs, and vulnerabilities in every major browser and OS. The critical technical detail: Mythos isn't pattern-matching known CVEs. It finds 5 separate vulnerabilities in a single codebase and composes them into novel exploit chains — the difference between 'medium-severity buffer overread' and 'chain of five issues that gives you root.'

Your existing SAST/DAST/fuzzing tools find individual issues. Mythos finds chains. Defense-in-depth assumes independent failure modes across layers; AI-driven chaining systematically violates that assumption.

The 6-Month Window

Alex Stamos estimates open-weight models reach parity in approximately 6 months. After that, every ransomware operator can run local models to discover zero-days with no network forensic trail. This isn't a lab curiosity — these capabilities emerged from general reasoning improvements, meaning every frontier lab pursuing reasoning will cross this threshold. Anthropic got there first and decided to ring the alarm.

Project Glasswing: The Coordinated Patch Sprint

40+ companies including Apple, Google, Microsoft, Cisco, and Broadcom, backed by $100M in Anthropic compute credits, are racing to patch critical open-source infrastructure before the window closes. The scope explicitly includes C/C++ libraries, media codecs, and crypto libs.

The Uncomfortable Meta-Question

A single private company now possesses zero-day exploits for almost every major piece of software. Anthropic's model weights themselves become an extraordinarily high-value target. The irony of the US government simultaneously trying to designate Anthropic as a supply chain risk while needing them for national cyber defense is not lost. Your defensive posture now partially depends on the security of Anthropic's infrastructure.


What This Means For Your Stack

The 6-month window is a hard deadline for defensive patching, not a soft target. If your production stack depends on OSS projects that aren't in a Glasswing partner's scanning scope, those vulnerabilities may not be found defensively in time. Your existing vulnerability scanning tools were designed to find known patterns, not reason about vulnerability chains.

What to do

  1. Map your full dependency tree against known Glasswing partner coverage this sprint — identify which C/C++ libraries (FFmpeg, media codecs, crypto libs) are being scanned and which are orphaned

  2. Evaluate AI-powered vulnerability scanning tools that reason about vulnerability chaining, not just pattern-match CVEs — add to Q2 security tooling budget

  3. Accelerate patching cadence for Linux kernel, browser engines, and media processing libraries — treat next 6 months as an elevated threat window

  4. Update your threat model to include AI-generated zero-day chains that compose multiple low-severity issues into critical exploits

Your Security Scanner Was the Backdoor: Trivy, Grafana, and the Trust Inversion

Trivy Compromised the EU Commission

Aqua Security's Trivy — the most popular open-source container/IaC scanner — was supply-chain compromised on March 19. The compromised version stole AWS API keys, enabling attackers to exfiltrate 340 GB of data from the European Commission, including email content from 42 internal EC clients and 29+ EU entities. The attacker obtained management rights for the compromised AWS secret, enabling lateral movement. Trivy is probably in your CI/CD pipeline right now, likely with access to IAM roles, environment variables, and ECR tokens.

The tool you trust to find vulnerabilities became the vulnerability. Your security scanner had more access to your crown jewels than most production services.

GrafanaGhost: AI-Mediated Exfiltration Your SIEM Can't See

Noma Security demonstrated a chainable prompt-injection exploit that exfiltrates data from Grafana instances without credentials or user interaction. The attack slips hidden instructions past domain validation and AI guardrails simultaneously, coercing the AI into making outbound requests where the URL itself encodes stolen data. From a network traffic perspective, this looks like normal AI behavior — your SIEM and DLP are architecturally incapable of detecting it. Grafana patched, but the pattern applies to any internal tool with AI features that can take external input and has outbound network access.

React2Shell: 760+ Next.js Apps Already Compromised

CVE-2025-55182 is a pre-authentication RCE in React Server Components — the default in Next.js App Router since v13. Threat cluster UAT-10608 has automated exploitation, compromising 760+ systems and exfiltrating 10,000+ files in large-scale credential harvesting. 'Pre-auth' means no session, no token, no user-state WAF rule protects you.

The Pattern: Every Trust Boundary Is Being Tested Simultaneously

This isn't isolated incidents — it's a convergence of supply-chain attack vectors:

  • Trivy: Security scanner as credential harvester (March 19 supply chain)
  • Strapi npm: 36 typosquatting packages with 8-stage payloads exploiting postinstall hooks
  • GrafanaGhost: AI-augmented internal tooling as exfil channel
  • FortiClient EMS: Second CVSS 9.8 in weeks — systemic code quality, not isolated bugs
  • Keycloak: CVE-2026-3429 bypasses MFA entirely
  • BYOVD: Qilin/Warlock disabling 300+ EDR tools at kernel level

The common thread: the infrastructure you trust for security is the attack surface. Your scanner, your dashboards, your endpoint manager, your identity provider, and your EDR are all simultaneously compromised or compromisable.

What to do

  1. Determine if Trivy is in your CI/CD pipeline, check version history around March 19, and rotate all AWS credentials accessible to that pipeline immediately

  2. Audit all Next.js deployments for React2Shell (CVE-2025-55182) — check if App Router with React Server Components is enabled and search logs for UAT-10608 indicators

  3. Conduct a threat model review of all AI-augmented internal tools for prompt injection exfiltration vectors — not just Grafana

  4. Implement dependency pinning with hash verification for all security-critical CI/CD tooling — stop auto-updating tools that have credential access

  5. Patch FortiClient EMS (CVE-2026-35616) and Keycloak (CVE-2026-3429) today — verify no FortiClient EMS instances are internet-exposed

What OpenAI's 1M LOC Experiment Actually Reveals About Agent-Ready Infrastructure

The Headline vs. The Substance

OpenAI's Frontier team shipped an internal Electron app: 1M lines of code, 0% human-written, 0% pre-merge review, ~1,500 PRs, 1B tokens/day. The shocking headline obscures the real engineering substance: the brutal infrastructure requirements they discovered along the way.

Build Time Is Now Agent Infrastructure

When GPT-5.3 gained background shells, the model became impatient with long builds — literally thrashing instead of waiting. The team migrated from Makefile→Bazel→Turbo→NX in a single week to hit a sub-60-second build ceiling. This isn't optimization — it's a hard constraint. At hundreds of concurrent agent sessions, every second of build time compounds across thousands of parallel runs. If your build takes 12 minutes, your agents are running at a fraction of potential throughput.

The Model Chose Elixir

Symphony, their orchestration layer, runs on Elixir/BEAM — chosen by the model, not humans — because OTP supervision trees map naturally to agent lifecycle management. The 'rework' pattern is pure Erlang: when a PR fails review, Symphony trashes the worktree entirely and restarts from scratch. This works because agent compute is cheap relative to debugging partially-failed state. If you're building incremental retry logic for agent failures, you're probably over-engineering it.

MCP: Simultaneous Adoption and Rejection

Here's a genuine contradiction across sources. Google Ads and Figma just shipped MCP integrations, Gemma 4 has native MCP support, and MCP is being adopted as the de facto agent-to-service interface. But Ryan — OpenAI's most extreme Codex power user, consuming more agent tokens than almost anyone — calls MCP broken: forced token injection interferes with auto-compaction, causing agents to forget how to use tools. The Spark model 'blew through three compactions before writing a line of code.' His winning pattern: Unix-philosophy CLI tools with structured, token-efficient output.

MCP is becoming the REST of agent integration — ubiquitous but potentially wrong for high-throughput agent workflows. Adopt it as a standard interface for service exposure, but test thoroughly in tight agent loops.

The Quality Crisis Nobody's Measuring

Controlled experiments now show AI coding assistants produce 41% more bugs despite a 26% speed gain. A Chroma study quantifies the context trap: LLM accuracy degrades from 95% to 60% as context window input grows. Beck and Fowler's Pragmatic Summit adds another dimension: AI coding tools degrade substantially on large, complex codebases vs. greenfield — precisely where enterprises need help most.

DimensionFindingSource
Speed+26% developer velocityControlled experiments
Bugs+41% defect rateControlled experiments
Context quality95%→60% as tokens growChroma study
Legacy codebasesSubstantial degradationBeck & Fowler
Task completion vs. efficiency1.0 completion, 0.4 efficiencyDeepEval

Beck's sharpest tactical insight: two humans paired with AI agents outperform one human with many agents. AI latency is a feature — 3-minute waits create space for human discussion about naming, design, and architecture. As AI gets faster, we paradoxically lose collaborative design time.

What to do

  1. Benchmark your inner development loop (build + test + lint) and set a hard target of <60 seconds — prioritize build system optimization as agent-readiness infrastructure this quarter

  2. Create an AGENTS.md for your primary repository: architectural decisions, team context, and 'recipes' for common agent tasks — version and review it like infrastructure config

  3. Add StepEfficiency and ToolCorrectness metrics alongside TaskCompletion in your agent evaluation pipeline using DeepEval or equivalent

  4. Implement a TDD-first workflow for AI-assisted coding: write failing tests encoding design intent before invoking agents, use the test suite as acceptance gate

GitHub at 90% Uptime: Your CI/CD Has a New Single Point of Failure

The Numbers Are Staggering

GitHub went from 1 billion commits in all of 2025 to a 14 billion annual run rate in Q1 2026. That's 275 million commits per week. Agent-generated PRs jumped from 4M to 17M in six months. Claude Code alone went from 100K to 2.5M weekly commits — a 25x increase. This isn't growth; it's a phase transition from human-centric collaboration platform to agent-centric code firehose.

Why GitHub's Infrastructure Can't Cope

GitHub COO Kyle Daigle acknowledged rising outages, with availability dropping to approximately 90%. Databases and Redis clusters are saturating because AI agents don't browse — they hammer APIs in tight loops, submit PRs in batches, and trigger webhooks at machine speed. Rate limit schemes designed for human cadence (5,000 requests/hour for authenticated users) break completely under 24/7 autonomous processes. The Redis cluster saturation specifically suggests AI agent traffic is thrashing LRU caches — agents issue more diverse, less temporally correlated requests than humans.

GitHub's caching layer was sized and keyed for human browsing patterns. AI agents systematically defeat cache efficiency. This is a preview of what happens to every developer platform as agent traffic scales.

Compounding Risk: Concurrent Azure Migration

GitHub is simultaneously migrating from its own data centers to Azure. Any engineer who's done a large-scale cloud migration knows this is already a multi-quarter reliability risk. Compound it with 14x traffic growth from fundamentally different access patterns, and you have a recipe for an extended reliability degradation period. Expect GitHub to rearchitect rate limiting aggressively — any integration relying on current limits should be treated as fragile.

The Competitive Fracture

OpenAI is reportedly considering building its own GitHub alternative. GitHub's former CEO just launched a competing 'AI-friendly' code platform. These signals suggest the code hosting near-monopoly may fragment. This doesn't mean migrate away tomorrow, but treating GitHub as an assumed constant rather than a dependency with a risk profile is increasingly naïve.

What Meta's 60T Tokens Tells You

Meta's internal 'Claudeonomics' leaderboard has 85,000 employees burning 60 trillion tokens per month, top user at 281 billion tokens — with engineers running agents continuously just to climb the leaderboard. Internal pushback says 'token usage is NOT impact.' This is the lines-of-code metric reborn at industrial scale, and it's one of the forces driving GitHub's infrastructure crisis.

What to do

  1. Mirror critical repos to a secondary git host (GitLab, Gitea) and add circuit breakers with exponential backoff to all GitHub API calls in your tooling this sprint

  2. Move critical-path CI (deployment gates, release pipelines, security scans) to self-hosted runners within 30 days

  3. Implement agent-PR detection and route AI-generated commits through enhanced static analysis with separate defect rate tracking

  4. Document GitHub as a SPOF in your architecture decision records and ensure git repos are backed up independently — test restore

The bottom line

AI just found exploitable zero-days in Linux, OpenBSD, FFmpeg, and every major browser — and the capability goes open-weight in 6 months. Meanwhile, your security scanner (Trivy) was the attack vector that breached the EU Commission for 340 GB, GitHub is at 90% uptime under 14x AI agent traffic, controlled experiments prove AI coding tools ship 41% more bugs than humans, and OpenAI's 1M-LOC zero-human-code experiment reveals your build system must be under 60 seconds or your agents are bottlenecked. The era of 'AI finds bugs faster than humans create them' has arrived, and both sides of that equation demand immediate infrastructure changes.