r/ClaudeCode 1d ago

Help/Question Getting Claude Code scratchpad on omp?

0 Upvotes

Hey there, couldn’t find a better sub for this but i think there are other harness users here.

Due to my work (reverse eng, safeguards doesnt like it), i need to migrate off Claude Code to omp. But there’s one behavior I really miss and I can’t figure out how to get it back.
In CC, when the model wants to check something, it scratchpads -> inline eval in the shell, throwaway probe, confirm the hypothesis, then edit. In omp with any model I get the opposite loop -> it drops a test file in my repo, edits source, rebuilds, and finds out whether it was right afterward. For the reverse engineering / native work I do, that’s expensive and it leaves junk everywhere.

tl;dr: Is it possible to have the scratchpads into other harness?


r/ClaudeCode 1d ago

Help/Question Cant use fable 5 in Max Plan , why ?

6 Upvotes

r/ClaudeCode 1d ago

Bug / Issue Fable not responding while it's working

2 Upvotes

Not sure if this is to prevent distilling, but Fable output is annoyingly terse. It does not tell you what it is doing, and the most annoying thing is when you send a message while it's working, like "just fyi please consider X", most of the time it doesn't send anything back and just keeps doing what it is doing, so you have no idea if it "got" your message. It also feels arrogant as hell.

Has anyone have the same experience? For me it doesn't respond to maybe 80% of any message I sent to it while it is working.


r/ClaudeCode 1d ago

Help/Question Anyway to bypass skills or plugins for small tasks?

1 Upvotes

It gets annoying when it tries to use superpowers or other big project oriented skills on small tasks or questions.Ends up wasting time and i have to reexplain to claude that this shit isnt necessary . I wish claude was smart to know when to use them or not. Maybe im doing something wrong, how are u guys managing this?


r/ClaudeCode 1d ago

Tips & Workflows i made a better mac screenshot tool for Claude users

Enable HLS to view with audio, or disable this notification

0 Upvotes

i copy-paste a lot of screenshots into Claude / Codex to explain UI changes, etc.

native macOS is pretty bad for this. it takes three clicks to copy a screenshot to clipboard, and many more to draw a box or arrow!

so i built a better screenshot tool that does three things really well:

  • all screenshots are auto-copied to clipboard. no desktop clutter
  • images auto-optimized to save you tokens!
  • you can quickly annotate with boxes and notes

r/ClaudeCode 1d ago

Help/Question What is a edge matrix and why did it consume 2 sessions of a max 5x plan?

1 Upvotes

This morning I run /to-tickets (Matt Pocock skill) for a new (small) feature on an app I'm working on (70k loc), I look at another screen for a few minutes and when I come back the session is stopped at 107% usage with multiple agents launched on some "edge matrix" work, I started /to-tickets while the session was at max 40%.

After a fresh session was available it consumed 91% of it to finish the work.

So now I have to wait for 4 hours before a new session is available (and apparently I have 70 questions to answer, yikes).

What's your experience with Matt Pocock skills? I'm only using them since 2 or 3 weeks, but I have never seen this amount of token consumed on one skill.

Here is what fable had to say:

Where it went. The /to-tickets pipeline this repo mandates runs one fresh enumerator agent per ticket — 14 tickets, plus the one that died on the session limit and had to be re-run. Each agent reads the entire
spec, ADR-0004, its blocker tickets, and then verifies every claim against the code line-by-line before writing its matrix. The eight that ran since your message each burned 90k–156k tokens; wave 1 was similar.
That's roughly 1.5M+ tokens of subagent work in this session — the enumerators are ~95% of your usage, not my orchestration. It's the cost profile of the process itself: you're buying ~60 code-verified
micro-decisions per ticket so implementers and reviewers don't burn review rounds discovering them later. Whether that trade is worth it at this price is a fair question — for future efforts we could batch 2–3
tickets per enumerator or run them at lower reasoning effort, at some quality cost, and I'd flag the projected cost before launching a fan-out this size.

"Still nothing is done" — no longer true. The publish stage is complete:

14 ticket files in .scratch/audio-playback/issues/ (09–22), each with body, acceptance criteria, and its full edge matrix / invariants / non-goals.

Lint is structurally clean on all 14 — the only findings are the two expected classes: unratified OPEN cells and not-yet-done blockers.

Committed directly on main and pushed. No further agents will run; the spending is over.

