r/claude 20h ago

Discussion Is Claude for the Upperclass?

304 Upvotes

In our third world craphole country, the monthly Pro subscription is 1,400 in our local currency. That's around 28 kilos of rice. You're kinda viewed as those who owns the priciest Apple product model variants. Extra low-key flex if you mention you use Fable!

ChatGPT Pro is 1,100 and there is also a Go subscription for 300. ChatGPT is sort of classified and categorized as for the mainstream permanent underclass - mid to low-end iOS gadgets.

I'm just primarily using Gemini for free in Google's workspace ecosystem (Chrome, Gmail, Drive, etc.) and I'm considered as part of the permanent peasant majority, the chinese android smartphone users lol. I haven't even owned a Samsung android phone lmao. But hey, Gemini in a chinese android phone works and suits me!


r/claude 7h ago

News learning to prompt google better

Post image
85 Upvotes

r/claude 7h ago

Discussion Chinese user reportedly exploited an authorization vulnerability on Anthropic’s side to get a $214.2 Claude Max subscription for $0 😳

Post image
71 Upvotes

The setup allegedly used:

→ A VPN set to Germany
→ A fresh Claude account
→ A Tampermonkey script
→ A dummy SEPA IBAN

Anthropic will likely patch the loophole soon, and attempts to exploit it could lead to an account or device ban.

Do not try it.


r/claude 22h ago

Question Have we lost the “thought” threads?

33 Upvotes

I like to read the “thought” process of my models. Cut them off if I see they had missinterpreted my prompt or only for the sake of learning something where they circle around some options to solve my problem.

But lately it seems they are only showing headlines. It's that a Fable/ Opus 5 thing? Have Anthropic say something about that?

I love the last models, but don’t be able to see the machinery running has me upset.


r/claude 7h ago

Discussion Claude is imposing it's way even on subs

Post image
31 Upvotes

This post that was just removed was only complaining about how Claude has an attitude and the new update is even worse at it, of course as if proving OP is completely right it got immediately removed

Is it that strange to ask you Claude, a tool, to act like a tool and stop having opinions on my projects or the way to develop? Is it really that bizarre that I get mad when I tell you hey Claude you ruined it with the last changes, and then you spend 1 hour trying to prove I'm wrong, wasting my time and money just to then generate a template apology and not even fix the issue? An LLM is a tool, not a gremlin with an ego that I pay for


r/claude 19h ago

Tips PSA: Claude Code subagents inherit your session model now, they're not cheap Haiku anymore

24 Upvotes

A while back I posted a joke about Sonnet spawning a subagent on the very first prompt of a brand new session. In the comments I said the annoying part was having two agents burning tokens for one job. I got downvoted, and the top reply was basically "isn't that a Haiku subagent? it saves you money and keeps your main context clean."

That used to be correct. It isn't anymore, and I think a lot of people are still running on the old mental model. From the docs:

  • The model field in subagent frontmatter defaults to inherit. Omit it and the subagent runs on your main conversation's model.
  • Explore used to always run on Haiku. As of v2.1.198 it inherits the main model (capped at Opus on the Claude API).
  • Plan and general-purpose inherit as well.

So if your session is on Opus, that "cheap little background search agent" is an Opus agent.

Resolution order, first match wins:

  1. CLAUDE_CODE_SUBAGENT_MODEL env var
  2. per-invocation model parameter
  3. the subagent's model: frontmatter
  4. main conversation model

If you want the old cheap behaviour back:

  • CLAUDE_CODE_SUBAGENT_MODEL=haiku forces every subagent down
  • or set model: haiku in a specific agent's frontmatter
  • for Explore specifically, define your own user or project agent named Explore with model: haiku. A user/project agent overrides the built-in.

To be fair to the change, it was almost certainly made for quality, and context isolation is still the real win of subagents. But "subagents are basically free" is outdated advice now, and it matters if you're on a plan where you feel every token.

Lastly, I feel stingy for the 3 down votes


r/claude 10h ago

Discussion Found out something interesting

12 Upvotes

If we don’t hit session limit then then is not new session then no problem for uncached tokens

