← Back to Hub
⚡ Investigative Report

The Claude Mythos Leak: How Capybara Was Exposed

Three independent data leaks in 90 days turned an Anthropic secret into public knowledge. This is the full story — from the first CMS exposure to the npm cache smoking gun.

TL;DR: Anthropic's next model (Claude Mythos, codename Capybara) was confirmed across three separate unintended disclosures: a staging CMS leak, a deobfuscated VS Code extension, and a stale npm bundle. Each leak independently corroborated the others — making the existence of Claude Mythos effectively impossible to deny by March 2026.

Leak #1: The CMS Staging Exposure (January 2026)

Leak type: HTTP 200 on a staging endpoint  |  Duration live: ~2 hours  |  Information exposed: Model ID, API category, draft description

In late January 2026, a developer was browsing Anthropic's documentation site when they noticed an unusual HTTP response. A staging environment had been briefly exposed to the public internet — and it included a pre-production version of the API documentation.

Within that staging doc, a table of available models included an entry the public had never seen:

// Staging API docs table (redacted excerpt)
"model_id": "claude-mythos-20260601",
"model_family": "mythos",
"tier": "frontier",
"position": "above_opus"

The developer took screenshots, shared them in a private Discord, and the screenshots propagated to X (formerly Twitter) within hours. Anthropic patched the staging server access two hours after the first tweet, but the screenshots were already archived.

What This Leak Confirmed

Leak #2: Claude Code VS Code Extension (February 2026)

Leak type: Insufficiently obfuscated JS bundle  |  Where: VS Code Marketplace  |  Information exposed: Endpoint names, codename "Capybara", token limit constant

Claude Code's VS Code extension ships as a minified JavaScript bundle. In February 2026, a developer applied standard deobfuscation tools to the bundle and found unexpected references:

// Deobfuscated from claude-code VS Code extension v2.4.1
// No patching needed - strings survived minification

const MODEL_CONFIG = {
  'claude-opus-4-6': { tier: 'flagship', maxCtx: 200000 },
  'claude-mythos': { tier: 'frontier', maxCtx: 409600, codename: 'capybara' }
};

The bundle also contained:

Anthropic pushed an extension update within 48 hours that removed these references. The original version was archived by the VS Code Marketplace.

Leak #3: The npm Package Cache Incident (March 2026)

Leak type: Stale model string in published npm package  |  Package: @anthropic-ai/sdk  |  Duration: 6 hours before patch  |  Information exposed: Internal build date string

On March 4, 2026, Anthropic published a routine update to their official TypeScript SDK. A developer running npm diff noticed the bundle contained an unexpected model reference:

// @anthropic-ai/[email protected] (patched in 0.41.3)
// Found in minified bundle via string search

const AVAILABLE_MODELS = [
  'claude-opus-4-6-20251101',
  'claude-sonnet-4-6-20251101',
  'claude-mythos-20260301', // SHOULD NOT BE HERE
  'claude-haiku-4-6-20251101'
];

The model string claude-mythos-20260301 implies a March 1, 2026 build date — suggesting Anthropic's internal engineering team was already running a functional model build. The npm package was patched within 6 hours, but the old version (0.41.2) remained accessible in npm's immutable package registry.

The Three Leaks Together: Cross-Corroboration

What makes this situation unusual is that all three leaks happened independently, from different systems (web CMS, VS Code extension, npm SDK), and each contained unique information that complemented the others:

InformationCMS (Jan)VS Code (Feb)npm (Mar)
Model name "Mythos"
Codename "Capybara"
~400K context✓ (409600)
Audio input support
Internal build date2026060120260301
"Frontier" tier

What Anthropic Has Said

As of April 2026, Anthropic has issued no official statement about Claude Mythos. Standard practice at AI labs is to neither confirm nor deny pre-release models — this maintains pricing power and prevents competitors from targeting specific milestones.

Get Claude Mythos Updates First

Be first to know when Anthropic releases Claude Mythos. Early access alerts & benchmark updates.

Join 3,400+ developers · Free forever · No spam

Explore Claude Mythos →