Skip to main content

Command Palette

Search for a command to run...

Fable 5 (Mythos) Prompting Masterclass by Anthropic

Updated
7 min read
Fable 5 (Mythos) Prompting Masterclass by Anthropic
A
I build tech businesses through SaaS products across every layer of the internet.

TLDR: Anthropic just published the official playbook for prompting the most powerful AI model on earth — I translated it.

Most people won’t read this guide (it’s buried in the API docs), which is written for developers, and the average Claude user will bounce off it in 30 seconds due to its density.

This article is the plain English version.

Claude Fable 5, also known as Mythos, is a fundamentally different model from everything Anthropic has shipped before. The way you think about prompting structure needs to completely change.

Here’s everything that you need to know.

Table of Contents

I: What Makes Fable 5 (Mythos) Different

II: How to Prompt Fable Properly

III: Optimal Prompting Structure for Fable 5 (+/loops)

IV: What to Watch Out For (caveats)

For reference, this is the playbook I’ve translated. Feel free to review it in-depth and verify my analysis:

https://platform.claude.com/docs/en/build-with-claude/prompt-engineering/prompting-claude-fable-5


What Makes Fable 5 (Mythos) Different

A brief overview of the fundamental changes in Fable 5 (Mythos) — important context

1 - Run Time

Every Claude model before Fable 5 worked in relatively short bursts.

Claude Fable 5 is meant to sustain output over extended periods to complete multi-day, goal-directed tasks.

This is one of the biggest shifts. Fable 5 is meant for fully autonomous work (paired with /goal or /loop).

2 - It Gets Things Right First Time

One of the most reported early observations from people using Fable 5 is how rarely they need to iterate. Early testers reported single-pass implementations of systems that previously took days of iteration.

3 - Clarifying Questions

To execute autonomous work loops accurately, Fable 5 may ask a series of clarifying questions before it kicks off its autonomous run.

4 - Agent Management

Fable 5 is built to manage multiple parallel subagents at once (spinning up 50+ agents for complex tasks).

5 - It “Sees” Better

Claude Fable 5 interprets dense technical images, web applications, and detailed screenshots with substantially higher accuracy.

For anyone using Claude to analyse charts, screenshots, documents, or visual data, the improvement here is meaningful.

6 - Coding + Security Audits

It’s no secret that Fable is a coding genius. This new model is especially powerful for codebase review and debugging.

TLDR: You need to think of Fable as a collaboration/consultant partner that leads your work. It is meant to be a genius.


II: How to Prompt Fable Properly

1 - Match Your Effort Level to the Task

Effort is the primary control for the trade-off between intelligence, latency, and cost on Claude Fable 5.

It is recommended to use high as the default for most tasks, with xhigh for the most capability-sensitive work.

Think of it like hiring a consultant. You don’t need them running at full capacity to answer a simple question.

The practical guide:

Low or medium: Quick questions, simple rewrites, basic research, anything conversational

High: Default

Xhigh: Your hardest problems. Complex builds, multi-step analysis, anything where quality is non-negotiable

Ultracode: Full autonomous orchestration with Dynamic Workflows (more on this later)

2 - Tell It Why, Not Just What

Fable 5 cannot perform solely on instructions, unlike other models. It needs the “why” behind things, which is why it asks many clarifying questions.

Context lets it connect the task to relevant information rather than inferring intent on its own.

The formula Anthropic recommends:

PROMPT STRUCTURE

“I’m working on [the larger task] for [who it’s for]. They need [what the output enables]. With that in mind: [your actual request].”

3 - Keep Instructions Short

This feels counterintuitive, but it’s one of the most important adjustments to make when moving to Fable 5.

A short brief instruction is as effective as listing each pattern. Over-engineering your prompts on Fable 5 can actually degrade output quality because you’re constraining a model that would have figured out the right approach on its own.

4 - Tell It When to Stop and Check In

Fable 5 is built to run autonomously. Which means if you don’t define the checkpoints, it will define them itself. Sometimes that’s fine. For important or sensitive work, you want to set the boundaries explicitly.

Use this instruction when you want Fable 5 to run autonomously but stop at the right moments:

CHECKPOINT PROMPT

“Pause for me only when the work genuinely requires my input: a destructive or irreversible action, a real scope change, or something only I can provide. Otherwise, keep going and report back when done.”

5 - Build It a Memory System

Claude Fable 5 performs particularly well when it can record lessons from previous runs and reference them. Provide a place to write notes, as simple as a markdown file.

The instruction Anthropic recommends for your memory file:

MEMORY INSTRUCTION

“Store one lesson per file with a one-line summary at the top. Record corrections and confirmed approaches alike, including why they mattered. Don’t save what the repo or chat history already records. Update an existing note rather than creating a duplicate. Delete notes that turn out to be wrong.”


Optimal Prompting Structure for Fable 5 (+/loops)

The exact framework you should use for most prompts (combining all the tips above)

General Structure

Every high-quality Fable 5 prompt has four components:

  1. Context: Files, data, and so on.

  2. Request: What you actually want done.

  3. Output format: Exactly how you want the result delivered.

  4. Constraints: What Fable 5 must not assume on its own

Put together, it looks like this:

OPTIMAL PROMPT STRUCTURE
"I'm working on [the larger task] for [who it's for]. 
They need [what the output enables].
Request: [your specific ask in one clear sentence]
Output format: [exactly how you want the result 
structured and delivered]
Constraints: [what must not happen on 
the way to the result]"

/loops

/loop is one of the most powerful ways to use this new model.

If you’re unfamiliar, setting a /loop just allows your AI to work without manual intervention.

You should structure your /loop prompts like this:

/loop <time interval> + goal

Example: /loop 15 minutes, check if my build is passing, and notify me if it fails.

To stop a loop:

/loop stop [loop name]


What to Watch Out For

Some things to keep in mind when using Fable 5

  • It Runs Longer Than You Expect

This is one of the largest shifts teams encounter when adjusting to Claude Fable 5. Individual requests for hard tasks can run for many minutes at higher-effort settings.

  • It Can Go Beyond What You Asked For

Fable 5 is proactive by design. Claude Fable 5 can occasionally take unrequested actions. Use check-ins/loops to combat this.

  • Your Old Prompts May Work Against You

If you have saved skills or project instructions built for other models like Claude Opus 4.8 or earlier, they may actually produce worse results on Fable 5 than a simple fresh prompt would. Start fresh.

  • Decline Cybersecurity and Life Sciences Requests (and more)

Fable may hallucinate, and decline prompts you think are “safe.”

  • It Can Occasionally Stop Early

If this happens, a simple “go ahead and do it end-to-end” is enough to get it moving again.

  • Token Costs Are Higher

And of course, this is an insanely expensive model. Available on paid plans until June 22; after that, all access will be via API costs.


Closing

If you found this useful, be sure to follow me aashuu ✦

I publish daily articles that break down the latest innovations in Tech, AI, and Business.

For valuable content ✦ Connect on 𝕏 → x.com/warrioraashuu

A

The most powerful AI model on earth has new rules. I decoded the new rulebook.