Prompting Fable 5 One-Pager

Prompt Fable 5 with clear goals, stated motivation, and XML structure, let adaptive thinking manage depth through the effort parameter, and never ask it to transcribe its internal reasoning.

What it is

  • The prompting essentials for Claude 5 class models, distilled from claims verified on 2026-07-07.
  • Anthropic now consolidates guidance into one living reference, Prompting best practices, covering Fable 5, Mythos 5, Opus 4.8, Sonnet 5, and Haiku 4.5, with dedicated model pages for Fable 5, Sonnet 5, and Opus 4.8; legacy technique URLs (use-xml-tags, chain-of-thought, claude-4-best-practices) redirect there (https://platform.claude.com/docs/en/build-with-claude/prompt-engineering/overview).
  • Prompt engineering is treated as empirical: before tuning, define success criteria, build tests against them, and have a first draft prompt.

How it works

  • Clarity first: Claude responds well to clear, explicit instructions; be specific about output and constraints, use numbered steps when order matters, and request above-and-beyond behavior explicitly.
  • Motivation helps: telling Fable 5 why a request matters improves compliance, because “Claude is smart enough to generalize from the explanation.”
  • Structure with XML: wrap instructions, context, examples, and inputs in consistent, descriptive tags; nest for hierarchy; give 3 to 5 relevant, diverse few-shot examples in example tags.
  • Long context has an ordering rule: place longform documents at the top and the query at the end (up to 30% better in tests), structure documents with XML metadata, and ask for grounding quotes before the answer.
  • Thinking is adaptive and always on for Fable 5 and Mythos 5: budget_tokens returns a 400 error, depth is controlled with the effort parameter (high default, xhigh for capability-sensitive work), interleaved thinking between tool calls enables automatically, and raw chain of thought is never returned.
  • Thinking is promptable: system-prompt guidance can suppress or encourage thinking, and per-message phrases such as “Please think hard before responding.” steer single turns, but steering is wording-sensitive and should be measured before production.
  • Tools follow their own rules: detailed tool descriptions of at least 3 to 4 sentences are the biggest lever on tool-use performance, current models parallelize independent tool calls by default, and a use_parallel_tool_calls block can push parallel usage to roughly 100 percent.

Best practice

Pitfalls

  • Sending budget_tokens to Fable 5; adaptive thinking is the only mode and the parameter 400s.
  • Relying on prefilled assistant messages; unsupported from 4.6 onward.
  • Copying old prompt libraries verbatim into Fable 5 systems; over-prescription degrades quality.
  • Shipping thinking-steering phrases without measurement; steering is sensitive to exact wording.
  • Writing one-line tool descriptions; description quality is “by far the most important factor in tool performance.” (https://www.anthropic.com/engineering/writing-tools-for-agents).
  • Requesting reasoning transcripts for UX transparency; use a send-to-user tool or thinking summaries instead.
  • Prompting for parallelism you already have; independent tool calls parallelize by default, and the use_parallel_tool_calls block is a tuning knob, not an enabler.

Sources

Next actions

  • Benchmark two effort levels on a recurring workload and record deltas.
  • Convert one legacy prescriptive prompt to Fable 5 style and A/B the outputs.
  • Re-verify the consolidated guidance page at the next brain refresh.