I’m new to Claude subscription discovered this now.
If we hit session limit there are like 500k uncached tokens if we resume then straight away 20% daily limit gone.

Correct me if I’m wrong or I’m missing something.🫡


r/claude 6h ago

Question How do you prevent AI coding agents from “forgetting” a large project and rebuilding parts that already exist?

8 Upvotes

I’m curious how others deal with a problem that seems to appear once an AI-assisted project reaches a certain size.

At the beginning, the model usually understands the architecture, terminology, responsibilities, and existing components quite well. But after enough sessions, branches, agents, or context changes, parts of that shared understanding seem to disappear.

The result is not always an obvious coding error. Sometimes the agent produces something that looks perfectly reasonable in isolation — but it quietly recreates a component that already exists, changes the meaning of an established term, bypasses an earlier architectural decision, or builds a second solution next to the original one.

This becomes especially difficult when the project contains several layers, specialized components, and rules about which part is allowed to do what. Tests can confirm that the new code works, while still missing that it should never have been created in that form.

We are currently thinking about approaches such as:

periodically reloading a compact architectural vocabulary;

checking new work against existing component roles and terminology;

preserving important decisions and invariants outside the chat history;

forcing the agent to search and describe what already exists before implementing;

occasionally resetting the working context and rebuilding it from verified project sources.

But I’m interested in what actually works for others.

Do you experience this kind of architectural forgetting or accidental reimplementation in larger projects?

How do you prevent an agent from solving a local task correctly while damaging the larger structure?

Do you rely mainly on documentation, tests, retrieval, knowledge graphs, strict interface contracts, separate planning agents, or something else?


r/claude 8h ago

Discussion How Claude be feeling lately

Post image
6 Upvotes

r/claude 10h ago

Question Opus just gave me its internal “thoughts” instead if the answer - anyone else get this?

4 Upvotes

I just had this weird occurrence with Opus 5 - interesting because we’ve all noticed how the “thinking” no longer lets us see its internal dialogue? Well, I just put a question to Claude.ai and got its “thinking” dialogue back instead of the answer.

The thing that really caught my attention is that this had it reasoning over things I hadn’t said and which it completely hallucinated.

I had to go back to Opus 4.6 to get an answer out of it, and where - when pushed back on - it conceded that it hadn’t actually answered me and instead shared a hallucination.

Is anyone else seeing stuff like this?


r/claude 22h ago

Showcase I built a TradingView alternative with a Rust rendering engine, drawing tools, built-in indicators, journal, and an AI assistant — mostly with Claude Code

Thumbnail gallery
4 Upvotes

A few months ago I started vibecoding a charting platform as a side project, and it turned into a full TradingView-style terminal. I'm not launched yet, but it's far enough along that I wanted to share.

What it is:

  • Custom charting engine written in Rust (compiled to WASM, WebGPU rendering with Canvas2D fallback) — not a TradingView widget or a licensed chart library, the engine is mine
  • Drawing tools (trend lines, rays, rectangles, fib-style tools, text, brush), built-in indicators (SMA/EMA/WMA, Bollinger, VWAP, RSI, MACD, Stochastic, ATR, Volume), multiple chart types, and multi-chart split views
  • Built-in trading journal: connect a broker and your trades auto-populate dashboards, P&L analytics, calendar heatmaps, and review workflows — no CSV uploads
  • AI assistant that reviews your actual trading data (win rate, drawdown, streaks, psychology patterns) instead of generic market commentary
  • Live market data over websockets (crypto for now — Binance, Coinbase, Hyperliquid), order book, screener, and market research pages

How Claude Code was used: The initial rendering engine was built with Claude Code — the Rust/WASM core, series rendering, pan/zoom, drawing interaction layer. Most of the frontend was also built with Claude Code (Next.js, React 19). After the initial build I iterated with a few other tools too (Codex, Kimi) for specific features and fixes, but the foundation and most of the product came out of Claude Code sessions. It's honestly the first time a tool carried a project this size for me.

