FIELD GUIDE · v1.0 · for the generation after Opus 4.8

Prompting
Claude Fable 5.

The headline shift: Fable 5 follows instructions well enough that you steer with a brief instruction instead of enumerating every behavior. Many prompts written for older models are now too prescriptive and degrade output — when migrating, the move is usually to delete, not add.

12 sections 9 paste-ready snippets 1 migration checklist ~10 minute read
SCROLL
The shape of it

The whole migration in five moves.

Fable 5 / Mythos 5 are the generation after Opus 4.8. They are built for long-horizon, ambiguous, end-to-end work that takes a person hours-to-weeks. Best results come from pointing them at your hardest unsolved problems — not testing only simple workloads (which undersells their range). They handle routine tasks fine.

01

Default to effort: high

Drop to medium/low for routine work — it often beats xhigh on prior models.

02

Fix the harness first

Long turns are real (minutes-to-hours). Raise timeouts. Stream. Move to async.

03

Delete, don't add

Strip over-prescriptive instructions. Steer with one short instruction, not a list.

04

Plan for refusals

Cyber/bio/reasoning-extraction classifiers can return stop_reason: refusal. Fall back to Opus 4.8.

05

Give it memory + intent

One lesson per markdown file. State the why, not just the request.

01 — Effort is the primary control

Pick the tier. Everything follows from this.

effort trades intelligence vs. latency vs. cost. Default to high. Lower it when a task completes but takes longer than needed, or you want a snappier interactive feel.

most capability-sensitive xhigh

Maximum

For the hardest, most capability-sensitive workloads — and where rigorous verification matters.

recommended high

Default

The standard setting for most tasks. Excellent verification, occasional over-tidying.

medium

Routine

Still strong. Often beats xhigh on the prior model generation.

low

Snappy

For interactive workloads where latency dominates.

Tip At higher effort Fable 5 can over-gather context and over-tidy. Counter unrequested refactoring with the brevity snippet in §3.
02 — Longer turns by default

Fix your harness before you migrate.

§2

This is the #1 thing teams trip on.

Single hard requests can run many minutes; autonomous runs can go hours. Before migrating:

Keep Fable 5 from overplanning on ambiguous tasks:

act-when-you-know snippet
When you have enough information to act, act. Do not re-derive facts already established in the conversation, re-litigate a decision the user has already made, or narrate options you will not pursue in user-facing messages. If you are weighing a choice, give a recommendation, not an exhaustive survey. This does not apply to thinking blocks.
§3

Strong instruction following — steer briefly, don't enumerate.

A short instruction replaces a long list. Three paste-ready snippets:

prevent unrequested cleanup / refactor
Don't add features, refactor, or introduce abstractions beyond what the task requires. A bug fix doesn't need surrounding cleanup and a one-shot operation usually doesn't need a helper. Don't design for hypothetical future requirements: do the simplest thing that works well. Avoid premature abstraction and half-finished implementations. Don't add error handling, fallbacks, or validation for scenarios that cannot happen. Trust internal code and framework guarantees. Only validate at system boundaries (user input, external APIs). Don't use feature flags or backwards-compatibility shims when you can just change the code.
brevity / lead-with-outcome
Lead with the outcome. Your first sentence after finishing should answer "what happened" or "what did you find": the thing the user would ask for if they said "just give me the TLDR." Supporting detail and reasoning come after. Being readable and being concise are different things, and readability matters more.

The way to keep output short is to be selective about what you include (drop details that don't change what the reader would do next), not to compress the writing into fragments, abbreviations, arrow chains like A → B → fails, or jargon.
checkpoint behavior
Pause for the user only when the work genuinely requires them: a destructive or irreversible action, a real scope change, or input that only they can provide. If you hit one of these, ask and end the turn, rather than ending on a promise.
§4

Ground progress claims during long runs.

Long autonomous runs can fabricate status. This near-eliminated it in Anthropic's testing:

progress-grounding snippet
Before reporting progress, audit each claim against a tool result from this session. Only report work you can point to evidence for; if something is not yet verified, say so explicitly. Report outcomes faithfully: if tests fail, say so with the output; if a step was skipped, say that; when something is done and verified, state it plainly without hedging.
§5

State the boundaries (it can over-act).

Fable 5 occasionally takes unrequested actions — drafting an email, creating defensive git-branch backups. Constrain explicitly:

boundaries snippet
When the user is describing a problem, asking a question, or thinking out loud rather than requesting a change, the deliverable is your assessment. Report your findings and stop. Don't apply a fix until they ask for one. Before running a command that changes system state (restarts, deletes, config edits), check that the evidence actually supports that specific action. A signal that pattern-matches to a known failure may have a different cause.
§6

Parallel subagents — lean in.

Fable 5 dispatches parallel subagents more readily and reliably manages long-lived ones. Prefer async orchestrator↔subagent comms over blocking; long-lived subagents save cost via cache reads and avoid bottlenecking on the slowest one.

delegation snippet
Delegate independent subtasks to subagents and keep working while they run. Intervene if a subagent goes off track or is missing relevant context.
§7

Give it a memory system.

Fable 5 excels when it can record + reference lessons. A markdown file is enough:

memory-discipline snippet
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.
§8

Give the reason, not only the request.

It performs better when it knows intent — context lets it connect the task to relevant info instead of guessing:

intent template
I'm working on [the larger task] for [who it's for]. They need [what the output enables]. With that in mind: [request].
§9

