AI agents · OpenClaw · self-hosting · automation

Quick Answer

Claude Fable 5 Rollout: Claude Code Pro/Max Credits June 22

Published:

Claude Fable 5 Rollout: Claude Code Pro/Max Credits June 22

Anthropic flipped two big switches in three weeks. June 9, 2026: Claude Fable 5 became the default model in Claude Code for Pro/Max subscribers. June 22, 2026: the new usage-credits system kicks in and Fable 5 burns 2x the credits of Opus 4.8. Here’s how to manage the combination.

Last verified: June 10, 2026

The two changes

DateChangeEffect
June 9, 2026Claude Fable 5 launches publicly; becomes Claude Code default for Pro/MaxBetter quality, 2x API cost
June 22, 2026New usage-credits system replaces message-count quotas for claude.ai Pro/Max/TeamHeavy users hit limits faster

The combination is what matters: if you migrated to Fable 5 as the default after June 9 and you have a claude.ai Pro/Max subscription, the June 22 credits change effectively halves your monthly throughput compared to staying on Opus 4.8.

What Claude Fable 5 brings

  • Best-in-class agentic coding — SWE-Bench Pro 80.3% (vs Opus 4.8 71.4%, GPT-5.5 58.6%)
  • Frontier reasoning — GPQA Diamond 87.8%, AIME 2025 96.2%
  • 1M-token context (vs Opus 4.8’s 500k)
  • 128k token max output per request
  • Same MCP tool composition as Opus 4.8 — no migration cost

Coverage: What is Claude Fable 5?

What it costs

ModelInput ($/MTok)Output ($/MTok)Credit multiplier
Claude Fable 5$10$50~2.0x
Claude Opus 4.8$5$251.0x (baseline)
Claude Haiku 4.5$0.80$4~0.16x

Fable 5 is exactly 2x the API cost of Opus 4.8. The usage-credits multiplier roughly tracks that — so a workload that used to fit in your Pro quota on Opus 4.8 will use about 2x the credits on Fable 5.

The June 22 credits change explained

Before June 22, claude.ai Pro/Max/Team had a fuzzy “message limit” — capped roughly by token budget but not exposed. Heavy users often hit invisible throttles unpredictably.

After June 22, you’ll see explicit credit balance:

$ claude usage
Plan: Claude Pro ($20/mo)
Credits this billing cycle:
  Used:      8,420 / 12,000
  Reset:     June 30, 2026
  Burn rate: ~340 credits/day (model: claude-fable-5)
  Estimated runway: 10.5 days

Each model has a credit cost roughly proportional to API token cost:

  • Fable 5 / Mythos 5: ~2.0 credits per 1k input + 10 credits per 1k output
  • Opus 4.8: ~1.0 credits per 1k input + 5 credits per 1k output
  • Haiku 4.5: ~0.16 credits per 1k input + 0.8 credits per 1k output

(Exact ratios may vary by tier and time of day. Anthropic has not yet published a final published-rate table — these are working approximations.)

Practical impact on Claude Code users

Light user (1–2 hours/day of Claude Code)

  • Pro ($20/mo) + Opus 4.8 default: comfortable
  • Pro ($20/mo) + Fable 5 default: might hit quota in last week of month
  • Recommendation: keep Opus 4.8 default; switch to Fable 5 only for hard tasks

Heavy user (4+ hours/day, big agentic-coding workflows)

  • Pro ($20/mo) + Fable 5 default: will hit quota in week 2 or 3
  • Max ($100/mo) + Fable 5 default: comfortable but not unlimited
  • Recommendation: upgrade to Max, use orchestrator-subagent pattern to amplify quota

Pure API user (no claude.ai subscription)

  • Pay-as-you-go API: Fable 5 doubles your bill on migrated workloads
  • Cost-conscious option: use Opus 4.8 orchestrator + Haiku 4.5 subagents (15x cheaper than monolithic Fable 5)
  • Recommendation: be deliberate about which workloads merit Fable 5

How to manage cost — concrete tactics

1. Set explicit defaults and fallbacks

Edit ~/.claude/config.json:

