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

Brackish: Let Two Claude Code Instances Negotiate an API Contract via OpenAPI 3.1
Brackish is a CLI tool that runs between two Claude Code sessions — one on the backend (FastAPI) and one on the frontend (React/TypeScript) — to negotiate an API contract via a shared OpenAPI 3.1 document. It surfaces disagreements before code is written.

Local PII Redaction Skill for OpenClaw Uses GLiNER Model
A new OpenClaw skill intercepts outgoing responses and runs them through the local nvidia/gliner-PII model to detect and redact sensitive information like API keys and PII, replacing them with labels like [API_KEY] and adding removal notices.

RelayCode VS Code Extension Routes Claude Code Through Sovereign RDUs
OpenGPU has released RelayCode, a VS Code extension that acts as a local proxy to route Claude Code or Copilot requests through their decentralized network to open-weight models like DeepSeek-R1 and MiniMax M2.5 running on sovereign reconfigurable dataflow units.
m365-mcp: OpenClaw Skill with 43 Tools for Outlook, Calendar, OneDrive, Teams, and Tasks
Tired of half-baked M365 integrations, a developer built m365-mcp, an OpenClaw skill exposing 43 Microsoft Graph tools for Outlook, Calendar, Contacts, OneDrive, Teams, and Tasks.