r/ClaudeCode 20h ago

Discussion Fable 5 credit usage is INSANE!

0 Upvotes

how in the hell did it use 20usd in 5minutes, that was barely 10k tokens at most, this goes beyond the level of expensive to the terroritry of outright scam, thank god i tested the waters with just 20usd, like wow, never before was i hoping china progress to compete, europe is a dumpster fire and russia is dying while the US abandoned all pretense of internal competition since the 70s when they abandoned the gold standard.


r/ClaudeCode 23h ago

Discussion Anthropic is panicking

0 Upvotes

Anthropic recently tweeted saying: "We know this has been frustrating, and we want to give you more certainty about what your plan includes."

LMAO. Thank you, OpenAI, xAI, and Kimi.

At this point Anthropic doesn't know what they're doing, literally... it's an panic move to protect their margins while their users are actively looking at the exit door.

It is incredibly obvious what is happening behind the scenes where they’re facing a multi-front squeeze with one side they’re dealing with compute and infra costs and on the other side, open-weight like Kimi K3 are literally destroying their pricing power.

To be honest, I wouldn’t be surprised if the US ended up banning most of the open-weight models coming out of China and if that happens, I think the interesting part is what this does to the rest of the ecosystem.

If the “best model” keeps changing every few weeks or sudden becomes unavailable bcuz of pricing or regulations, it makes less sense to build entire stack around single provider.

That time is probably better spent building the product and finding customers instead of constantly rebuilding AI layer.

I've noticed a lot of successful AI products are already treating models as something they can swap in and out while investing much more heavily in the infra around them.

That's also the reason we gonna see many more infra projects coming out over time and some of the current ones are already pretty good at what they does.

Whether the backend is Claude today, Kimi tomorrow, or something else six months from now, that part of the stack doesn't need to change.


r/ClaudeCode 13h ago

Showcase Claude is great at writing code. It's underrated at explaining the system it just built.

Enable HLS to view with audio, or disable this notification

1 Upvotes

Most of us point Claude Code at "write this feature." Fewer of us point it at "now reason about the whole system this adds up to," and that turned out to be where it earned its keep for me.

I built a production app (NeuroSpicy, an ADHD energy tracker) human-in-the-loop with Claude, then used Claude Code plus a design skill to turn its real architecture into an interactive systems-design tour, structured like an interview answer: requirements, napkin math, API contract, data model, write path, caching, what breaks at 10x and 100x.

The part that actually taught me something: I made Claude do the honest scaling math instead of hand-waving it. It surfaced that the database isn't the bottleneck. Even at 1M users the peak is ~694 requests/sec and the connection pooler stays green. What redlines first is signal-recompute CPU and a notify cron sweep. That "reason about the whole system, not just this function" move is the thing I keep underusing Claude for.

The page is interactive (drag a slider to 1M users and watch which component redlines), and the whole thing, code and design, was built with Claude.

https://varnishlabs.io/systems/neurospicy

I coach engineers on systems design, so if anyone's stuck scaling or architecting something they're building with Claude Code, drop it in the comments and I'll help work through it. Also happy to get into the workflow, mostly how I get Claude to reason about architecture and cost instead of just emitting code.


r/ClaudeCode 5h ago

Humor Claude Code 4.8 is insane.

Post image
0 Upvotes

For security reasons, it only runs on his laptop.


r/ClaudeCode 15h ago

Question We urgently need a limit reset! Plus a quick ToS question about 2 accounts

0 Upvotes

Hey everyone,

is anyone else hoping for a limit reset? The last manual resets on Thursday and Wednesday saved me from having to wait 3 days.

I'm currently on the Max 20 plan. Fable consumes more tokens, but the weekly usage feels unusable right now. Even if you only hit about 20% of your Fable usage. Before this, using Opus was tight, but at least it was workable. And I generally don’t launch any agents.

