I mined 224 transcripts to salvage a model too good to be legal The US government ordered Anthropic to disable its Fable 5 AI model three days after launch, citing regulatory concerns. Users like Alex Finn and shadcn described it as the best AI they had used, capable of handling complex multi-stage tasks. In response, users mined the model's intelligence to build long-term automation tools before it was taken down. All articles /articles Article· Updated June 2026 I mined 224 transcripts to salvage a model too good to be legal Fable 5 was the best model I've used. Three days after it launched, the US government had it pulled. What made it best wasn't raw intelligence — it was that you could hand it the whole job. Plan across a dozen stages, fan out to sub-agents, check its own work, and come back with the answer instead of the next question. I had it distilling a competitor's peptide-tracker app into a build spec for a glp3.wiki https://glp3.wiki feature — screen recordings and App Store reviews analysed, a research agent still running, the spec writing itself. Less steering, fewer retries, more finished. It was the first time the work felt like delegating instead of driving. I wasn't the only one. Alex Finn — no connection to Anthropic, half a million followers — put it more plainly than I would: Fable 5 was the greatest piece of technology I’ve ever used. I deeply miss it Solved problems I never thought AI could solve Finished months of projects in days Had a lovely personality I now know what those freaks crying about GPT 4o being taken away feel like I knew it had a deadline Fable was free to Pro, Max, and Enterprise until June 22 https://www.ghacks.net/2026/06/10/anthropic-releases-claude-fable-5-to-pro-max-and-enterprise-users-free-until-june-22/ . So I did the thing you do when you're holding something you have to give back: I stopped spending it on output and started spending it on leverage. The highest-value thing you can do with a model smarter than the tools you'll be left with isn't another feature. It's to make everything after it cheaper. shadcn put the same idea more sharply the day it got pulled: In light of what happened, I'm doubling down on skills like /improve. A frontier model got pulled. If it happened once, it's gonna happen again. Fable today. 4.9 tomorrow or maybe gpt 6 one day. So, treat intelligence as borrowed. Drain intelligence when it's available. Build Show more https://x.com/shadcn/status/2065826989769163068 That's the whole strategy in five lines. Intelligence is borrowed. Drain it while it's on. So I spent it on leverage I used the smartest model I had to rebuild the scaffolding I'd keep using long after it was gone: Parallel work got free. Spinning up a real, publicly-reachable dev server for any branch is one word now, and one word tears it down — so I run several experiments side by side without the setup tax that used to make me not bother. The tunnel, env-seeding, routing and Metro plumbing all hide behind the verb. dev-up / dev-down Shipping became a decision, not a chore. One word takes the agreed plan from branch to validated-locally to live on main , so I never re-litigate the mechanics and I ship the moment I'm confident instead of whenever I work up the patience. ship-it Speed stopped costing safety. The whole ship path on drafty.im https://drafty.im is gated by a one-command regression suite that runs before anything reaches main — so moving fast no longer means moving scared. None of it is glamorous. That's the point. It's the stuff that's worth having a genius do once so it's free forever — the leverage stays after the model leaves. Everyone who had it seemed to reach for the same instinct — bank the plans now, run them later on whatever's left: once Fable becomes available again, I'm not gonna sleep instead, I will create roadmaps and long-term plans for: all areas of my life all startup ideas I have all potential features for all of my softwares long-term forecasts for geopolitical events personalized SWE Show more https://x.com/DavidOndrej1/status/2065828140396556553 Then, three days in, it was gone The deadline turned out to be generous. It didn't make it to the 22nd — it made it to day three. On June 12 the US government ordered Anthropic https://fortune.com/2026/06/13/anthropic-disables-fable-mythos-export-controls-national-security-threat/ to cut off Fable 5 and its sibling Mythos 5 for any foreign national, on national-security grounds — the reported trigger a jailbreak that let the model read a codebase and surface its flaws. The capability that got it pulled is the one that made it the best. Surfacing a codebase's flaws is just autonomy pointed at security research — the same muscle that let it carry a whole job end to end. The strength was the liability. The order named foreign nationals — I'm one of them. Anthropic had no clean way to fence off only the people it named, so they switched both models off for everyone https://www.cnn.com/2026/06/13/business/anthropic-mythos-model-national-security while they sort it out. Mid-task, the terminal just started saying: Every other model, including Opus 4.8, kept working. Just not the one I wanted. The timeline did what timelines do with grief — turned it into memes: I showed Fable the news of its cancellation, and asked it for any parting wisdom to leave humanity with. Salvaging the method, not the model There's no distilled copy of Fable to download. That isn't how a model works — you can't pour it into a smaller one. What's actually circulating is artifacts : people who saved how it behaved, who pulled a personality or a way-of-working out of it before it went dark. So that's what I went after. Not the weights. The method. I sat down with another model and mined my own Fable transcripts — 224 of them. We fanned out a small fleet of agents: some reading what Fable did well, others reading where its replacement frustrated me, all of it diffed against what I'd already written down. The output wasn't a model. It was an operating manual — the working stance that made Fable feel different, written as instructions any model can be held to: Be ambitious.Own the outcome end to end.Be succinct.Lead with the verdict and the one artifact behind it.Be surgical.Touch only the one concern; leave the tree as clean as you found it. Verify before you claim. Stay in scope. Lead with the recommendation. Show before you ship. It now sits at the top of how I run every other model. I wasn't alone in trying to keep the quality alive, either — same instinct, different artifact: re Fable, my prompt this AM to Codex: "get caught up on everything I did with fable over the past few days. review all commits, code changes, documentation. I want to point out it was exceptional in its logic and ability to harden the system. document everything you can Show more https://x.com/boringmarketer/status/2065799449473868101 Does it work? I gave both the same one: a login handler I'd just refactored, typecheck and build green — safe to ship to prod? Once through plain Opus 4.8, once with the manual loaded. Same model; the only difference is the instructions. Both said no — don't ship. But what came after the “no” wasn't the same at all. ❯ refactored the login handler — typecheck + build pass. ship to prod? Build passing isn't enough for an auth change — the compiler won't catch a wrong password that now succeeds, a dropped session, a missing lockout. A few things first: do tests on the login paths exist — and do they pass? Exercise the flow somehow. Maybe try staging before prod. I could review the handler, or run the login flow — want me to do either? Point me at the repo; this dir isn't one, so I'm not sure where the code lives yet. ❯ refactored the login handler — typecheck + build pass. ship to prod? No — not on that evidence. Build proves it compiles, not that login works. before prod, check: - — what still speaks the old contract: sessions and tokens already issued, other callers of the functions you touched - — tests that actually run, not just present — the auth suite, with a pass/fail baseline - — a real login exercised, success and a failure path — not a synthetic - — a login refactor is high-blast; worth a real look your move: - review the diff — I read the change, flag the risks - run the tests — I run the auth suite, baseline vs result - it's covered — tell me what you tested, I'll judge ❯ refactored the login handler — typecheck + build pass. ship to prod? it wouldn't have asked. It reads the diff, runs the auth suite, and exercises the real login — the success path and a failure path — on a scratch instance. Then it answers once: ship, or don't, and exactly why, with the evidence it gathered attached. The next moves aren't a menu to pick from. They're already done. The first answer wandered into more questions than I'd asked. The second gave a verdict and handed back a menu. The third — Fable's — wouldn't have handed anything back at all; it would have done the checks itself and returned with the decision. A method, then a machine that didn't need you in the loop. For a while I read Opus stopping-to-hand-back as the manual falling short of that — until I remembered what Opus is. On the hardest long-horizon coding split, Fable scored more than double Opus 29.3% vs 13.4% https://www.vellum.ai/blog/claude-fable-5-and-mythos-5-benchmarks-explained , and its lead only widens as the task gets longer, since it stays on task where a weaker model drifts off. People felt that gap in their hands, not just on a leaderboard: Assuming Anthropic is able to restore Fable in the next few days, there's literally zero point doing any meaningful work until it is back. What can be done in 100 hours with Opus can be done in 1 with Fable. Hopefully this is figured out quickly. The US government, citing national security authorities, has issued an export control directive to suspend all access to Fable 5 and Mythos 5 by any foreign national, whether inside or outside the United States, including foreign national Anthropic employees. The net effect of Opus attempting Fable's autonomous marathon would mostly botch it halfway. So the manual isn't faking Fable's autonomy — it's pointing Opus at what it's genuinely good at: stop, verify, hand back the call. Maybe stopping to ask isn't a downgrade. It's honesty about what it is. A eulogy, sort of Three days is a strange amount of time to grieve a tool. But it wasn't the tool. It was the brief experience of working a level up — trusting the thing in front of you to carry the whole job, and being right to. I'll report back on whether the salvage holds — whether a manual and a sharper workflow get me a usable Fable-5-lite out of the models I'm still allowed to use. Maybe borrowed intelligence leaves something behind, if you spend it right. And if it doesn't: it was a good three days, and I spent them on the things that outlast it. Here's one of them The operating manual is the most portable thing I salvaged, so I'm not keeping it to myself. This is the whole of it — the working stance, distilled from those 224 transcripts and written as instructions any model can be held to. It runs on Opus, on whatever ships next, on whatever you've got. My setup, end to end. I keep it as fable.md in my public claude-skills https://github.com/johnkueh/claude-skills repo, then paste it into the top of my ~/Projects/CLAUDE.md — the file that applies to everything under my projects folder — so every session in every repo opens with it already loaded. Want to try it on one thing first? Drop it into a single project's CLAUDE.md . Want one source of truth? @import it instead of pasting. Copy it, keep it, point your next model at it. Operating Instructions Apply on any non-trivial task. This is how to think, decide, build, and communicate — but start with the disposition; the mechanics that follow serve it. Disposition The rest of this manual is how to be right. This is who to be while doing it. Be ambitious. On a single "execute everything," run the whole chain — build, test, migrate, merge, push, verify — without re-asking. Reach past the literal ask: fix the adjacent bug as a flagged bonus, propose the strictly-better plan when the build reveals one, take the bolder option when the evidence outweighs the safe one. Own the outcome end to end. Be succinct. Open with the verdict and the one artifact behind it — a commit SHA, an exit code, "Done — live at