DeepSeek open-sourced its agent framework, DeepSeek Harness, on the night of Aug. 13, releasing the v0.1 developer preview under the MIT license. The project drew heavy attention on GitHub, with its star count nearing 60,000 within a few hours, according to the source material.
MIT-licensed release frames Harness as the execution layer behind an agent
DeepSeek presents the framework with a simple formula: "Model + Harness = Agent." In the source article’s explanation, the model acts as the brain and handles reasoning, while Harness serves as the execution-side nervous system responsible for tool invocation, task-state management, and the agent loop.
That distinction is central to how the product is described. A model can reason, but Harness is the layer that turns that reasoning into an agent that can actually complete work.
Four preset modes are available in the first developer preview
Harness comes with four preset modes:
- Standard mode, a full programming agent that can edit files, run shell commands, and search the web.
- PTC mode, which adds TypeScript code execution.
- Minimal mode, which keeps only Bash and a string-replacement editor.
- Creative mode, which allows plugins to be mounted or removed dynamically at runtime.
"Everything is a plugin" sits at the center of the design
The article says the real ambition behind Harness is not the four modes, but the architecture slogan: "Everything is a plugin."
Models, tools, conversation state, filesystem, sandbox, the agent loop, orchestration logic, and even the web interface are built on a plugin microkernel called Cordis. Those pieces can be swapped, recombined, and, in some cases, mounted dynamically during runtime.
In practical terms, the source describes Harness as a lower-level foundation that others can build on, rather than a fixed product with a closed structure.
Framework lead previously built Koishi and spent nine years at Jane Street
The architecture is led by Cui Tianyi, identified in the article as the creator of the open-source chatbot framework Koishi. The source says the Koishi community has accumulated more than 4,000 plugins, giving Cui prior experience with plugin ecosystems.
The article also states that Cui spent nine years at quantitative trading firm Jane Street developing high-frequency trading systems, and joined DeepSeek in March this year.
Aims at Claude Code and Codex, but with an open and model-agnostic strategy
DeepSeek Harness is positioned against Anthropic’s Claude Code and OpenAI’s Codex, though the go-to-market model is different. The article contrasts Claude Code and Codex as integrated vendor products that tie framework and model together, while Harness is open source, MIT-licensed, and model-agnostic.
According to the official description cited in the source, the framework supports DeepSeek, Anthropic, OpenAI, and about 40 model providers in total.
The article sees clear value for builders, less so for everyday coding-assistant users
The source draws a line between two use cases. For people building agent products or infrastructure, it says Harness is worth trying.
One reason is observability. Every step in a conversation is preserved in full, allowing users to replay the whole exchange or branch off from a specific step and test another approach. The article also notes that a single command can show what capabilities an agent has, which model it uses, and which tools it is connected to. It argues that this level of transparency is not available in closed products such as Claude Code.
For someone who only wants a day-to-day coding assistant, the source is less positive and says it may not be worth using at this stage.
The source lists three main reservations
Maturity remains limited
First, maturity. The article says DeepSeek itself warns of breaking changes. The plugin API and config schema are still unstable, documentation is incomplete, and even bug reports are directed to Discussions rather than Issues.
It is not built around a terminal-first coding-agent workflow
Second, the source says Harness is not a terminal-first coding agent. It describes the core value of Claude Code and Codex as experience refined around editing code inside real codebases, including the permission model, diff review, IDE integration, and more detailed tool behavior.
Harness, by contrast, is currently centered more on web UI and composability, and the article says those codebase-oriented details have not yet been polished to the same level.
Supply-chain risk is still a factor in preview
Third, the article flags supply-chain risk. Running remote code through npx or installing third-party plugins from Git during the preview phase requires users to manage version pinning and permission policies on their own.
Additional context cited in the source
The input also notes earlier coverage saying DeepSeek Harness was expected to begin internal testing this week and compete directly with Claude Code. It also includes background that the official version of DeepSeek-V4-Pro has gone live, with stronger agent capabilities, native OpenAI-format support, and new pricing.
The source further references related reports on DeepSeek’s in-house AI coding assistant plans, Claude Code Channels, and Anthropic’s open-source financial analysis plugin package.