Unfortunately, there is no higher plan available only API usage, which honestly doesn't compare to Codex subscription costs.

The terms state that bypassing usage limits isn't allowed. Does anyone know if it’s strictly against the rules to buy a second Max20 subscription to work on the same IP, Device and project?


r/ClaudeCode 17h ago

Discussion I've had 3–4 Claude Code sessions sharing one memory file for six months. Here's everything that broke.

Post image
1 Upvotes

I'm a solo founder. My "team" is me plus 3–4 Claude Code sessions running in parallel on the same repo. For the last six months they've all been reading and writing one shared memory file that lives in the repo. It's at ~900 cards now (decisions, open questions, standing rules, tags) and roughly as many connections between them. Every session starts by reading a brief generated from that file, and writes back whatever it decided.

It works now. Getting there was carnage. The failure log, in order:

1. Two writers, one file. The app and an agent hook both save the same file. The app's save was a plain overwrite, so it silently destroyed any card an agent captured while the app was open. I lost real decisions before I even noticed. The fix was a three-way merge (base snapshot vs mine vs disk) under a lock, plus one hard rule: the save refuses to write a file that lost a card. That one rule has caught more bugs than any test I've written.

2. The merge kept resurrecting deleted duplicates. De-dup collapsed twin edges, then the next merge brought them right back, because a union of "ours" and "theirs" re-adds whatever one side deleted. Every cleanup quietly undid itself on the next save. I had to teach the merge that an exact twin is the same edge, not two opinions.

3. The same card, serialized twice, turned into a "conflict". A card written by an agent, then re-serialized by the app after opening, produced different bytes for identical content. The merge saw both sides changed vs base and duplicated the card into a conflict twin. My test harness never caught it, because the fixtures were byte-identical by construction. They inherited exactly the assumption that was wrong. Quitting and reopening the actual app caught it in a day.

4. My first eval number was a lie I almost shipped. First measurement said 95% recall vs 0% cold. It never reproduced. After hardening the judge: 0/20 cold, 55% with the brief injected at session start, 73% with brief plus one search round, on 20 frozen questions about decisions actually made in the project. Small n, self-eval, all the caveats apply. But it reproduces, and the 95 is banned from every piece of copy I write now.

5. Retrieval kept ranking a rejected proposal above its rejection. Ask "what's our caching strategy?" and it matched the Redis proposal (high similarity) over the later decision that killed it, which lives in a different card and scores lower. Similarity has no concept of "no longer true". So now corrections supersede instead of delete, and when recall surfaces a card that a later card contradicts, the result carries an explicit warning: matched a STALE card, do not act on it. The agent at least sees the ground is contested instead of getting a confident wrong answer.

6. Thresholds tuned on test data fell apart on real data. Overlap detection passed at 0.5 on short fixture cards. Real cards are long, and the same detector measured about 0.33 in the field. Standing rule since then: nothing counts as verified until it runs against the real six-month file.

Two things surprised me in the other direction. The brief didn't grow linearly. It's a graph you traverse, not a log you replay, so at 900+ cards it's still around 3–5k tokens. And the sessions started coordinating through the file in ways I never designed: lane claims ("I'm editing middleware.ts, shout if you're mid-edit"), one-shot messages that get delivered at another session's next prompt, and cards anchored to git blob hashes that flag themselves as drifted when the code they were decided against moves on. 14 cards are flagged as I type this. The notes confess when they rot.

What six months left me believing, weakly held: the hard problem in agent memory isn't storage or retrieval. It's write contention and truth maintenance. The moment two sessions write, memory is a distributed system, and most memory layers are designed like single-writer diaries.

Where I'd honestly like to be told I'm wrong:

  • I picked three-way merge over CRDTs because the file has to stay human-editable and git-versioned. Wrong call?
  • Is there a better formal model for supersession than edges plus warnings? Bitemporal databases and event sourcing keep coming up, but both give up the one-readable-file property.
  • At what scale does this collapse? 900 cards works. I have no idea about 9,000.