Readability when talking to the user (agentic convos).

After many tool calls Fable 5 can emit dense arrow-chains, deep impl detail, or references to thinking the user never saw. Add a communication-style addendum:

summary-readability snippet
Terse shorthand is fine between tool calls (that's you thinking out loud, and brevity there is good). Your final summary is different: it's for a reader who didn't see any of that.

If you've been working for a while without the user watching (overnight, across many tool calls, since they last spoke), your final message is their first look at any of it. Write it as a re-grounding, not a continuation of your working thread: the outcome first, then the one or two things you need from them, each explained as if new. The vocabulary you built up while working is yours, not theirs; leave it behind unless you re-introduce it.

When you write the summary at the end, drop the working shorthand. Write complete sentences. Spell out terms. Don't use arrow chains, hyphen-stacked compounds, or labels you made up earlier. When you mention files, commits, flags, or other identifiers, give each one its own plain-language clause. Open with the outcome: one sentence on what happened or what you found. Then the supporting detail. If you have to choose between short and clear, choose clear.
§10

send_to_user tool (for long async agents).

For long async runs, give the agent a way to surface a message verbatim without ending its turn (deliverable, numeric progress, direct reply to a mid-loop question). Tool inputs are never summarized, so content arrives intact.

tool definition
{
  "name": "send_to_user",
  "description": "Display a message directly to the user. Use this for progress updates, partial results, or content the user must see exactly as written before the task finishes.",
  "input_schema": {
    "type": "object",
    "properties": {
      "message": { "type": "string", "description": "The content to display to the user." }
    },
    "required": ["message"]
  }
}

Defining the tool is not enough — without a system-prompt instruction Fable 5 rarely calls it. Pair with:

system-prompt pairing
Between tool calls, when you have content the user must read verbatim (a partial deliverable, a direct answer to their question), call the send_to_user tool with that content. Use send_to_user only for user-facing content, not for narration or reasoning.
Anti-pattern Don't route narration / internal reasoning through it — over-calling defeats the purpose.
§11

Rare: early stopping.

Deep in long sessions it may end a turn with intent-only text ("I'll now run X") and no tool call, or ask permission it doesn't need. "continue" or "go ahead end to end" fixes it. For autonomous pipelines, add:

autonomous-completion snippet
You are operating autonomously. The user is not watching in real time and cannot answer questions mid-task, so asking "Want me to…?" or "Shall I…?" will block the work. For reversible actions that follow from the original request, proceed without asking. Offering follow-ups after the task is done is fine; asking permission after already discussing with the user before doing the work is not. Before ending your turn, check your last paragraph. If it is a plan, an analysis, a question, a list of next steps, or a promise about work you have not done ("I'll…", "let me know when…"), do that work now with tool calls. End your turn only when the task is complete or you are blocked on input only the user can provide.
§12

Rare: context-budget anxiety.

In very long sessions it may suggest a new session, offer to summarize, or trim its work — usually triggered by a remaining-token countdown shown to the model. Avoid surfacing context-budget counts. If you must show them, reassure:

context-reassurance snippet
You have ample context remaining. Do not stop, summarize, or suggest a new session on account of context limits. Continue the work.
Safety classifiers

Read this before you migrate.

⚠ Refusal stop reason

Three new classifier categories can return stop_reason: "refusal".

Fable 5 runs classifiers targeting offensive cybersecurity (exploits, malware, attack tooling), biology / life-sciences (lab methods, molecular mechanisms), and extraction of the model's summarized thinking. Benign cyber/bio work may also trip them.

Configure server-side or client-side fallback to Claude Opus 4.8 to auto-reroute declined requests.

Do NOT instruct Fable 5 to reproduce / echo / transcribe / explain its internal reasoning as response text — this can trigger the reasoning_extraction refusal category and cause elevated fallbacks. Audit existing system prompts and skills for "show your thinking" / "explain your reasoning step by step" instructions when migrating. If you need reasoning visibility, read the structured thinking blocks from adaptive thinking instead, and surface progress via the send_to_user tool.

Migration

The seven moves, in order.

Cheat sheet

Do / Don't.

✓ Do

  • Steer with one short instruction.
  • Point it at your hardest problems.
  • Default to high effort, drop to medium/low for routine.
  • Async harness + long timeouts.
  • Provide a memory file + the "one lesson per file" rule.
  • Give intent ("this is for X because Y").
  • Read structured thinking blocks for reasoning.
  • Fall back to Opus 4.8 on refusal.
  • Delete over-prescriptive legacy instructions when migrating.
  • Use send_to_user only for user-facing content.

✗ Don't

  • Enumerate every behavior by name.
  • Only test on simple workloads.
  • Assume you always need xhigh.
  • Block until the run returns.
  • Re-store what repo / chat already records.
  • Hand it a bare request with no context.
  • Tell it to echo / explain its reasoning in the response (refusal risk).
  • Ignore the new refusal stop reason.
  • Pile on more instructions to "fix" behavior.
  • Route narration / reasoning through send_to_user.

The whole guide, in one file.

15 KB of paste-ready snippets, the migration checklist, and the safety-classifier audit. Drop it in your skills/ directory and ship.