News / Model Watch · Tooling
DeepSeek Harness v0.1: DeepSeek Open-Sources Its Agent Harness
Hours after shipping DeepSeek-V4-Pro-0813, DeepSeek released Harness v0.1 in Developer Preview — the open-source, MIT-licensed agent framework it uses to benchmark its own models. Overseas press quickly framed it as an open rival to Claude Code and OpenAI Codex. Here is what it actually is, what the early hands-ons found, and what API builders should take from it.
DeepSeek Harness (dsh) is a free, MIT-licensed, locally-run agent harness — and it is model-agnostic.
Announced by DeepSeek's official X account on Aug 13, 2026 (21:02 UTC+8) and published at
github.com/deepseek-ai/deepseek-harness.
Everything — tools, sandbox, sessions, UI — is a swappable plugin on the Cordis plugin system. Start it with
npx @deepseek-ai/dsh web (Web UI at 127.0.0.1:3080).
It's a v0.1 developer preview with promised breaking changes — evaluate it, don't bet production on it yet.
What shipped, per official sources
| Item | Detail |
|---|---|
| What | DeepSeek Harness v0.1 — Developer Preview of an open-source agent harness (dsh) |
| When | Announced 2026-08-13 21:02 (UTC+8) on X; repo public same evening |
| License | MIT |
| Architecture | "Everything is a plugin" on Cordis; tools / sandbox / sessions / UI all replaceable |
| Run | npx @deepseek-ai/dsh web → local Web UI at 127.0.0.1:3080 |
| Status caveat | Rapid iteration; "THERE WILL BE COMPATIBILITY-BREAKING CHANGES" (README) |
| Official docs tie-in | DeepSeek's API changelog notes V4-Flash public benchmarks were run in Harness "minimal mode"; docs sidebar now links the harness docs |
The same evening, DeepSeek-V4-Pro-0813 went GA on app/web/API with native Responses API support and Codex adaptation — see our 0813 release brief; the peak/off-peak price change lands Aug 16, 16:00 UTC.
What the overseas coverage says
- VentureBeat framed the launch head-on: an "open-source rival to Claude Code" shipping alongside V4-Pro on the API "with higher prices" — the two-sided story of the week: cheaper tooling, pricier flagship tokens.
- The Decoder highlights the architecture and the pedigree: "all features are swappable plugins" on the newly released Cordis system; persistent session logs record every prompt, tool call and result, with runs that can be resumed, branched, and replayed; minimal mode keeps just a shell and file editor — the configuration DeepSeek itself uses for benchmark runs. It also notes the project lead is Cui Tianyi, who joined DeepSeek from Jane Street in March 2026, and that the call for testers drew 712 applications in three days.
- 36Kr (English) ran an overnight hands-on with a blunt thesis — "It's not just another Claude Code, it's here to kill Claude Code" — and concrete findings: four work modes (standard; PTC, where the model writes TypeScript that merges ~10 rounds of tool calls into one execution; minimal for benchmarking; and a creation mode for building new modes); append-only trajectory logs; 288 plugin repos within 24 hours; hot-plugging 20+ plugins with zero restarts via Cordis' reversible-side-effect tracking; and session import from Claude Code, opencode, and Antigravity that "worked perfectly". Its sharpest observation: the model has no privileged seat — "DeepSeek's own models are no exception. They are just another plugin."
- Pandaily called it possibly "the most ambitious agent open source of the year," organizing it around the equation Model + Harness = Agent.
- Reddit (r/LocalLLaMA, r/DeepSeek) picked up the repo immediately; community threads note the Desktop/CLI builds and the fact that DeepSeek's published agent benchmarks all run through this harness.
- SCMP had earlier reported DeepSeek "beefs up agentic AI with harness tests" — useful context that this release was telegraphed, not improvised.
Why this matters for a China-model stack
- The harness is free; the tokens are the cost. With V4-Pro moving to peak/off-peak pricing (off-peak $0.66 input / $1.98 output per 1M; peak double; cache-hit pricing up the most — per The Decoder's reading of the official pricing page), the economics of agent loops shift toward cheaper and open-weight models for bulk work. That is exactly where an OpenAI-compatible multi-model gateway fits.
- Model-agnostic by design. The model layer is a plugin; community routing plugins already exist. Pointing
dshat an OpenAI-compatible endpoint (DeepSeek, Qwen, GLM, Kimi tiers) is the intended pattern, not a hack — verify your provider's terms and tool-calling support per model. - Trajectory logs are a debugging upgrade. Append-only logs with resume/branch/replay make long agent runs inspectable — valuable when you're A/B-ing which Chinese frontier model handles your repo-scale tasks best.
- Session import lowers switching cost. If you have Claude Code or opencode history, the 36Kr hands-on shows you can bring it along — worth knowing before your next harness decision.
- Don't migrate production yet. It's a v0.1 preview with promised breaking changes, and much of the UX currently depends on fast-moving community plugins of uneven quality. Sandbox it, benchmark with it, revisit at v0.2+.
Primary sources
- github.com/deepseek-ai/deepseek-harness (official repo: MIT, developer preview, Cordis, run instructions)
- DeepSeek on X — Harness v0.1 Developer Preview announcement (2026-08-13)
- DeepSeek API changelog — V4-Pro-0813 GA, Harness minimal mode benchmark note, Aug 16 pricing
- The Decoder — DeepSeek ships improved V4 Pro, raises API prices, open-sources its agent software
- VentureBeat — DeepSeek Harness launches as open-source rival to Claude Code
- 36Kr English — After Testing DeepSeek Harness All Night (four modes, plugins, session import)
- Pandaily — DeepSeek Harness Hands-On: Four Work Modes, Model + Harness = Agent
- SCMP — DeepSeek beefs up agentic AI with harness tests (pre-release context)
FAQ
Is DeepSeek Harness free?
The harness itself is free and MIT-licensed. You pay for model tokens — via DeepSeek's API or any OpenAI-compatible provider you route it to.
Claude Code killer?
Overseas hands-ons are impressed but honest: v0.1, breaking changes promised, plugin quality uneven. It's the first open harness from a frontier lab with benchmark-grade internals — a credible contender, not a replacement today.
Can I use it with Qwen / GLM / Kimi?
Architecturally yes — the model is just another plugin and routing plugins exist. Verify tool-calling support and terms per provider; ChinaModelAPI users should confirm live model IDs in the dashboard.
What's "minimal mode"?
Shell + file editor only, fancy features stripped — the config DeepSeek uses to benchmark bare model performance. Use it when you want comparable numbers across models.