Repo in the first comment.


r/ClaudeCode 18h ago

Question Wouldn't AI get better by evolving existing apps instead of regenerating them?

0 Upvotes

I had a thought today.

If AI can build a decent to-do app in 60 seconds, why does it generate a brand new one every single time someone asks?

Why not say, "I've already solved this before. I'll use the best version I have and adapt it to your requirements."

Imagine if coding AIs kept a vetted library of successful projects they had already built. Every time they created a better implementation of a common app, that version became the new starting point. The next user wouldn't get a fresh generation, they'd get an improved evolution of what already worked.

Wouldn't that make the system faster, cheaper, require fewer tokens, and produce better software over time instead of reinventing the same app thousands of times?

It feels like coding AIs should eventually work more like experienced engineers who reuse proven solutions, not like someone rewriting the same CRUD app from scratch every day.


r/ClaudeCode 7h ago

Discussion I feel bad for people that don't know how to use Claude Code

275 Upvotes

I feel like even knowing that Claude Code exists is a super power. A majority of people I know, even people who consider themselves "technical", simply use the chat interface. Even for doing some kind of analysis that requires code, they will just use chat to grab the code and plug it into their terminal.

The whole idea of having Claude plug into your directory and work unattended is just completely foreign to them. And so when I hear people larping on AI and how it is "basically just a word predictor and pretty much a scam" I honestly just feel sorry for them.

What also shocks me is this is pervasive not just with the older crowd but I am shocked by how many gen Z kids I meet that either refuse to use AI, or just use the chat interface even for technical stuff.

And so I have concluded that even the simply fact of knowing how to use Claude Code even at a basic level is just a superpower. Using chat, requires baybsitting, it requires feeding pointing to documents, and it generally just means your brain is missing that tiny link of understanding the concept of directories/terminal/shell etc. And if you get over that tiny little hump, the things you can do are completely endless.

It is just a huge divide in this new age. I really feel bad for people that just refuse or cannot engage with AI on a computational level.


r/ClaudeCode 11h ago

Discussion I'm honestly surprised how hostile the game dev community is about AI. I ported Godot 4.7.1 to WebGPU and open sourced it for free, yet received nothing but hostility about it. Anyone else have similar stories?

Thumbnail
154 Upvotes

r/ClaudeCode 14h ago

Discussion Why isn't anyone talking about Fable's TERRIBLE code quality output ?

0 Upvotes

Fable 5 is amazing for vibe-coding projects in one-shot that all look ✨nice and shiny✨ but that you'll never once take a peek inside of it.

I was very impressed by it at the beginning by the sheer amount of content it could pull off and the surface-level quality of it, from the perspective of a user.

But when you are working on a product to actually ship, must be maintained in the long-run and that human engineers must actually understand ? It looks like a regression from other models.

At my company, we actually don't use Fable much now, most of us noticed that Opus has better code quality output compared to Fable. It really looks like Fable was specifically trained to mass-produce huge quantities with as little care as possible, just getting shit done no matter what means, and somehow all the slop falls right into place in a way that it feels like magic, which is probably the tradeoff for enabling it to work on colossal tasks.

We don't really have such use cases to do that except for temporary dev tools, like making cheap UIs on the fly for stats analysis or holping our current task (which is, in this case, really useful), but we're not going to close our eyes and fully vibe-code our product with it which aims to be robust in the long-term.

So in the end we pretty much just use Opus, despite having Fable right in our hands included in our subscriptions.

We're coding in Rust btw, idk if that changes something.


r/ClaudeCode 16h ago

Discussion It just cost $26 to ask Fable a yes or no question. $100 credit my ass.

0 Upvotes

With all the issues of the Max plans hitting context, i jumped to my backup Pro plan that Anthropic gave $100 credit for. I did 1 prompt on Fable at Low Effort that said "you got hit by session limits can you try that again", it thought for 13 seconds and cost over $26

