Deep Dive · XiaoHu Explains

Working With Claude Fable 5, the Real Skill Is Finding Your Own "Unknowns" First

Anthropic's Thariq sums it up: when working with Claude Fable 5, the quality of the output comes down to whether you can clearly articulate your own "unknowns." This field guide lays out 8 techniques for surfacing unknowns across the before, during, and after stages of implementation — each one paired with a prompt you can copy and use directly.
60-Second Overview
  • Anthropic staffer Thariq published a long-form post summarizing a set of practical techniques for locating "unknowns" when working with Claude Fable 5.
  • The core framework sorts unknowns into four types: known knowns, known unknowns, unknown knowns, and unknown unknowns.
  • 8 specific techniques are spread across the "before / during / after implementation" stages, covering blind-spot passes, reverse interviews, reference source code, implementation notes, quizzes, and more.
  • Every technique comes with the original English prompt you can copy and use directly.
  • The case study section shows how this method was applied to editing the Fable launch video — a domain the author himself wasn't familiar with.
Stance note: the author, Thariq, is an Anthropic employee (Claude Code / Claude Design team). The methods in this piece center on Anthropic's own model, Claude Fable 5, and the example prompts and case studies all come from his own project work.
1Who Wrote This, and What's Actually the Bottleneck

Working With Claude: What's Actually the Bottleneck

Thariq, a member of Anthropic's Claude Code / Claude Design team, published a long-form post on X on July 3, 2026, summarizing a set of practical techniques for locating "unknowns" when working with Claude Fable 5.

Coding alongside Claude Fable 5, the author found the quality of the work kept snagging on the same thing: whether he could put into words the "unknowns" he hadn't fully thought through himself. This piece breaks "finding your unknowns" down into 8 actionable techniques, each with a prompt you can copy straight off the page.

Why it's worth reading: the author is a member of Anthropic's Claude Code / Claude Design team, and the 8 techniques are distilled directly from real projects — including editing the Fable launch video — grounded in hands-on experience. Every technique comes with the original English prompt, ready to copy and use.

The old saying the author keeps coming back to: the map is not the territory. The map — a simplified description of the work to be done — is the prompt, skill, and context you give Claude. The territory is where the work actually happens: the codebase, the real world, its real constraints. The gap between the two is what he calls an "unknown." When Claude runs into an unknown, it can only make a decision based on its best guess at what you want. The more work there is to do, the more unknowns it's likely to run into.

N Map · the prompt you give Claude Gap = unknown Territory · the real codebase and constraints
The map is a simplified description; the territory is where the work actually happens — the two never quite line up. The compass needle drifts slightly as you scroll, a reminder that the gap is always there.
Map vs. territory diagram
Original figure: the map is the prompt, skill, and context you give Claude; the territory is the real codebase and real-world constraints where the work happens. The gap between them is the "unknown." Source: X · Thariq

The author says Fable is the first model that made him feel the quality of the work was bottlenecked by his own ability to articulate his unknowns. And planning ahead alone isn't always enough: an unknown can be buried deep in the implementation and only surface partway through, or it can flip around and tell you the problem actually needs a completely different approach. So working with Fable becomes a process of continually discovering your own unknowns before, during, and after implementation.

4
types of unknowns: known knowns / known unknowns / unknown knowns / unknown unknowns
3
stages: before / during / after implementation — the techniques are organized around them
8
copy-ready techniques, each paired with an original English prompt
1
running analogy: the map is not the territory — the gap is the unknown you're looking for
2Four Kinds of "Not Knowing"

Which Kind of "Not Knowing" Are You Actually Missing

Whenever the author brings a problem to Claude, he starts by sorting his unknowns into four boxes. The bigger the job, the easier it is to fall into the last two boxes — the things you never even noticed, or the things so obvious you'd never think to write them down.

Known Known

The part you spell out in the prompt — what you explicitly tell Claude you want.

Example "I want a login button, place it in the top-right corner."

Known Unknown

The part where you know you haven't figured it out yet, but you're aware there's a gap here.

Example "Not sure yet whether this list needs pagination."

Unknown Known

Common sense so obvious you'd never write it down — but you know it's wrong the moment you see it.

Example "This color scheme is too jarring — one glance and you know it's off."

Unknown Unknown

A blind spot you never even considered — you don't even know how good this could be.

Example "Turns out code can automatically cut out the pauses in a video."