DevOps / SRE / Platform · 13.08.2026, 17:25 UTC
DeepSeek open sources an agent harness where everything is a plugin
| Schweregrad | info |
|---|---|
| Kategorie | DevOps / SRE / Platform |
| Quelle | The New Stack ↗ |
| Veröffentlicht | 13.08.2026 UTC |
Sicherheitsmeldung mit Schweregrad noch nicht bewertet. Technische Details im Tab „Originaltext“; empfohlene Schritte in der Checkliste.
DeepSeek on Thursday open sourced the DeepSeek Harness, a new agent runtime for developers.
The Node.js-based harness is now available on GitHub as a developer preview and under an MIT license.
Clearly, there is some interest in the new harness. Within only a few hours, the repo picked up more than 33,000 GitHub stars, and that number is climbing quickly. Theirs is already a thriving ecosystem of community plugins.
What sets the DeepSeek harness apart is that “everything is a plugin,” as DeepSeek puts it. And the team takes that quite literally. The model adapter, the tool registry, the session log, and the agent loop itself are all plugins — and each one is replaceable.
DeepSeek Harness plugins. Credit: DeepSeek.
There’s “no privileged core to patch,” the project’s documentation notes, so extending the harness simply means mounting a plugin beside the others.
The overall architecture is based on Cordis, a “meta-framework for spatiotemporal composability.” To some degree, that sounds more complicated than it is. The core idea here is that software tools like modern AI harnesses require dynamic composition, meaning it needs to be easy to add and remove components without affecting the rest of the system — and those components need to be able to easily interact and understand how they depend on each other.
A recent paper by three researchers from Peking University and DeepSeek explains this in more detail and forms the basis of Cordis and the DeepSeek Harness.
Four modes, one model
The harness itself ships with four presets. Standard mode gives developers the full …