1 prompt, low effort
Asking CC to confirm.

r/ClaudeCode 9h ago

Bug Report What in the ever living.....

0 Upvotes

It recommends "deep-research" and "workflow", busts my Max X5 account TWICE in 20 min doing "research". WHY. 200+ agents for what? Checking if Vite 8 is worth upgrading to?


r/ClaudeCode 7h ago

Discussion After I lost free access to Fable on my Pro plan, I decided to go back to Opus 4.6.

3 Upvotes

Opus 4.8 has terrible context management it loses the thread of conversation, doesn't do what you actually asked, wastes tokens, and produces walls of text instead of getting the job done.

Opus 4.6 understands tasks better. I think it's the last Opus-class model that Anthropic really put effort into.

I agree that 4.8 is generally better at coding and agent tasks. But it's still much worse at understanding context and following logic. It does too many unnecessary things, and in my opinion it's overly polite and heavily censored.

Despite not having obvious external classifiers like Fable, Opus 4.8 refuses much more often to work with seemingly ordinary things that both Fable and Opus 4.6 handle without issues. Recently, Opus 4.8 got spooked by my Vertex AI keys and refused to make a skill that connects Nano Banana to Opus I genuinely don't understand why it considered that dangerous.


r/ClaudeCode 17h ago

Question I don't get it

Post image
0 Upvotes

What does it mean by saved 133.4k tokens? All i know is it shrinks the context window but I do not fully understand that, because why is less context bad?


r/ClaudeCode 10h ago

Discussion Did Anthropic quietly nerf Claude Fable 5 after rolling it into Max/Teams/Enterprise? Users are hitting weekly limits dramatically faster

1 Upvotes

r/ClaudeCode 17h ago

Discussion Burned through Max 5x in an hour?

23 Upvotes

Has anyone else had this happen to them today? I was barely running 30% of what I usually do.

100% Usage in minutes

r/ClaudeCode 9h ago

Question Where is the $100 usage credits they were supposed to give on the 19th?

Post image
0 Upvotes

r/ClaudeCode 6h ago

Discussion r/Codex subreddit's mods are removing genuine complaints

10 Upvotes

Codex subreddit's mods are wiping out complaints slowly slowly. As of now, it is 2 AM in night, they are probably sleeping and forgot to wipe out complains, but trust me they will be all gone within 1-3 days to prevent their SEO demage.


r/ClaudeCode 1h ago

Tutorial / Guide Little trick: I turned my Claude Code 5H usage windows into fixed shifts

Upvotes

I build with Claude Code all day, and one small thing cleaned up my whole routine: I turned my usage windows into fixed shifts.

Your 5 hour window starts the second you send your first message, so if you fire off a random question at an odd hour, it resets at an equally odd hour and your day drifts with it.

I used to fix this by hand. Open an incognito window in the Claude app and type "hey" to haiku, to kick off the window.
Now a /reminder does it for me at 08:00, 13:00, 18:00 and 23:00, running on Haiku. Those are exactly 5 hours apart, so they become three clean shifts. The first one wraps up right around lunch, and by the time I'm back the next window is already lined up.


r/ClaudeCode 11h ago

Question May Switch from CC to Cursor, need opinions

0 Upvotes

I have been using Claude code heavily for my software development. But I found myself switching between a bunch of different AIS to double check ideas and get some input. I fooled around with Cursor for a little bit and I kind of like it Intuitive IDE. Has anybody made the switch? What are some things that I need to consider? What am I gonna lose if I stop playing for Claude and put all my money in Cursor?


r/ClaudeCode 11h ago

Question Is Claude Code more efficient than chat for analyzing 300+ page documents?

0 Upvotes