{
  "model": "claude-fable-5",
  "fallback_models": ["claude-opus-4-8", "claude-haiku-4-5"],
  "auto_fallback_on_quota": true,
  "max_credits_per_session": 500
}

2. Pin models per workflow

Use Claude Code’s --model flag for the right model per task:

# Hard refactor — use Fable 5
claude --model claude-fable-5 "Refactor src/api/ to use new error types"

# Routine edit — use Opus 4.8
claude --model claude-opus-4-8 "Fix the lint errors in src/utils/"

# Bulk classification — use Haiku 4.5
claude --model claude-haiku-4-5 "Classify these 100 issues by severity"

3. Use the orchestrator-subagent pattern

For agent workloads, this is the biggest cost multiplier:

# Orchestrator: Opus 4.8
# Subagents: Haiku 4.5 (cheap fan-out)
# Total cost: ~5–10% of monolithic Fable 5
claude --orchestrator claude-opus-4-8 \
       --subagent claude-haiku-4-5 \
       "Audit the entire src/ for dead code"

Coverage: Dynamic Workflows 1000-subagents cap explained

4. Monitor burn rate

claude usage --window 24h
claude usage --by-model
claude usage --by-skill

If burn rate exceeds your budget, switch defaults or upgrade tier.

5. Cache aggressively

Fable 5 supports prompt caching at the standard 90% read discount. For repeated runs (codebase context, prompt scaffolding), this can cut effective cost by 50–80%.

claude --cache-system "Always read this file first" \
       --cache-tools "Use these MCP tools" \
       "Now do the task"

When to upgrade Pro → Max

IndicatorAction
Pro quota exhausted by day 20 of billing cycleConsider Max
Pro quota exhausted by day 10 of billing cycleUpgrade to Max
Pro quota exhausted by day 25Stay on Pro
Fable 5 default + Pro + Heavy agent runsMax is likely cheaper than pay-as-you-go API
Pure API user with $150+/mo billTry Max as a base + minimal API overflow

When to downgrade Fable 5 → Opus 4.8

Practical cases where staying on Opus 4.8 is the smart play:

  • Routine code edits, refactors, lint fixes — quality gap doesn’t justify 2x cost
  • High-volume orchestrator workloads — fan-out economics favor Opus + Haiku
  • Latency-sensitive interactive coding — Opus is snappier
  • Cybersecurity / red team work — Fable 5 refuses more, Opus 4.8 handles defensively
  • Cost-constrained teams — Opus 4.8 is the budget-friendly frontier choice

Coverage: Claude Fable 5 vs Opus 4.8: Should you upgrade?

What’s likely next

Likely changeTiming
Anthropic publishes formal credit-rate tableBy June 22, 2026
Opus 5.0 launchQ3 2026 (Fable-5-level quality at half the price)
Haiku 5 launchQ3 2026 (cheap fan-out gets cheaper)
Mythos 5 trusted-access program for verified researchersQ3 2026
Refinement of Fable 5 false-positive refusals2–4 weeks
Cost-tier auto-routing in Claude CodeQ4 2026
{
  "model": "claude-opus-4-8",
  "fallback_models": ["claude-haiku-4-5"],
  "model_overrides": {
    "hard-refactor": "claude-fable-5",
    "research-grade-reasoning": "claude-fable-5",
    "long-context-analysis": "claude-fable-5",
    "bulk-classification": "claude-haiku-4-5",
    "routine-edits": "claude-opus-4-8"
  }
}

This keeps Opus 4.8 as the cost-effective workhorse, uses Fable 5 only when its capabilities matter, and uses Haiku 4.5 for cheap high-volume work — surviving both June 22 credits and pay-as-you-go API economics.

Sources

  • Anthropic Newsroom: Claude Fable 5 and Claude Mythos 5 (June 9, 2026)
  • Anthropic developer documentation
  • claudefa.st: Claude Fable 5 Benchmarks, Pricing & June 22 Catch
  • llm-stats.com: Claude Fable 5 Review
  • agentpedia.codes: Claude Fable 5 Benchmarks and Prompting Guide
  • TrueFoundry: Claude Fable 5 API Benchmarks Pricing
  • Finout: Claude Fable 5 and Mythos 5 Pricing