HackerTrans
トップ新着トレンドコメント過去質問紹介求人

aray07

no profile record

投稿

[untitled]

1 ポイント·投稿者 aray07·17 日前·0 コメント

[untitled]

1 ポイント·投稿者 aray07·24 日前·0 コメント

[untitled]

1 ポイント·投稿者 aray07·25 日前·0 コメント

[untitled]

1 ポイント·投稿者 aray07·先月·0 コメント

Why images use 3x more tokens in Claude Opus 4.7

claudecodecamp.com
3 ポイント·投稿者 aray07·3 か月前·0 コメント

Images cost 3x more in Opus 4.7

claudecodecamp.com
2 ポイント·投稿者 aray07·3 か月前·0 コメント

Measuring Claude 4.7's tokenizer costs

claudecodecamp.com
714 ポイント·投稿者 aray07·3 か月前·498 コメント

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

claudecodecamp.com
4 ポイント·投稿者 aray07·3 か月前·2 コメント

Verification Is the Next Bottleneck in AI-Assisted Development

opslane.com
6 ポイント·投稿者 aray07·3 か月前·2 コメント

[untitled]

1 ポイント·投稿者 aray07·3 か月前·0 コメント

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

claudecodecamp.com
4 ポイント·投稿者 aray07·3 か月前·0 コメント

I Tried to Reverse Engineer Claude Code's Usage Limits

claudecodecamp.com
3 ポイント·投稿者 aray07·3 か月前·0 コメント

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

github.com
5 ポイント·投稿者 aray07·4 か月前·0 コメント

You shouldn't use ultrathink in Claude Code

claudecodecamp.com
3 ポイント·投稿者 aray07·4 か月前·0 コメント

High Agency

highagency.com
2 ポイント·投稿者 aray07·4 か月前·0 コメント

Claude Code's System Prompt

claudecodecamp.com
3 ポイント·投稿者 aray07·4 か月前·0 コメント

I Can't Stop Running Claude Code Sessions

claudecodecamp.com
4 ポイント·投稿者 aray07·4 か月前·0 コメント

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

claudecodecamp.com
3 ポイント·投稿者 aray07·4 か月前·2 コメント

The four levels of AI-driven engineering

klaviyo.tech
1 ポイント·投稿者 aray07·4 か月前·0 コメント

Some Simple Economics of AGI

arxiv.org
1 ポイント·投稿者 aray07·4 か月前·0 コメント

コメント

aray07
·先月·議論
i have never seen this before - where you offer something and then take that away
aray07
·3 か月前·議論
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
·3 か月前·議論
yeah thats the part that is unclear to me as well - if our usage capacity is now going to run out faster.
aray07
·3 か月前·議論
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
·3 か月前·議論
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
·3 か月前·議論
i think the new qwen models are supposed to be good based on some the articles that i read
aray07
·3 か月前·議論
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
·3 か月前·議論
are you okay with paying more for your services without any perceived improvement in the service itself?
aray07
·3 か月前·議論
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
·3 か月前·議論
isn’t caveman a joke? why would you use it for real work?
aray07
·3 か月前·議論
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
·3 か月前·議論
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
·3 か月前·議論
yeah i am still not clear why there are 5 effort modes now on top of more expensive tokenization
aray07
·3 か月前·議論
good point - i analyzed text tokenization. will run some experiments to see how visual tokenization has changed
aray07
·4 か月前·議論
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
·4 か月前·議論
you can choose your own model in claude code and it generally defaults to Opus
aray07
·4 か月前·議論
Yeah - its definitely a new way of working and getting used to!
aray07
·4 か月前·議論
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
·4 か月前·議論
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
·4 か月前·議論
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