DeepSeek Reasonix: Native Coding Agent with High Caching and Low Cost

Reasonix is a new terminal-based AI coding agent built natively for DeepSeek models. It's designed around two key constraints: high caching efficiency and low cost — both critical for developers running code generation loops frequently.
Key Details
- Native DeepSeek support — Reasonix is tuned specifically for DeepSeek's architecture, not wrapped around a generic API. This allows optimizations like KV-cache reuse across consecutive requests.
- Aggressive caching — The tool caches intermediate results (prompt embeddings, partial completions) to avoid redundant computation. Early reviews mention “near-instant warm restarts” after the first call.
- Cost — Paired with DeepSeek's newly permanent V4 Pro price discount (from $0.50/M tokens → $0.17/M tokens, per HN thread), Reasonix claims “best-in-class per-request cost” for an agentic coding loop.
- Terminal-native — Runs as a CLI tool (
reasonix --model deepseek-v4-pro). No IDE plugin required. Supports both streaming and batch mode. - Open source — Repository at esengine.github.io/DeepSeek-Reasonix.
📖 Read the full source: HN AI Agents
👀 See Also

Testing AI Agents Against Real-world APIs with d3 Labs
d3 labs offers 10 free production APIs to help developers test AI agents in real-world scenarios instead of relying on unrealistic mocks.

Phantom: A Persistent AI Agent Built with Claude's Agent SDK
Phantom is an open-source Bun/TypeScript process that wraps Claude's Agent SDK (Opus 4.6) with persistent vector memory, a self-evolution engine, and an MCP server interface. It runs continuously on its own VM or Docker Compose and communicates via Slack.

New Tool Injects Instructions into Claude Code Based on Context Usage
A developer created a tool that monitors context usage and injects custom instructions to prevent mid-task compaction disasters.

Claude Code Rewrites PostHog's SQL Parser for 70x Speedup – How Property-Based Testing and Parallel Agents Worked
PostHog used multiple Claude Code sessions in parallel to rewrite their SQL parser, achieving a 70x speedup. The new parser is 16K lines of hand-rolled recursive-descent code with property-based testing.