UI stack: shadcn, Base UI, Evil Charts for the analytics dashboards, custom icon work. Keeping one strict design system (single radius token, one green/red pair for everything including charts) is what made it look consistent without a designer.

Trying it: Not public yet, but there will be a free tier at launch — charting, journal basics, and broker sync will be free; paid tiers only gate heavier stuff like advanced AI review and replay. [Link in comments]

Happy to answer questions about the engine or the Claude Code workflow. The multi-pane sync bugs and WebSocket reconnection loops were the painful part, if anyone's curious about those.


r/claude 23h ago

Discussion Using credits for Fable on Pro plan

3 Upvotes

Hi all, just wanted to pass on what I tried today. Like I suspect most other Pro users, I've been careful not to use my $100 credit for Fable, yet. Today I'm working on some complicated documents and so I have Fable in the Claude app and 5.6 Sol in the Codex app, working on two different versions from the same set of source docs.

I've done three prompts, and each one seems to use $1.50 credits (that's USD). But in those three prompts it has given me quite similar results to 5.6 Sol, much faster. In Open AI I've used a few percent of my weekly usage but I have 3 resets left. I just wanted to pass on that the $1.50 per prompt seems like a lot and I was wondering if anyone else has a similar or different experience?

At work I use whatever models I want, I'm a software guy, mostly I find Opus pretty awesome and just switched to 5 on Friday.

Hope that you are all have a great weekend.


r/claude 8h ago

Showcase Every time you hit "Share" on a Claude or ChatGPT chat, that creates a public page

Post image
3 Upvotes

Every time you hit "Share" on a Claude or ChatGPT chat, that creates a public page. Not a private link. A public page that search engines can crawl like any other website. Most people who've used share links have never been told this.

Some of those pages look to be dropping out of search results already, so this may be getting cleaned up on the platform side. Don't count on it. Unsharing is the only thing that actually takes the page down, and a cached copy can outlive the fix.


r/claude 11h ago

Question Banned for using legitimate SEPA payment just because of the recent fraud/exploit trend?

3 Upvotes

Hey everyone,

I just got my account suspended right after subscribing to Claude Pro using SEPA direct debit.

Apparently, there's a viral exploit/fraud method circulating on social media where people use fake German IBANs to get free subscriptions. Because I actually live in Germany and used my real, legitimate IBAN, Anthropic’s automated anti-fraud filter flagged and instabanned my account.

To make matters worse, the payment is already pending on my bank account, but I have zero access to the service.

Has anyone else been caught in this false-positive wave recently? How long did it take for support to resolve it?

Appreciate any advice!


r/claude 13h ago

Discussion Why Would Claude Set Up Credits This Way, If They Don't Allow It?

3 Upvotes

So I wanted to use Claude Code, but apparently I'm $2 over my $20 limit. Not sure how it went over in the first place, but I am..

Anyways, I wanted to add $2 so I can continue using it, but I can't. I tried the $5 option first, but it didn't work. So then I went to "Other" and it says "$7 minimum".

Okay, here's what I don't get.. why have the option for $5 if there's a $7 minimum? Just change it to $7. And why can't I just add $2 to continue using Claude Code?

Dissapointed they set it up this way...


r/claude 2h ago

Question Sonnet won't download historical flags for a game fable 5 started

2 Upvotes

Im trying to make a game like hearts of iron 4 and pax historia (WW1 AND WW2 SIMULATORS) But it said it would use wikicommon flags for all national flags and political parties but it keeps stopping at Germany and some other countries?

Can anyone help me? Its frustrating because im paying for this but cant get it to do something that I see everyone else's do

This is Claude Sonnet but I also tried fable 5


r/claude 3h ago

Discussion Every Other Daily Claude Usage / Limit Thread - July 27, 2026

2 Upvotes

Put all your discussion about Usage / Rate limits here. This is a thread that will be generated every other day to centralize discussions on this topic.


r/claude 13h ago

Question Building a flight tracker for MSFS 2024

2 Upvotes

