Fable 5 in Claude Code: Day One Cost Analysis — $210 API-equivalent, $0 Paid

A developer on r/ClaudeAI switched their Claude Code default model to claude-fable-5 on launch day and tracked the entire day's usage using Claude Code's built-in session logs. The results: 742 Fable replies across 5 sessions, with an API-equivalent cost of $210.15 — but $0.00 actually paid thanks to the plan window ending June 22.
Methodology
Claude Code writes session logs as local JSONL files, including per-message token usage. The developer parsed every Fable message across all projects and priced them at published API rates:
- Input tokens: $10 per million
- Output tokens: $50 per million
- Cache reads: 0.1x base input rate ($1 per million)
- Cache writes: 1.25x base input rate ($12.50 per million)
Day One Totals
- 742 Fable replies across 5 sessions
- 77,885 input tokens / 938,211 output tokens
- 124.3 million cache read tokens, 3.0 million cache write tokens
- API-equivalent cost: $210.15
- Actual cost: $0.00 (included in paid plans until June 22)
The heavy output token count (938K vs 78K input) is typical for Claude Code's agentic loops — the model iterates, generates code, and revises. Cache reads dominate at 124.3M tokens, indicating effective prompt caching.
Practical Takeaway
If you're on a paid plan, Fable 5 is available at no extra cost until June 22. The API-equivalent pricing gives a sense of the resource consumption; actual plan costs are fixed. To replicate this measurement, parse the JSONL session logs under ~/.claude/sessions/.
📖 Read the full source: r/ClaudeAI
👀 See Also

Phaselock: An AI Agent Control System Inspired by Parenting Techniques
Phaselock is an open-source Agent Skill that implements four control mechanisms for AI coding agents: explicit gates before action, immediate feedback on mistakes, constrained choices, and mechanical rule enforcement. It works with Claude Code, Cursor, Windsurf, and any tool supporting hooks.

Nyx: Autonomous Testing Harness for AI Agents
Nyx is a blackbox testing harness that probes AI agents for failure modes like logic bugs, reasoning failures, and security vulnerabilities through multi-turn adaptive conversations. It tests in under 10 minutes what manual audits take hours to surface.

Slides-grab: Visual Editor for Fixing HTML Slides Generated by Claude Code
Slides-grab is a tool that lets you drag elements on HTML/CSS slides generated by Claude Code, then sends XPath and a highlighted screenshot to the AI agent for precise editing. It addresses the pain point of fixing small layout issues through text prompts alone.

Turn Your Knowledge Base into a Wiki + MCP Server for Claude
A demo of Akyn transforming a knowledge base (URL, PDF, Notion) into a wiki and exposing it as an MCP server, enabling Claude to query and write back — with OAuth, human-in-the-loop, and auto-sync.