DeepSeek reasonix, DeepSeek native coding agent with high caching and low cost
Related ongoing thread: DeepSeek makes the V4 Pro price discount permanent - https://news.ycombinator.com/item?id=48237663 - May 2026 (384 comments)
Related ongoing thread: DeepSeek makes the V4 Pro price discount permanent - https://news.ycombinator.com/item?id=48237663 - May 2026 (384 comments)
Discussion Highlights (20 comments)
embedding-shape
I'm not sure you need a "DeepSeek native coding agent" to take advantage of DeepSeeks cache, yesterday as the Codex quota usage issue still wasn't solved for me, I wrote a tiny little bridge so I could use DeepSeek V4 Pro via Codex, and seems most of everything I did was basically cached as far as I can tell: https://i.imgur.com/7eKn6wN.png (2026-05-23 Input (Cache hit): 39,123,200 tokens, Input (Cache miss) 1,692,286), and the bridge is doing not special, just massage the DeepSeek API shape into what Codex expects, nothing particular about caching at all. Besides being even better at the caching, I'm not sure what benefits you'd get compared to just firing up OpenCode with the DeepSeek API yourself, it'll similarly do caching for sure and also "talks directly to api.deepseek.com" if that matters, and you'll get a much more mature harness.
canadiantim
So what's best low cost coding agent these days? Kimi 2.6? Qwen's latest closed model? Composer 2.5? DeepSeek?
skeledrew
Not a fan of that page. The animated typing and resulting continuous resize of the example keeps moving the content beneath it down and up. Such bad UX.
hirako2000
Good timing given the cost spike across other frontier models.
theanonymousone
Isn't caching a server-side thing? How does the agent affect it, significantly at least?
declan_roberts
I love the focus on cache hit efficiency. Hats off to the deekseek team for creating a great product that maximizes cost efficiency for the user.
sergiotapia
What AI model did you use for the website design? This is the second one I see with the exact same font and color scheme. Just curious because Claude models lean towards purples for example. Thank you!
schaefer
Okay, I'm curious. From the FAQ, I see: >Can I point it at a self-hosted / private DeepSeek endpoint? >Yes. Since 0.30 we accept non-standard key prefixes for self-hosted DeepSeek endpoints. Just point `baseUrl` at your internal address — the loop, cache strategy, and tool protocol are unchanged. But my question is: If I use Reasonix to talk to a deepseek endpoint through openrouter, am I still getting the cache-hit benifits of this agent harness?
mmaunder
Unusable thanks to the top animation pushing the rest of the site down repeatedly as you’re trying to read.
unshavedyak
It's pretty funny, i'm a $200/m Claude subscriber and i've had little need to use anything else. However the more Claude has been restricting my workflow (notably around the recent IDE/-p usage change) the more i've been wanting to go elsehwere. I'm concerned since i really want SOTA reasoning, but DeepSeek still has me interested.
singiamtel
I would've liked benchmarks against other harnesses showing the caching performance
hebetude
Wow the UI looks exactly what I vibe coded yesterday. What a coincidence
quotemstr
> no reordering, no marker-based compaction Is this really the behavior you want? Yes, doing tool-result clearing and such will blow your cache, but if you do it only occasionally, it's still likely a win. Yes, cache hits are good, but not so good that it's okay to be profligate with context to preserve those precious, precious KVs.
yalogin
Can someone give me a eli5 version of what this is? It really sounds useful to Claude subscribers. Is this improving the cache hit and hence overall efficiency of coding workflows? Does it also let me host a local llm (deepseek)? What are model min requirements for this?
pkulak
Doesn't Pi Agent do exactly this? Assuming "append only" means they do some kind of compaction as well.
imagetic
https://shittycodingagent.ai
am17an
This Claude front end skill is now soon to be slop.
ricardobeat
> The loop is append-only, engineered around DeepSeek's byte-stable prefix cache — long sessions hold 90%+ cache hit and input-token cost collapses to ~1/5. Terminal-first, leave it running. AI marketing slop. This is how all models and coding harnesses work, isn't it? The author claims (in another AI-written post): > LangChain — along with every generic agent framework I checked — rebuilds the prompt every turn. Timestamps get injected. History gets reordered. Tool schemas re-serialize with different whitespace. I haven't touched LangChain in a long, long time, but don't think any of the current harnesses, Claude Code, Pi, Crush, OpenCode etc do that except if you change configuration? Keeping the context stable for caching is a very basic principle and not a wild innovation. This posing as DeepSeek-specific is also a mystery.
hmokiguess
Click on the download page, it's hilarious. It has a lot of information about the "smart probe" on the download and it's a realtime probe you can rerun. That's the pinnacle of AI slop over engineered garbage in my opinion. All of that information is noise.
fouric
I don't think it's particularly effective to create a new coding agent when there's existing open-source agents (especially extremely extensible ones like Pi) that already optimize for cache hits, have far larger communities, and work for providers other than Deepseek. I specifically use multiple different models and providers, so this wouldn't be useful for me. And it contributes to the problem of each person vibe-coding their own, incompatible, half-baked tool in a space, instead of contributing to a small set of tools and expanding them. It'd be better to just extend an existing tool.