Type to search across all content
    Case Studies

    Reasonix: The DeepSeek-Native Coding Agent That Cuts Token Costs by 80%

    A terminal-native coding agent that treats prefix caching as an engineering invariant, not an afterthought. Real-world data shows 99.82% cache hit rates and $12/day for 435M tokens.

    A terminal-native coding agent that treats prefix caching as an engineering invariant, not an afterthought. Real-world data shows 99.82% cache hit rates and $12/day for 435M tokens.

    I’ve been running Reasonix hard for the past week, and the numbers check out. This isn’t another generic LLM wrapper that happens to support DeepSeek — it’s a purpose-built harness engineered around a single insight: DeepSeek’s prefix cache is the most underutilized cost lever in AI coding today, and most agent loops destroy it without realizing it.

    Here’s how it works, why it matters, and whether you should switch.

    The Cache Problem Nobody Talks About

    Every major LLM provider offers some form of prompt caching. DeepSeek’s is particularly aggressive — cached input tokens bill at roughly 10% of the miss rate. That’s a 90% discount on every token that hits cache. Sounds great on paper.

    Here’s the catch: DeepSeek’s automatic prefix caching only activates when the exact byte prefix of your previous request matches the current one. Change a single byte early in the prompt — a timestamp, a reordered tool spec, an injected working directory — and the entire cached prefix is invalidated.

    Most agent loops are cache-hostile by design:

    • Timestamps and environment variables injected into the system prompt every turn
    • Tool call histories serialized in non-deterministic order
    • Context compaction that rewrites rather than appends
    • Session state that mutates the prompt prefix mid-conversation

    The result? Most generic agent harnesses pulling <20% cache hit rates on DeepSeek, according to Reasonix’s architecture docs . You’re paying 10x more than you should for every token.

    What Is Reasonix?

    Reasonix is an open-source (MIT) , terminal-native AI coding agent built specifically for DeepSeek’s API. It runs on Node ≥ 22, installs via a single npm command, and gives you a full TUI with file editing, shell access, MCP integration, plan mode, and a companion web dashboard.

    Install it:

    npm install -g reasonix
    reasonix code my-project

    That’s it. Paste your DeepSeek API key on first run, and you’re in business.

    The Three Pillars

    Reasonix’s architecture builds on three pillars. Each solves a specific failure mode that generic agent frameworks don’t even acknowledge.

    Pillar 1: Cache-First Loop

    This is the heart of Reasonix, and it’s the reason you should care. Instead of building a general-purpose agent loop and hoping caching works, Reasonix partitions the context into three regions:

    ┌─────────────────────────────────────────┐
    │ IMMUTABLE PREFIX                        │ ← fixed for session
    │   system + tool_specs + few_shots       │   cache hit candidate
    ├─────────────────────────────────────────┤
    │ APPEND-ONLY LOG                         │ ← grows monotonically
    │   [assistant₁][tool₁][assistant₂]...    │   preserves prefix of prior turns
    ├─────────────────────────────────────────┤
    │ VOLATILE SCRATCH                        │ ← reset each turn
    │   R1 thought, transient plan state      │   never sent upstream
    └─────────────────────────────────────────┘

    Three invariants make this work:

    1. The prefix is computed once per session, hashed, and pinned. No timestamps. No dynamic variable injection. Everything the model needs to understand its tools is frozen at session start.
    2. Log entries are append-only. No reordering, no in-place editing. Every new turn just adds to the end.
    3. Scratch is distilled before it enters the log. Chain-of-thought reasoning and temporary state lives outside the cached prefix entirely.

    Parallel tool dispatch is built into the loop. Tools declare parallelSafe: boolean, and the loop dispatcher groups safe calls into chunks, racing them via Promise.allSettled. File reads, directory listings, web searches, and semantic lookups all run in parallel. Mutating edits run serially. The model sees the same deterministic shape regardless of which call finishes first.

    Pillar 2: Tool-Call Repair

    DeepSeek models have specific failure modes with tool calling that Reasonix handles transparently:

    • flatten — Schemas with >10 leaf parameters or depth >2 are auto-detected and presented to the model in dot-notation form. The dispatcher re-nests the args before calling your function.
    • scavenge — Regex + JSON parser sweeps the model’s reasoning_content for tool calls it forgot to emit in the structured tool_calls field.
    • truncation — Detects unbalanced JSON and either closes the braces or requests a continuation completion.
    • storm — Identical (tool, args) tuples within a sliding window are suppressed; the model gets a reflection turn instead of repeating itself.

    These aren’t edge cases. If you’ve used DeepSeek with a generic harness for more than an hour, you’ve hit every single one of these. Reasonix just handles them silently.

    Pillar 3: Cost Control (v0.6)

    This is where Reasonix gets clever. Three presets let you trade model tier for cost:

    Preset

    Model

    Effort

    Relative Cost

    flash

    v4-flash

    max

    1x

    auto (default)

    v4-flashv4-pro on hard turns

    max

    1-3x

    pro

    v4-pro

    max

    ~12x

    Three mechanisms make the defaults useful:

    • Turn-end auto-compaction: Every tool result exceeding 3000 tokens is shrunk to that cap when the turn ends. The model saw the full text for the turn that needed it; subsequent turns get a compact summary. A read_file call is cheaper than dragging 12KB of irrelevant output through every future prompt.
    • /pro single-turn arming: Type /pro when you know the next turn needs frontier reasoning. One turn on v4-pro, then auto-disarm. No forgetting to revert.
    • Failure-signal auto-escalation: If the model hits 3+ search-not-found errors or repair triggers in a single turn, the remainder of that turn automatically escalates to v4-pro. No silent cost surprises — it announces the escalation with a yellow warning row in the TUI.

    All auxiliary calls — subagent spawns, truncation repair retries, summary requests — hard-code v4-flash regardless of your preset. There’s no reason to pay pro rates for “paraphrase these tool results.”

    [Unknown block type: horizontal-rule]

    The Numbers: 99.82% Cache Hit Rate

    This is the part I had to verify myself before believing it. A real Reasonix user shared their DeepSeek dashboard for a single day of work on May 1, 2026. The totals:

    Metric

    Value

    Input — cache hit

    435,033,856

    Input — cache miss

    767,616

    Output

    179,763

    Cache hit ratio

    99.82%

    Total cost (v4-flash)

    $12.34

    Same workload, no cache

    $60.63

    Savings

    ~80%

    435 million input tokens for $12. That’s not cherry-picked synthetic data. That’s a real developer spending a full day coding with Reasonix.

    That same workload piped through a generic OpenAI-compatible client with no cache optimization? Roughly $60 on DeepSeek’s own API. The difference isn’t DeepSeek’s pricing — it’s the difference between a 99.82% hit rate and whatever default the client gets by doing nothing special.

    On v4-pro with the same hit rate, the savings jump to ~91% because the prefix-cache discount on pro is even steeper (~92% vs ~80% on flash).

    How It Compares

    Here’s how Reasonix stacks up:

    Feature

    Reasonix

    Claude Code

    Cursor

    Aider

    Backend

    DeepSeek only

    Anthropic

    OpenAI / Anthropic

    Any (OpenRouter)

    License

    MIT

    Closed

    Closed

    Apache 2

    Cost profile

    Low per task

    Premium

    Subscription + usage

    Varies

    DeepSeek prefix-cache

    Engineered

    N/A

    N/A

    Incidental

    MCP support

    Yes

    Yes

    Yes

    Partial

    Plan mode

    Yes

    Yes

    Yes

    No

    Skills / Memory

    Yes

    Yes

    N/A

    No

    Web dashboard

    Yes

    No

    N/A

    No

    Per-workspace sessions

    Yes

    Partial

    N/A

    No

    The difference is in that “DeepSeek prefix-cache” row. Most tools treat caching as a passive property of the API — you send requests, and if the API decides to cache something, great. Reasonix treats it as an active engineering constraint that shapes every design decision.

    Aider supports DeepSeek through OpenRouter, but its loop isn’t designed to maintain prefix stability across long sessions. Claude Code is DeepSeek-compatible via an API proxy, but it was designed for Anthropic’s models and doesn’t optimize for DeepSeek’s specific caching mechanics. Cursor is a full IDE — different category entirely.

    The DeepSeek Pricing Context

    DeepSeek announced its 75% V4 Pro discount will become permanent. The deepseek-v4-pro model API pricing will be adjusted to 1/4 of the original after the promotional period ends on May 31, 2026.

    This changes the economics. Before the discount, v4-pro was roughly 12x the cost of v4-flash for miss pricing. With Reasonix’s cache optimization, the effective ratio narrows to roughly 5x, thanks to v4-pro’s steeper cache discount (~92% vs ~80% on flash). Combined with Reasonix’s architecture, you can run v4-pro for less than most people currently spend on v4-flash through generic clients.

    DeepSeek has always been the price-performance leader. Now they’re widening the gap while competitors are raising prices.

    What I Don’t Like

    I’m not going to pretend this is perfect. A few things bug me:

    • Node.js dependency. Reasonix requires Node ≥ 22 and pulls in a non-trivial dependency tree. If you’re looking for a single static binary, this isn’t it. Several HN commenters pointed this out, and they’re not wrong.
    • DeepSeek-only. This is a feature, not a bug — but it means you can’t use it with OpenAI, Anthropic, or local models. If your workflow requires model diversity, Reasonix won’t be your primary tool.
    • The website is rough. The landing page has an animated typing effect that shifts content around while you’re trying to read. It’s clearly AI-generated and not well-tested on mobile. That has nothing to do with the tool’s quality, but first impressions matter.
    • Not for hardest-leaderboard reasoning. The project is honest about this: Claude Opus still wins some benchmarks. Reasonix is optimized for the 95% of coding tasks that don’t require a PhD-level proof generator.

    Verdict

    Reasonix is the most cost-effective coding agent I’ve tested for DeepSeek users. The architecture is innovative — the cache-first loop design solves a real problem that most frameworks don’t even acknowledge exists. The real-world 99.82% cache hit rate with 80% cost savings is not marketing fluff; it’s a reproducible outcome of deliberate engineering decisions.

    Who should use it:

    • Developers already using DeepSeek who want to cut API costs
    • Teams evaluating DeepSeek as a primary coding model
    • Anyone frustrated with Claude Code’s premium pricing and looking for alternatives
    • Developers who prefer terminal-native tools over IDE plugins

    Who should skip it:

    • Users who need multi-provider flexibility in a single tool
    • Teams with strict Node.js environment constraints
    • Developers who need top-tier reasoning benchmarks for complex analytical work

    The TL;DR: Reasonix is the first tool I’ve seen that treats DeepSeek’s caching mechanics as a first-class engineering constraint rather than an afterthought. The result is a coding agent that costs dramatically less to run than anything else in its class. At 6.5k GitHub stars and climbing, the community is already validating what the architecture delivers.

    Install it. Run it for a day. Check your cache hit rate. I’ll bet you don’t go back.

    Further Reading

    No comments yet

    Live feed in your inbox

    Track the tools. Lead the shift.

    Tech leaders use Artificialus to stay ahead: editorial picks, agent comparisons, MCP updates, and signal-heavy analysis when it matters.

    No spam. Only tools and shifts worth tracking.