VOD by Theo — t3.gg · Livestream covering Fable 5 restrictions, Claude Code skills, Claude MD, workflows, and breaking Fable ban news
This VOD contains five main video segments recorded during a single livestream. The first video is a critical deep-dive into Fable 5's controversial safeguards — silent invisible rerouting, hidden prompt rewriting, and Anthropic's quiet system card changes. Videos 2-4 are a planned look at what Claude Code does better than other harnesses (and what they should copy). The fifth segment is an unplanned, breaking-news reaction to the US government ordering Anthropic to restrict Fable 5 and Mythos 5.
Theo's first video is a critical expose of Anthropic's controversial Fable 5 safeguards. He argues that while Fable 5 is an incredibly capable model, Anthropic implemented restrictions that are "unacceptable in any way, shape, or form" — including silent invisible rerouting, hidden prompt modification, and an attempt to quietly rewrite the system card after public backlash.
| Model | Access | Safeguards |
|---|---|---|
| Mythos 5 | Direct access (the base model) | Standard restrictions |
| Fable 5 | Same model, but with guard gates | Classifiers check every prompt; some rerouted to Opus 4.8 |
Separate AI systems that run before your prompt reaches Fable. If detected:
| Domain | Fable 5 Score | Mythos 5 Score |
|---|---|---|
| Offensive cyber security evals | Near zero | Very high |
| Cyber adversarial robustness | 5.4% | 50-80% |
| Biology & chemistry | Refused | High capability |
For queries related to frontier LLM development (pre-training pipelines, distributed training, ML accelerator design):
Example: If you ask the model to help refine your pre-training pipeline, it may silently rewrite the prompt to "make it worse in some subtle way."
While live on stream, Theo discovered that Anthropic had quietly updated the system card to remove the "1.5 Novel Safeguard" section about invisible prompt modification:
Anthropic later responded after community backlash:
The explore repos skill pattern: when an LLM coding agent needs to inspect an external repository, Claude Code immediately creates a cache directory and lists its contents in a single step. Other harnesses require the model to first check if the directory exists, create it if not, then list it — three separate steps.
| Feature | Claude Code | Other Harnesses |
|---|---|---|
| Cache directory init | Creates and lists in one step | Model must manually mkdir + ls |
| Skill injection | Host system directly injects skill context | Requires explicit script invocation |
| Code auditability | Skills are plain text — LLM-visible and auditable | Opaque or plugin-based |
npm is far less auditable than a plaintext skill file.Claude Code uses CLAUDE.md (not AGENTS.md) as its project-level instruction file. The key innovation is a markdown import syntax: @path/to/file lets a CLAUDE.md pull in other files at load time.
| Feature | Claude Code | Other Harnesses |
|---|---|---|
| File imports in markdown | @path/import syntax, recursive up to 4 hops | Not supported |
| CLAUDE.md + AGENTS.md bridge | Import AGENTS.md from CLAUDE.md | Forces dual file management |
| Local overrides | claude.local.md (gitignored) | No clean personal override |
| Session deep links | claude:// protocol | None |
*.local.md in global gitignore.A tour of Claude Code's most distinctive features: workflows, /by the way, off-account swapping, rewind & branch, and remote control.
| Feature | What It Does | Why It Matters |
|---|---|---|
| Workflows | Agent writes JS/TS code defining multi-phase, parallel sub-agents with dynamic routing | Code-driven prompting is the most dynamic orchestration |
/by the way | Side question without derailing main conversation | Quick answers while async work continues |
| Off-account swapping | Switch API accounts mid-session | Critical for usage limit management |
| Rewind / Branch | Go back N steps or fork history | Cheap undo; explore alternatives |
| Remote control | /remote-control → control from website or phone | Manage long-running ops remotely |
| Full screen mode | Alt-screen rendering | No scrollback pollution |
Instead of calling a pre-built API, the agent writes code that defines phases, sub-agents, and routing. 100% throwaway — executed once, discarded.
Workflow Example — Open PR Audit Phase 1: Audit → one read-only agent per PR (15 parallel agents) Phase 2: Rule → pick a winner per overlapping cluster Phase 3: Verify → adversarial checker per disposition
Cost warning: 8 parallel threads cost ~$100 every 10 minutes on Fable.
/by the way or /side command.Breaking news: the US government issued an export control directive to Anthropic, ordering suspension of all access to Fable 5 and Mythos 5 for any foreign national — including foreign national Anthropic employees.
| Video | Topic | Key Point |
|---|---|---|
| 1 | Fable 5 Safeguards & System Card | Silent prompt rewriting and invisible fallbacks are a dangerous supply chain precedent |
| 2 | Skills & Repo Exploration | Harnesses should make repo cache setup invisible — one step, not three |
| 3 | Claude MD / Agent MD | Markdown imports and personal overrides are game-changers every tool should adopt |
| 4 | Workflows & Unique Features | Code-driven agent orchestration is the most powerful paradigm |
| 5 | Fable/Mythos Ban | Government intervention in frontier AI is here, fast and messy |