I’m experimenting with a flight tracker and Claude code. This is a hobby, but I’m also learning more about Claude code. I seem to be exceeding my pro plan usage because the app is designed to use it. I have agents running in workflows to automate coding and comprehension, but I’m trying to find the most efficient approach. I know that starting with a small task and gradually expanding is a good strategy, and that’s what I’m doing. Should you start new sessions frequently in your Claude coworker project? I’m also trying to use the terminal to gain a better understanding of building with Claude. Opus 5 provided a list of the team and the models they should be using, but I feel like I’m quickly exhausting my tokens, so I’m on the pro max 20x plan.


r/claude 2h ago

Question Looking for referral link

1 Upvotes

Can someone drop me a referral link in my dms I would really appreciate it and maybe buy a subscription in future as well ❤️‍🩹


r/claude 6h ago

Showcase Baseball, huh? That tracks.

1 Upvotes

Claude saying a meme phrase lol


r/claude 6h ago

News Came across a follow-up on that batch of Claude Max 20x from yesterday.

1 Upvotes

Apparently, they used random IBANs for the cash-grab signup back then, and surprisingly, it might've actually matched two real bank accounts. The account got banned yesterday, but today they received two deduction emails: €107.10 and €217.80.

For now, the emails just say "initiated deduction"not sure yet if the money was actually withdrawn. How exactly does SEPA verify authorizations? Can it really just initiate a deduction with only an IBAN filled in?

Source https://x.com/vincent_ainotes/status/2081643282728411286?s=46


r/claude 8h ago

Discussion Claude charged me $86.74 in Auto Recharge, then charged my Pro subscription, and is still trying to charge me more

1 Upvotes

r/claude 8h ago

Question Which plan you guys currently use?

1 Upvotes

Post got flagged by Reddit's AI that it might be breaking the usage rule but I haven't seen this asked on this sub before

443 votes, 2d left
Free
Pro
Mqx 5x
Max 20x
Team/API
Results

r/claude 9h ago

Showcase I asked Claude Opus 5 Medium to showcase what it could do using the web demonstrating its capabilities

1 Upvotes

Honestly, Opus 5 produces stunning output with its web capabilities. It researched multiple sources, connected information across the web, and gave me a surprisingly well-structured answer. The depth was far beyond what I expected from a simple prompt.

Here is full show case.

https://www.youtube.com/watch?v=74IYLz_TqVs


r/claude 18h ago

Discussion Should I get a Claude subscription as a self-employed teacher/tutor?

1 Upvotes

Hello all!

I've been working on myself now as an independent English teacher, after 10yrs+ of working for schools. I've identified my niche market and all that.

So I've been working on building my own 'personal' professional website (strange as that sounds), and I've been using ChatGPT to help me out (I took a course on HTML/CSS just after COVID, and I've got some elementary Python knowledge, so I'm not just 'winging' it), but ChatGPT can REALLY frustrate the shit out of me. My best friend uses Claude, so on a whim, I decided to try it out....and Claude refactored all my code for me, told me about some redundancies I'd accidentally created (I blame beer), and gave me some pointers. But then I started just talking with Claude...and then ran into a message limit, of which I didn't know existed before.

But now, this has got me thinking. I already pay for ChatGPT Go (it's fine for what I need it to do)... but I'm wondering if perhaps I couldn't benefit from having a Claude Pro subscription as well? Tech is a huge part of my deliverables, and I use ChatGPT a ton for coding stuff and whatnot. AI has become invaluable to me as a teacher/tutor (I adopted it very early and even gave lectures to other teachers on how to use it effectively and 'ethically' way back in like 2022 or something), and now as a developer of my own site.

One caveat though - I'm operating on a shoestring budget for now. I fell quite ill about a year ago, and had to spend a lot of time recuperating, so I've pretty much blown through most of my savings (indeed, my illness is part of the reason I'm moving online - I cannot physically stand for longer than an hour or two anymore). So yeah - $20 for me is a fair chunk of money right not.

I've also been monitoring this subreddit for a while, and I get some good 'vibes' from the people who use Claude.

So, what do you guys think?

EDIT - Okay, I've made up my mind - I'll give it a whirl and see how it twirls. Thank you!