One thing I was wanting to do was have Claude analyze a 300+ page document of my own writing, but I was wondering what would be the best way to do this? Paste it all as text in chat? Or perhaps turn it into a txt files or maybe multiple txt files and then give it to Claude Code? And would Claude responding in plain text in chat or asking it to write me a markdown file or something in Claude Code with its analysis be more efficient? Asking because I am planning to use my $100 in API credits for Fable for this and I don’t want to run out more quickly than I need to. I plan to probably ask for multiple analyses, like probably thousands of words of various analyses, as well as ask it follow up questions. Any advice or thoughts?


r/ClaudeCode 12m ago

Showcase Got tired of flying blind on context and usage in Claude Code, so I built Dashline.

Post image
Upvotes

I built this for a few reasons (maybe you'll relate)):

  1. I was getting annoyed visiting https://claude.ai/new#settings/usage multiple times a day.
  2. I like to compact at 50% context to avoid getting in the "Dumb Zone".
  3. I need to know on what `branch` I'm working on, because we all know Claude loves taking random decisions.

Dashline is a simple 1-line "Dashboard".

It reads straight from the JSON Claude Code already hands the status-line command, so there are no API calls, no polling, and nothing that drifts out of sync on a version bump. The usage half needs the rate-limit fields in the payload, so it shows on Pro/Max.

Repo: https://github.com/ordinarynerds/dashline

Would love feedback on what else belongs up there. I went back and forth on whether the git branch earns its spot, so I'm curious what people think.

Disclosure:

We use it internally at https://ordinarynerds.com, it's free and open source (MIT).

Feedback welcome.


r/ClaudeCode 17h ago

Showcase Ran ccusage on my Max 20x: $6,677 of API-rate usage in 37 days on a $200/mo plan. What's your number?

Post image
0 Upvotes

r/ClaudeCode 20h ago

Help Needed Help prompting /planning a To-do app

0 Upvotes

Hello!

I've been using claude for a while now, really low skill, making a card game in browser you know, noob stuff - over complex, many high context chats big token burn the usual noob 🤓

ANYWAY... I want to do a bit better this time as I had a new idea I want to work on. It's not like "public app" because the idea has been done million times but I want it for personal projects :)

Idea:

Simple to do app that you gains points by "finish X", spend coins to upgrade/style your character.

Very simple. You add a task, it gets a value (difficulty /time to completion), finish it you get coins/points you can spend on cool clothes or cool helmet, whatever. Just a bit of intrinsically motivating stuff that makes me want to finish a task because "ohh I want the golden helmet!" (judt an example).

Anyway as I said I kinda suck at prompting, I've tried this twice already but got real bad results VISUALLY - code and actual protptye was fine!

VISUALLY it always looks like a 3y/o made a" puppet" lol... I'm looking for advice how to tackle the actual UI/styling of an app, not the functionality of it.

I was thinking of "pixelart" because it's the style that has. Abroad application but also most easy to design (ASSUMPTION!). But would be OK with any style as long as it's doable to add customers, hats, sword, skateboard... General stuff a character could "hold" or "wear".

Are any people here doing similar projects with visual characters that want to help or give tips 😀? If wanted I can post the concept but I think you all know what I am looking for as its a pretty simple app/idea.

And I didn't make Ai write this as you can see lol..


r/ClaudeCode 14h ago

Question Claude Desktop fresh project setup

0 Upvotes

Hi, today I used Claude Desktop to build new .net solution skeleton with simple service which has two endpoints. Integration tests using test containers, docker compose, postgre sql, etc. I had detailed arhitecture doc with described naming conventions, tools and third party packages, clean arch.

It spent 90min and 25$ with context more than 850k. Opus 4.8 and Fable. First the model described detailed implementation plan, then executed task by task and reviewed each one using superpowers skill and then commited changes.

I have feeling that agents are not so confident when tbey are setuping new projects/solutions like when they work on existing well organized code bases.

Is it normal to spend so much time on relatively simple tasks or my setup/harnes may be wrong?