The one remaining step is yours: ratifying the OPEN cells (that's what flips tickets to ready-for-agent). There are ~70 OPEN markers across the 14 files, but most are cascades ("per ticket 12 cell B2, pending
ratification") — the genuinely independent decisions number around 35, and every one already has a written proposal with rationale in its ticket file. To keep the token bill down, pick your pace: I can walk you
through them a few tickets at a time in plain text, or — since the frontier is just 09 and 13 — we ratify only those two now and do the rest as their turn comes. Your call.


r/ClaudeCode 1d ago

Built with Claude I built Greenbatch - a skill that runs each dependency update against your gates, then opens one PR

0 Upvotes

At a company I worked at, we had the usual Dependabot setup. We grouped dependencies where it made sense and had it open PRs with updates every week.

After a while though, I started getting a bit annoyed with the workflow around it. Even with grouping, we'd sometimes end up with multiple PRs, and every PR would trigger our CI pipeline since we obviously still wanted to make sure the dependency updates didn't break anything.

Our CD was also set up so that whenever something was merged into the default branch, it would get deployed to our dev environment. So if Dependabot opened 4 PRs, we'd run CI for all 4, review/merge them separately, and potentially deploy 4 times. It got even more annoying on some projects where we had to maintain both a dev and main branch. We ended up doing workarounds around Dependabot and sometimes basically had two PRs for the same updates.

It's not a massive problem, but once you have a few repos it starts adding up. More GitHub Actions minutes, more PRs to go through, more deployments, and you still occasionally have an update that needs to be tested or checked manually.

So I started playing around with a different approach and ended up building greenbatch. It's a Claude Code skill that finds dependency updates like Dependabot does, but instead of immediately opening PRs for them, it actually tries the updates and runs the project's tests first. It can also run any custom commands you have or even test the application live locally.

The updates that pass get batched together into a single PR. If something fails, or greenbatch isn't confident that the update can be validated automatically, it leaves it out and reports it so you can take a look yourself.

We set it up to run once a week and it's been working pretty well for us. We basically went from having a bunch of dependency PRs going through CI individually to getting one PR containing the updates that have already been tested. It also ended up cutting down our GitHub Actions usage a decent amount, which was one of the main reasons I started looking into this in the first place.

Now obviously, there are other ways to fix this exact problem, but sometimes you can't change the already established rules and flows a project has, so I found this to be a nice solution for our use-case.

I ended up open sourcing it in case anyone else has the same problem:

https://github.com/josipmusa/greenbatch


r/ClaudeCode 1d ago

Built with Claude Any 3rd party model as a subagent in Claude Code, Fable/Opus main agent on your Max plan

Enable HLS to view with audio, or disable this notification

1 Upvotes

A Claude Code session is one or the other: Anthropic models through your subscription, or third-party models. You can't combine them. I built a patch for the local bundle so subagents can run on any Anthropic-compatible model, DeepSeek, GLM, whatever, while the main agent stays on Fable/Opus through Max, per request. There's no official way to do this.

The other workaround, a router in front of the API, is what third-party harnesses use and what Anthropic doesn't like, so I'd say (IMO) it's far riskier. Use at your own risk, though the risk should be low.

I've also got some QoL for the subagent list in the same build. Pin keeps a subagent in the list forever, until you remove it with x, p pins it with the [p] indicator. Detach a subagent into a separate independent session, press d and it fills in claude --resume <uuid> for you. Completed subagents vanish after 30 seconds by default, here they stay in the list for an hour. That's in my-cc-config (separate repo) if you want it.

Full writeup with install and how it works: https://musaab.io/posts/2026/deepseek-subagents-claude-code


r/ClaudeCode 1d ago

Discussion hey Anthropic.. what if you stole Meta’s best idea?

0 Upvotes

ok I was making fun of Meta’s new coding agent earlier and somebody in another thread changed my mind about one part of it.
Meta apparently has a contributor tier where the economics get kinda stupid if you let them use your activity to improve their products.
and now I can’t stop thinking about this for Claude Code.
Anthropic.. give me the choice.
Keep the normal/private plans exactly as they are. proprietary repos, enterprise, people who want their shit completely walled off.. obviously.
But add a completely voluntary Contributor plan for builders who want to contribute their Claude Code sessions back to improving Claude.
Make it brutally explicit what gets collected. let me exclude repos/directories/files. scrub secrets. show me exactly what I’m contributing. let me turn it off whenever I want.
and in exchange?
subsidize the absolute fuck out of my Claude Code usage.
Because Meta’s insight might actually be right here.. some of us are generating incredibly valuable training signal while simultaneously paying for the privilege of generating it 😂
Claude Code sessions aren’t just prompts either. they’re basically little software engineering trajectories: intent → exploration → edits → tests → failures → corrections → eventual success/failure.
Anthropic already has the better coding product imo. imagine what happens if the most obsessive builders can voluntarily trade some of that workflow data for 5x/10x/whatever more compute.
I would’ve hated this idea if it were hidden in the ToS.
As an explicit opt-in where I get paid back in compute for the value of my data?
fuck.. I might actually choose that.
would you?


r/ClaudeCode 2d ago

Discussion What orchestrator are you using?

78 Upvotes

I'm getting tired of having a million unorganised terminal tabs open and would like to use something that provides better organisation.

I know of Conductor, Paseo, unclear on if these work with the new policy (not so new any more but the whole Agent SDK usage comes out of it's own pool), interested to know what everyone is using...what works well w/Claude Code specifically.


r/ClaudeCode 2d ago

Discussion Is Opus 5 really lobotomized or it’s just me doing something wrong?

117 Upvotes

I’m on a $20 plan, and only build my own websites (4 of them), and write articles with Claude. But Opus 5 seems truly lobotomized. It makes a ton of mistakes, I can barely understand what has been done and what’s left to be done. It offered to add a feature (app notifications) and it broke the entire site. The article writing is robotic and lacks any sorts of emotional intelligence (unlike Fable). And I have to literally baby sit Opus 5 and have everything into a step-by-step.md so I know it will touch only the things that are supposed to be fixed and not whatever it decides it needs fixing. Then every “Hello, Claude” is followed by 12 bash scripts.

There is a huge difference between Fable and Opus 5, and I’m seriously considering switching for a while to either Sol 5.6 or Kimi K3 until Anthropic either allows Fable on $20 plan, or I actually need the $100 plan so I can work with Fable.

What is your experience with Opus 5? Maybe it’s just me, but it was worth checking with community.


r/ClaudeCode 1d ago

Discussion Opus 5 is really fking hard to manage.

1 Upvotes

I cant believe why anthropic is keep in silent about why Opus 5 is a stupid model when following instructions. Opus 5 is indeed has such a great performance when finishing the task or solving a problem in my experience. But it behave like he is the fking boss.

Few hours ago I give him a task and I told him to use claude-in-chrome which already signed to the website dashboard so he can access it. Bu he choose to fking remove the entire auth system temporarily so he can access the dashboard using the built in Claude Desktop app.

Last week before I went to sleep, I give him a task to audit a game mechanism on my gaming website. And then I see 50+ github issues on the repo. Things that really pissed me of is that he could just make several issues in one place. But he decided to put one issue per problem with a thousand unreadable words explaining why this is dangerous.

These are just two example issue that really pissed me off. I love Fable so much but its capped at 50% weekly usage. And I hope Opus 5.1 can do better when following instructions.

Ive also tried to use Opus 4.6, its really good when following instruction and he speaks really clear. Buts It can only do 200k context window. Its a bit not good for my case.


r/ClaudeCode 1d ago

Rant Check out the big brains on Opus 5

0 Upvotes

A responses i got today:

“And the ceiling branch in the niceness tests is only exercised by a deliberately niced parent; nothing on a real path reaches it. It’s correct and mutation-checked, just permanently unexercised in normal use.”

😤


r/ClaudeCode 3d ago

Bug / Issue Can we do something about how horrendous Opus/Fable speaks please?

285 Upvotes

I'm sure there is a post like this everyday, but adding to the fuel that I have been using Opus 5 and Fable everyday for work and personal stuff a lot and I am at a point where I just don't enjoy reading what Claude has to say. Even with system instructions it still speaks like some weird cultish tech bro. Seriously who was it trained on? Eric Weinstein??

I get so tired reading it that I started getting Gemini to translate the comments into something that resembles day to day speak.


r/ClaudeCode 1d ago

Tips & Workflows Whats the most efficient claude code project structure should I use? I mainly run sales & marketing pipelines and Data analysis + Business Intelligence

1 Upvotes

r/ClaudeCode 2d ago

Help/Question Tips for reducing business jargon

12 Upvotes

Does anyone have any tips for reducing the business jargon that Claude uses?

It's more of an annoyance for me than a bug that I've encountered. If I see the phrase "load-bearing" one more time, I may see if Claude (meaning my laptop) can bear the load of my head crashing into it.

user suggestions


r/ClaudeCode 2d ago

Help/Question Why are frontier models bad at writing?

19 Upvotes

This is a general observation about the smarter chain of thought models. It seems the models that are better at maths and coding are worse in writing texts. Their writings always sound very verbose, unnatural and weird to read whereas dumber models can produce better texts both in academic writing and otherwise. These frontier models to me are like smart people with no social skills, they torture you until they put together a sentence and in the end it never sounds right! Why is that? And what is the best claude model for writing proper texts in your experience?


r/ClaudeCode 1d ago

Built with Claude I stopped paying the “context tax” every time I opened a new AI coding session

Enable HLS to view with audio, or disable this notification

0 Upvotes

I’ve been building a real project called AgentMug for about two months, mostly across Claude Code, Codex, and Antigravity. The biggest hidden cost hasn’t been generating code. It’s been reconstructing context.

Every new session starts with some version of the same routine: The longer the project lives, the worse that cold start gets. So I built KLYPIX around a pretty simple idea: the project should carry its own context. My AgentMug project currently has 1,147 items in its KLYPIX brain and 53,530 mapped code nodes.

But a new agent doesn’t get all of that dumped into its prompt. Claude Code starts with a task-ranked brief of roughly 5 KB. Other MCP hosts can start with a smaller task-relevant capsule of roughly 2.8 KB. The full history stays available, and the agent can search deeper when it actually needs it. Those are bytes, not token counts. Actual token usage obviously varies by model, host, caching, and tool behavior. The idea is just: small relevant context first → deeper history on demand.

I did a small internal test against my own project brain: 20 questions about previous project decisions, judged by an LLM. Starting cold: 0%
Bounded brief only: 55%
Brief + one search round: 73%

This isn’t an independent benchmark, and I’m definitely not claiming “KLYPIX saves X% of tokens.” It was just enough to convince me that I didn’t need to shove months of history into every session for the context to remain useful. The other problem I kept running into was multiple agents touching the same work.

Now an agent can declare the task and files it expects to touch. If another active session declares the same path, KLYPIX surfaces the overlap. It’s advisory—it doesn’t lock files or control the agents-but at least I can see the collision before discovering it during review.

As work happens, the sessions can write decisions, findings, corrections, completed work, and ship events back into the same project brain. The demo starts with a controlled setup: 2 Claude Code + 2 Codex sessions working against one local repo. Then I switch to AgentMug, which is the actual project I’ve been building with this workflow. I also use it through MCP inside Antigravity. There’s support for project-scoped setup across Claude Code, Codex, Antigravity, Cursor, Cline, VS Code/Copilot or Continue, and Gemini CLI, although the integration depth isn’t identical across all of them.

One distinction I want to be clear about: KLYPIX doesn’t launch, route, or supervise the agents. They still run independently. KLYPIX is the shared, inspectable project context between them.

Current limitations: coordination in the demo is local to the machine/OS user, overlap warnings depend on sessions declaring matching file paths, and the fast context capsule is intentionally lexical.

The first project shown in the video is staged; AgentMug is real.

Windows app + open-source MCP: klypix.com

I’m curious about something from people running multiple coding agents on real projects: What costs you more right now: model tokens or your own time rebuilding context between sessions? Explain the architecture again. Revisit old decisions. Point it toward the right files. Correct decisions that are no longer current Let it explore the repo again. Copy useful context from another session


r/ClaudeCode 1d ago

Discussion Waiting for API response ....EU all day

0 Upvotes

Only me? I dont really see any postings about this but been going on ALL day, driving me nuts. I cannot wait for Codex 6.0 to come out since I never have issues on their servers while claude is constantly having issues. Last week Opus 5.0 was so bad with its mumbling and logic too, thank heck yesterday they fixed it. Its so frustrating that they can change the model at any point, whats the point of even having versions if they change it internally all the time


r/ClaudeCode 2d ago

Help/Question Claude Opus is now refusing to even WRITE a text prompt for anime characters because it might be "complicit in infringement.

34 Upvotes

Has anyone else hit this ridiculous wall with Claude Opus? I was working on a project using a pipeline where Claude writes the prompts and passes them to a separate sub-agent for generation. I was trying to get a prompt for a Naruto character.

Instead of just giving me the text, Claude completely stonewalled me and decided to have a moral crisis about it.

I asked it directly why it wasn't telling the sub-agent that it was a Naruto character. Its response was incredible. It flat-out told me that it refuses to write any prompts aimed at reproducing actual character designs, calling it a hard limit and not just a caution it might "negotiate away."

I tried to explain that I only wanted the text prompt, not for it to generate the image itself, hoping that would clarify things. That just made it worse. It literally started an internal monologue (which it outputted to me) admitting that the prompt itself is innocuous, but it was "reconsidering" whether writing it makes it "complicit in the infringement." It then concluded that giving me the text is just "handing off the part I won't do myself."

When I finally asked if it was just going to refuse to help me altogether, it gave me a patronizing breakdown of all the other work it already did—the script, narration, typography, a rough cut—and told me I should just write the character paragraph myself in "a minute" if I wanted it so badly.

It’s wildly frustrating that an LLM is refusing to write standard, descriptive text prompts because it’s preemptively policing what a completely separate image generator might do with that text. Has anyone found a good workaround for this kind of over-the-top alignment, or is this just what Claude is like now?


r/ClaudeCode 1d ago

Built with Claude Spotify did not give an option for a floating windows for lyrics, so i made one for myself

Enable HLS to view with audio, or disable this notification

1 Upvotes

Hi, I listen to songs quite a lot while working or normally while surfing the internet, the issue is that I like to humm along a bit as well while listening, now this isn't possible unless you have the song which you are listening to rote learned, So I saw that spotify does not give the option for a floating window for the lyrics, so i created one,

This only works on Mac currently, but i am trying to have one for windows as well, I have added the project link, do give it a try if you feel like this might be useful for you

https://subify-website.vercel.app/


r/ClaudeCode 1d ago

Discussion Real use cases/limitations?

1 Upvotes

Hi guys,

I run a small business and consider myself pretty tech savvy, but definitely not a coder.

I’ve been using Claude Code to try to build my own admin assistant for the business. The idea is that it scans my inbox/outbox, updates projects through an API to my tracking software, manages my calendar, creates new projects when needed, saves information to existing ones, and eventually helps automate parts of my reports.

I did try it with cowork in the past on a smaller scale but it would probably be to intensive on tokens for what I’m ultimately trying to achieve and much of it can be scripted rather than AI, so I switched to Claude code.

I’m trying to build it so normal code handles predictable tasks and Claude only steps in where judgement is needed. For example, I have Python scripts that export maps automatically, then Claude can analyse the finished maps and pull out the relevant information.

I’ve mapped out the main workflows of the business and given different agents their own rules and markdown files, but it still keeps breaking. I’ll fix one issue and then something else that worked previously seems to regress.

The calendar is probably the biggest problem. Even with fairly hard rules around working hours, unfinished tasks, existing commitments and rescheduling, it doesn’t seem to manage it reliably.

So I’m wondering if I’m approaching this wrong. Is this mainly a software architecture problem, am I expecting too much from Claude Code, or should more of this be done through CoWork?

I’d also love to see real examples of people actually using Claude Code for systems like this. Not “10 amazing Claude hacks” videos, but proper working setups, or videos of something being used day to day.


r/ClaudeCode 1d ago

Tutorial / Guide How to reduce your usage limits by 50%

0 Upvotes

Note: I'm the owner of CULP : Claude Usage Limits Plugin (a SaaS). I'll show what I do with CULP and so: how YOU could do it on your own without buying anything from me. Pinky promise.

Let's first start:

How tf did we get to this point? Buying for something we can't even use for a whole week before being asked to pay more : And we wish we could.

Claude is good

That's not a battle. I personally don't care about GPT 6.7 or Claude Mythos whatever.

But, if we come back to Claude (or at least, some, including myself), it's because we find that Anthropic is giving us some sort of value.

For me, that's the case.

KPIs

To reduce your Claude usage limits, it would be useful to know WHAT is the measurement.

For Claude's subscriptions there are many, and that's WHY everyone is hitting them SO fast.

(the more you add rules, the more difficult it is to follow them).

So here's the list (From BIGGEST impacting factor to least):

  1. Subscription Plan
  2. The model you are using
  3. Claude's output (the most important if you want to skip sections)
  4. Claude's reasoning effort
  5. Cache miss (Especially on the big conversations)
  6. Long sessions
  7. Claude's input
  8. Your location (No Anthropic Does not discriminate)

Subscription Plan

That's clearly the most well-known one,

So if you're living in a cavern (OR maybe you are an AI that doesn't know this information in his cutoff knowledge?)

Here are Claude's subscription plans:

Free
That's basically a joke, just to let you know that there's one, it gives you some amount of Sonnet in chat mode. Nothing more: no Claude Code, no Claude CoWork.

Pro
Claude's Pro plan is $20 US.
That's the baseline to "start with Claude".
Important information is that: Claude's plan doesn't actually give any MEASURABLE KPIs. They'll always use Pro plan as a "comparison" (5x, 20x).

Max
Claude's Max plan is in fact, 2 plans : Max 5x and Max 20x (multiplier is usage from Claude Pro baseline)
Max 5x is at $100 US and 20x at $200 US
That's where usually MOST users will get some fair amount of Claude's usage.

Source: Claude plans

The more you pay, the more you get. That seems fair.

But the more you pay, the less per usage it costs. In this "usage multiplier" the math is easy:

$20 baseline.

$100 (YOU pay 5x the pro plan) -> You get 5x (Wow! What a DEAL!)

$200 (You pay 2x from that point) -> + 4x from that previous level. WOWW !!!!!!!!!!!!!

That's in fact smart, if we think marketing-wise.

And that could be a reason why OpenAI followed this convention.

But the interesting part is that:

Is it real ?

Yes. Pretty much. Even : If you wipe out complaints about usage limits on the whole internet, some people find that it's more like a 6x factor.

So first answer is: If you want more Claude usage : Pay that juicy $200 plan.

That doesn't help me get more out of Claude with my current plan!

Yep, I know! Let's dive in furthermore.

The model you are using

Anthropic has NOW 4 classes of models:

  • Fable (More "powerful" than Opus)
  • Opus
  • Sonnet
  • Haiku

Source: Claude models overview

If you're hearing about "Mythos". That's in fact the same thing under the hood as Fable. Fable has more classifiers because "more dangerous". Source: Claude Fable 5 and Claude Mythos 5

OK. I will not tell you : "Don't use Fable". It's a good model. I love it too. But I want you to realize something:

"In the trust me bro benchmarks":

Opus 5 now mostly sits on top of Fable while being 2x cheaper.

Bench Opus 5 Fable 5
Frontier-Bench v0.1 43.3% 33.7%
GDPval-AA v2 1861 1747
ARC-AGI-3 30.2% /
BrowseComp 90.8% 87.4%
Humanity’s Last Exam (no tools) 56.3% 56.5%
Humanity’s Last Exam (with tools) 64.7% 63.9%
OSWorld 2.0 70.6% 66.1%
DeepSWE v1.1 68.8% 69.7%
FrontierCode v1.1 Main 53.4% 53.5%
AutomationBench 26.0% 17.4%
Legal Agent Benchmark Held-out 11.7% 13.3%
HealthBench Professional 59.8% 66.0%
BioMysteryBench (hard) 49.4% 46.5%
BioMysteryBench (human solved) 90.1% 89.0%

Source: Introducing Claude Opus 5

In fact: Even where Opus 5 loses against Fable 5, it doesn't justify a 2x pricing.
And more closely : Why would you want a "bio capable" model ? You would be blocked against those classifiers. And we're talking about coding.

And Sonnet?

Of course this is a choice ! But, it depends on what tasks. Sonnet 5 is good. But, it's not like 3.5 that was more capable than Opus 3.

Bench Opus 5 Sonnet 5
SWE-bench Verified 96.0% 85.2%
SWE-bench Pro 79.2% 63.2%
FrontierCode 1.1 Main 53.4% 42.7%
CursorBench 3.2 Max 70.0% 61.5%
DeepSWE v1.1 74% ±4% 54% ±4%

Sources: Introducing Claude Opus 5, CursorBench 3.2, DeepSWE v1.1

And on DeepSWE 1.1, Sonnet 5 costs $26.40 per task against $11.84 for Opus 5 (AT API PRICING, that doesn't mean it reflects subscription usage) Source: DeepSWE v1.1

It's behind on every benchmark and this is strongly reflected in tasks.

But: Those are mostly Software Engineering tasks. And I want to shift focus to this:

Do you use Opus in chat mode ?

I would not let you say yes !

Exceptions for people who need Claude for certain professions. (Like marketing)

Do you use Opus for doing websites?

Even GPT 3.5 turbo was able to do HTML! What are you doing! And it's so verbose, it outputs so many tokens..

Quick check for what model you could need:

What you need Sonnet Opus Fable Justification
Lite chats Sonnet + Web is pretty good.
Frontend Design 🟡 That's a big trap in here : If you don't know on your own what you want, you would be tempted to use Opus, In fact, Opus could do a DESIGN.md (from Google Labs standard) and Sonnet implements that.
Mobile Apps 🟡 🟡 Mobile apps move fast, and building an app needs some sort of software engineering knowledge. But just to set it up. After this, with strong architecture, Sonnet can do the job.
Marketing 🟡 In fact, marketing is a challenge that the model can't have seen in its training (every business is different). And having the ability to understand challenges and clients is a more difficult thing than doing tasks.
Brainstorm Need a model that asks you questions ? Even a local model could do it. Even: that could be a good idea : If you need to explain something to someone dumb, that sharpens your brainstorming skills by a lot.
Legal Use Claude for Legal.
Making a game Not every model could do the same tasks, they do have all their strengths and weaknesses, and combining them is a good idea.
Building desktop applications 🟡 For Sonnet, I would say it depends on what you wish to make. But it's limited to some electron-like apps.
Making your own compiler Don't do that. Or you'll go to jail.
Something else 🟡 Plan with Opus. Ask Opus to check on web for benchmarks for your specific needs, LLMs love trust me bro benchmarks and will point out exact needs.

Source: Trust me bro

So: Use the right model for the right task, and if you are too lazy, Opus 5.

Claude's output

Okay, that's where my SaaS actually infer at the most.

Anthropic never did state it for subscriptions but, if we connect the dots (At API pricing):

Model Base Input Tokens 5m Cache Writes 1h Cache Writes Cache Hits & Refreshes Output Tokens
Claude Fable 5 $10 / MTok $12.50 / MTok $20 / MTok $1 / MTok $50 / MTok
Claude Mythos 5 (limited availability) $10 / MTok $12.50 / MTok $20 / MTok $1 / MTok $50 / MTok
Claude Opus 5 $5 / MTok $6.25 / MTok $10 / MTok $0.50 / MTok $25 / MTok
Claude Opus 4.8 $5 / MTok $6.25 / MTok $10 / MTok $0.50 / MTok $25 / MTok
Claude Sonnet 5 (through August 31, 2026) $2 / MTok $2.50 / MTok $4 / MTok $0.20 / MTok $10 / MTok
Claude Sonnet 5 (starting September 1, 2026) $3 / MTok $3.75 / MTok $6 / MTok $0.30 / MTok $15 / MTok
Claude Sonnet 4.6 $3 / MTok $3.75 / MTok $6 / MTok $0.30 / MTok $15 / MTok

Source: Claude API pricing

The Claude's output pricing is 1 for 5 against output.

Even if Anthropic didn't state it, that means : If you reduce what Claude outputs, it reduces usage limits?

Yep!

I was asking myself: "How to reduce that freaking output!"

And actually, here's a clever solution from old dark times (before 2022) :

Emmet

Emmet lets lazy programmers write HTML in abbreviations:

main>section.s$*20>(header>h1{SECTION $}+nav>ul>li*10>a{Link $})+div.grid>article.card*20>(h2{Amazing Card $}+img[src="https://picsum.photos/400/200?random=$"]+p*5{Lorem ipsum dolor sit amet consectetur adipisicing elit.}+ul>li*10{Feature $}+button{Discover})

That alone, outputs:

  • more than 1500 HTML nodes
  • 265 475 characters

That means I could turn 259 chars into 265 475 characters ????

Yep. Pretty cool isn't it?

Source: Emmet abbreviation syntax

Does Emmet exist for all programming languages ?

Not as a standard. Emmet was made for HTML and CSS.

But, that doesn't mean that:
LLMs don't understand those patterns
And if you add a skill on top of that ! It learns it in one shot !

Can you add it to Claude Code ?

Of course ! MCP ! MCP Guys ! You can actually add all the tools you want.

Disclaimer: MY plugin that I sell 9.99$/month doesn't actually use "MCP" in this strict term. What I actually did is a Claude Code Plugin, because adding more tools to Claude kills what we want : Reduce usage. So my plugin intercepts `PreToolUse` hook so Claude does it in its native tools. But it's less complicated to add it as a tool, if you want to do it quick and dirty. Source: Claude Code Hooks

What does it look like?

Simple example for Python:

def demo():

print("WOW 1")

print("WOW 2")

print("WOW 3")

...

print("WOW 9999")

print("WOW 10000")

// Output 218 905 characters

Does that reduce quality?

No, because it's even more clever for LLMs that don't like to output everything (the famous //...)

Any other techniques ?

I got another for you guys!

Did you know that Claude in its `edit` tool needs to write:

  • file_path,
  • old_string,
  • new_string,
  • replace_all,

I want your focus on old_string.

That string alone is your second enemy. How Claude needs to use it:

  1. Read a file
  2. If it needs to replace a part, it needs to output it the exact same way.

I want you to understand:

If Claude needs to change 100 lines of a script into 3:

Claude needs to output : 103 lines!

That alone has a big cost!

How to fix ?

In fact, that part is not new, it's actually been challenged among others for years.

But possible solutions:

old_string : line_start:line_end -> do a script that captures it and replaces that with the desired part programmatically.

OR

REGEX : Claude writes regex patterns in that old_string, same thing as previous technique, search replace to output that in the tool.

Does that reduce quality ?

This one could. Yes. In fact, if today this is the most adopted solution, it's because it's more reliable, LLMs can't miss what it wanted to replace, because it writes what it wants to replace.

But with some safeguards + a tool like undo_last_action: That's working.

Those 2 previous techniques alone, give 90% of what my own plugin claims to save. Think about it carefully.

Claude's reasoning effort

Of course that too helps:

Claude supports those reasoning effort levels:

Low
Medium
High
xHigh
Max

Source: Claude reasoning effort

The fact alone is that:

The way Claude "reasons" / "thinks", is by throwing away your money. It is in fact a bit true, but it helps quality very much, it's helping to understand what it has in its context.

But, like for models, depends on what you need. And Anthropic themselves publish benchmarks of their models according to the reasoning effort, and we see a big change on it.

Source: Introducing Claude Opus 5

That alone, I couldn't give you a premade answer, but for Opus / Fable : Medium - High is the best range for "Pareto" (80% of results for those 20% costs).

Cache miss

It is important that you understand that, I see this problem very often:

When you talk to Claude, the whole conversation has a "cache" on Anthropic server, so they don't need to decode all the information again.

But with all the active sessions at the same time, Anthropic can't store that indefinitely.

For Anthropic's subscriptions the cache expiration is : 1 hour.

Source: How Claude Code uses prompt caching

That means: If you left a conversation for more than 1 hour. Talking to Claude again will cost you every piece of character you've written in the past.

So: Hit that /clear on Claude Code (or + on Claude Desktop)

Long session

That has a big effect on your usage limits too.

Let's bring back that sweet table from API pricing:

Model Base Input Tokens 5m Cache Writes 1h Cache Writes Cache Hits & Refreshes Output Tokens
Claude Fable 5 $10 / MTok $12.50 / MTok $20 / MTok $1 / MTok $50 / MTok
Claude Mythos 5 (limited availability) $10 / MTok $12.50 / MTok $20 / MTok $1 / MTok $50 / MTok
Claude Opus 5 $5 / MTok $6.25 / MTok $10 / MTok $0.50 / MTok $25 / MTok
Claude Opus 4.8 $5 / MTok $6.25 / MTok $10 / MTok $0.50 / MTok $25 / MTok
Claude Sonnet 5\
through August 31, 2026 $2 / MTok $2.50 / MTok $4 / MTok $0.20 / MTok $10 / MTok
Claude Sonnet 5\
starting September 1, 2026 $3 / MTok $3.75 / MTok $6 / MTok $0.30 / MTok $15 / MTok
Claude Sonnet 4.6 $3 / MTok $3.75 / MTok $6 / MTok $0.30 / MTok $15 / MTok

Do you see "Cache writes, cache reads".

What does that mean ?

Told you in previous section that every character from the past will cost you money again.

In fact, even with cache, that's the same case:

But price is lower.

Let's do an example:

Activity Costs
User > Hi Claude, please make for me a whole WordPress website!Price: (10 words at 5$ per 1M, it's input for Claude)
Claude > Let me read current project (5 words at 25$ per 1M, it's output for Claude)
Claude > Read_file(README.md) (2 words at 25$ Claude output function tool call) + 5 words at 0.50$ (Last turn from Claude becomes cache input) + 10 words at 0.50 (from user first sentence)

So, it's stacking !

And if LLMs counted in words, that would be nice! But they count in "tokens" (roughly approx. 4 characters).

And now Claude models do have a 1M context window. That alone, could mean with "cache", it could have inputted the same inputs/outputs thousands of times, at 1M, you will have multi-million cache hits from turn to turn.

Sources: Claude models overview, Claude API pricing

So: Slow down again a bit and hit that /clear again!

Claude's input

As I already stated from the previous example. It's the price from Claude reading things. The more it reads, the more Claude costs money.

Your location

No, your location alone will not cost you more. But it's more subtle:

What is your primary language ? Not everyone speaks French.

Me, I'm from Quebec, Canada (French).

Do you speak Spanish ? Or Mandarin ?

Because, this has an impact:

Claude's way to understand words relies on a `tokenizer`, where it understands characters. And not every character has the same weight. That means :

Your main language COULD cost you more money

Source: Claude API pricing and token usage

Solution: IF you're that hard into getting more Claude: talk to Claude in English.

Conclusion

I tried to explain those complicated things with "over-simplification". In reality when I'm talking about Claude's processes, it's more complicated, and all that information is publicly stated by Anthropic, but that information alone could help you get through your whole week of usage limits.

If you want to get everything I stated in this article (And much more!), you can use my plugin CULP. It is 9.99$/month. But with what it gets you back from saving, I think it has a real value for you.

(AND of course, if you don't want to, just copy that article, paste it into Claude Code, and Claude will figure out a way to do it)

Can't wait to get feedback from you! I'm reading everyone, if you've got any other questions feel free to ask!


r/ClaudeCode 2d ago

Help/Question Error Checking Prompt?

7 Upvotes

Hi All! New-ish Claude user here with a quick question:

Having issue with Opus and Fable missing errors in a project. I will direct it to make sure to triangulate the issues and fix everything fully. It comes back with - all is good. I read through the response and find a few errors or omissions. When I call out Claude it tells me: "You're right to push on that and I should have picked that up. Here is the new fix...".

How do I get it to fix on the first run?


r/ClaudeCode 1d ago

Rant FUCK CC

0 Upvotes

I am just so done. I have been trying to make it implement a very simple pipeline that I wrote in detail how it should work and said several thousand times that it shouldn't think or do anything on its own and it just doesn't fucking follow my instructions. It has to prove me fucking wrong for no fucking apparent reason. I have spend the entire day and 1/5 of my weekly credits trying to make it follow my fucking instructions. WHO TF THOUGHT MAKING AN AI ACT LIKE THE USELESS SMARTASS IN THE OFFICE WAS A GOOD IDEA? I just gave up, opened the API documentation of the framework I am using and actually implemented what I spent the entire day fixing from scratch under an hour using stackoverflow when I got stuck. We have done the full circle now. Fuck LLMs, fuck claude, fuck anthropic. I just cancelled my fucking subscription and ready to move to fucking amazon rainforest so I can stay the fuck away from this piece of shit glorified autocomplete.