HackerTrans
TopNewTrendsCommentsPastAskShowJobs

aray07

no profile record

Submissions

[untitled]

1 points·by aray07·há 17 dias·0 comments

[untitled]

1 points·by aray07·há 24 dias·0 comments

[untitled]

1 points·by aray07·há 25 dias·0 comments

[untitled]

1 points·by aray07·mês passado·0 comments

Why images use 3x more tokens in Claude Opus 4.7

claudecodecamp.com
3 points·by aray07·há 3 meses·0 comments

Images cost 3x more in Opus 4.7

claudecodecamp.com
2 points·by aray07·há 3 meses·0 comments

Measuring Claude 4.7's tokenizer costs

claudecodecamp.com
714 points·by aray07·há 3 meses·498 comments

Claude Opus 4.7's new tokenizer: 1.47x on English, 1.01x on Chinese

claudecodecamp.com
4 points·by aray07·há 3 meses·2 comments

Verification Is the Next Bottleneck in AI-Assisted Development

opslane.com
6 points·by aray07·há 3 meses·2 comments

[untitled]

1 points·by aray07·há 3 meses·0 comments

Claude Code's sandbox.denyRead doesn't stop the Read tool

claudecodecamp.com
4 points·by aray07·há 3 meses·0 comments

I Tried to Reverse Engineer Claude Code's Usage Limits

claudecodecamp.com
3 points·by aray07·há 3 meses·0 comments

Show HN: I tried to reverse engineer Claude Code usage limits

github.com
5 points·by aray07·há 4 meses·0 comments

You shouldn't use ultrathink in Claude Code

claudecodecamp.com
3 points·by aray07·há 4 meses·0 comments

High Agency

highagency.com
2 points·by aray07·há 4 meses·0 comments

Claude Code's System Prompt

claudecodecamp.com
3 points·by aray07·há 4 meses·0 comments

I Can't Stop Running Claude Code Sessions

claudecodecamp.com
4 points·by aray07·há 4 meses·0 comments

I Take My Laptop to the Gym So Claude Doesn't Have Downtime

claudecodecamp.com
3 points·by aray07·há 4 meses·2 comments

The four levels of AI-driven engineering

klaviyo.tech
1 points·by aray07·há 4 meses·0 comments

Some Simple Economics of AGI

arxiv.org
1 points·by aray07·há 4 meses·0 comments

comments

aray07
·mês passado·discuss
i have never seen this before - where you offer something and then take that away
aray07
·há 3 meses·discuss
Came to a similar conclusion after running a bunch of tests on the new tokenizer

It was on the higher end of Anthropics range - closer to 30-40% more tokens

https://www.claudecodecamp.com/p/i-measured-claude-4-7-s-new...
aray07
·há 3 meses·discuss
yeah thats the part that is unclear to me as well - if our usage capacity is now going to run out faster.
aray07
·há 3 meses·discuss
im running some experiments on this but based on what i have seen on my own personal data - I dont think this is true

"given that Opus 4.7 on Low thinking is strictly better than Opus 4.6 on Medium, etc., etc.”

Opus 4.7 in general is more expensive for similar usage. Now we can argue that is provides better performance all else being equal but I haven’t been able to see that
aray07
·há 3 meses·discuss
effort level is separate from tokenization. Tokenization impacts you the same regardless.

I find 5 thinking levels to be super confusing - I dont really get why they went from 3 -> 5
aray07
·há 3 meses·discuss
i think the new qwen models are supposed to be good based on some the articles that i read
aray07
·há 3 meses·discuss
anthropic’s pricing is all based on token usage

https://platform.claude.com/docs/en/about-claude/pricing

So if you are generating more tokens, you are eating up your usage faster
aray07
·há 3 meses·discuss
are you okay with paying more for your services without any perceived improvement in the service itself?
aray07
·há 3 meses·discuss
yeah thats is my biggest issue - im okay with paying 20-30% more but what is the ROI? i dont see an equivalent improvement in performance. Anthropic hasnt published any data around what these improvements are - just some vague “better instruction following"
aray07
·há 3 meses·discuss
isn’t caveman a joke? why would you use it for real work?
aray07
·há 3 meses·discuss
yeah opus 4.7 feels a lot more verbose - i think they changed the system prompt and removed instructions to be terse in its responses
aray07
·há 3 meses·discuss
yeah similar for me - it uses a bunch more tokens and I haven’t been able to tell the ROI in terms of better instruction following

it seems to hallucinate a bit more (anecdotal)
aray07
·há 3 meses·discuss
yeah i am still not clear why there are 5 effort modes now on top of more expensive tokenization
aray07
·há 3 meses·discuss
good point - i analyzed text tokenization. will run some experiments to see how visual tokenization has changed
aray07
·há 4 meses·discuss
Yeah this is a bit crazy and not surprising at all.

The limits have always been opaque and you never know when they change.

I started building an open-source local proxy that logs every rate-limit header Claude Code sends.

I am using it to track and get a better sense of the 5h and 7d weekly limits.

Some initial data from 11 observed 5h sessions on Max 20x: - 5h budget: roughly $120–$280 per window - 7d budget: roughly $1,300–$1,900 - Separate Sonnet-only 7d budget at ~$150 - 95% of tokens are cache reads. They barely move the meter.

It’s open source so more people can run it and we can figure out the real numbers.

https://github.com/abhishekray07/claude-meter
aray07
·há 4 meses·discuss
you can choose your own model in claude code and it generally defaults to Opus
aray07
·há 4 meses·discuss
Yeah - its definitely a new way of working and getting used to!
aray07
·há 4 meses·discuss
The dropping requirements problem is real. What's helped us is breaking the spec into numbered ACs and having the verification run per-criterion. If AC-3 fails you know exactly what got dropped.
aray07
·há 4 meses·discuss
I do it per feature, not per step. Write the AC for the whole feature upfront, then the agent builds against it. I haven't added a spec-validation step before coding but that's a good idea. Catching ambiguity in the spec before the agent runs with it would save a lot of rework
aray07
·há 4 meses·discuss
Agreed. The spec file is context. Writing acceptance criteria before you prompt provides the context the agent needs to not go off in the wrong direction. Human leverage just moved up and the plan/spec is the most important step.

Parallelism on top of bad context just gets you more wrong answers faster