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

Setting Up OpenClaw as an Always-On AI Assistant
OpenClaw, configured as an always-on AI assistant for a small dev team, is set up on a Railway server with Claude as the backend and integrates with Google Workspace, GitHub, and more.

Claude Code now supports 240+ models via NVIDIA NIM gateway — including Nemotron-3 120B for agentic coding
Claude Code can switch mid-session to 240+ NVIDIA NIM models via the /model command. The Nemotron-3 Super 120B thinking variant shows strong results for multi-file refactoring and agentic tasks.

Engram: A Learning Plugin for OpenClaw That Actually Makes Knowledge Stick
Engram is an OpenClaw plugin that uses neuroscience-based techniques like pre-testing, blind grading, and FSRS-4.5 scheduling to ensure you retain what you learn, even as AI agents accelerate your shipping.

Wrangle: A Native macOS Editor for Managing Claude Code Sessions
Wrangle is a native macOS markdown editor built specifically for managing multiple Claude Code sessions, featuring embedded terminals and smart notifications. The developer created it after VS Code couldn't keep up with their daily workflow of running many Claude Code sessions.