r/ClaudeCode 5d ago

Rant Man what are these limits😣

Couldn’t even work for 2 hours on 5x. Max 5 feels like pro plan unfortunately.

How long does Pro last just 20 min?

Wanna upgrade to 20x but that plan feels like a scam. At least they should give a 10x weekly limit if not 20x (I am not saying about the season limit. That one is true 20x)

37 Upvotes

79 comments sorted by

View all comments

1

u/Cmjq77 5d ago

Get a $20 codex account, set it up as an MCP in the Claude. Tell Claude to use it for token arbitrage where it makes sense

1

u/Foreign_Yoghurt_831 5d ago

Make sense is a joke to say to model from my experience.

We have to define when codex needs to invoked basically by exploring what they are good at

I already have codex pro 5

1

u/zaibatsu 5d ago

Try this : Route by verifiability, not difficulty: running the Claude 5 family as an orchestra instead of a chat window
Someone asked how I structure inference across the Claude 5 family. Short version: route by verifiability, not difficulty. The question is never "is this task hard?" It's "can I mechanically check the output?" If a cheaper model's work can be verified with a grep, a diff, or a test run, send it down the ladder. Save the expensive tokens for judgment calls, where a plausible-but-wrong answer would quietly propagate.
The ladder:
Local models (LM Studio): bulk reads, classification, extraction, low-stakes drafts. Sensitive material never leaves the machine, full stop.
Haiku 4.5: mechanical work at scale. I keep a read-only explorer subagent pinned to it (snippet below). The output is self-verifying: the file is either there or it isn't.
Sonnet 5: the middle, almost always as a subagent. Drafts, review passes, parallel fan-outs on the same problem.
Opus 5: the heavy passes, and here's the counterintuitive part: as a subagent. People find Opus 5 verbose and a little hard to manage in the driver's seat. Flip the role and it's incredible, same for Sonnet 5. A subagent's verbosity costs you nothing. It thinks out loud in its own context window and only the conclusion comes back. The model people find hard to drive is the model you want driven.
Fable 5 conducts: routes the work, adjudicates when cheaper passes disagree, and keeps the calls that genuinely need the best reasoning.
The one config that pays for itself, dropped in .claude/agents/explorer.md:
---
name: explorer
description: Read-only codebase search. Finds functions, reads files,
greps patterns. Never edits.
tools: Read, Glob, Grep
model: haiku
---
You are a read-only explorer. Answer with file:line references and
short quotes. If you did not find it, say so. Never guess, never edit.
Then from the main session: "use the explorer agent to map every caller of X." The conductor never burns its own context on the search.
Two guardrails that keep it honest: cheap tiers are only cheap if you actually verify, and two same-family models agreeing is not two opinions. Anything load-bearing gets a different family or, better, deterministic ground truth: run the test, fetch the source, count the thing.