跪拜 Guibai
← All articles

DeepSeek Harness Is a Good Plugin Pattern, but the Model Behind It Is Already Behind

By badhope ·
Read original on juejin.cn ↗ Google Translate ↗ Alt translation

A plugin ecosystem can't compensate for a weak foundation model. After DeepSeek's price hike erased its cost advantage, the same orchestration pattern runs better on GPT or Grok, so betting on Harness means betting on a model that is already falling behind.

Summary

Harness ships with an app store of 595 plugins and a one-command install flow that feels smoother than manual MCP configuration. In practice, plugin conflicts drive up token costs and produce contradictory results, while the model itself lags behind GPT running bare. A same-code review test found GPT found more bugs with fewer false positives and lower token consumption, even without any plugin assistance. The framework's plugin-routing design is sound and can be replicated in roughly 50 lines of Python on a stronger model, making Harness more useful as a pattern to copy than as a product to adopt.

Takeaways
Harness is a plugin orchestration framework that routes user requests to installed Skills and reassembles the results.
An open plugin store ships 595 community plugins installable with a single command.
Running code-review and security-check plugins simultaneously doubled token consumption and produced contradictory findings.
In a same-code comparison, bare GPT found 5 bugs with a 15% false-positive rate, while DeepSeek with Harness found 3 bugs with a 40% false-positive rate.
DeepSeek's price hike removed its cost advantage, and V4 Pro performs worse than Flash in real-world use.
The core plugin-routing logic can be replicated in under 50 lines of Python on GPT or Grok.
Writing 5–10 custom plugins tailored to a specific workflow outperforms installing hundreds of generic demo plugins.
Conclusions

Harness treats the symptom — tool-calling friction — while the disease is model comprehension, which no plugin framework can fix.

An open plugin marketplace sounds like a moat, but when most plugins are toy demos, the marketplace becomes noise that degrades output quality.

DeepSeek's product line shows a regression pattern: Flash outperforms Pro, which suggests internal capability problems that a new framework won't reverse.

The 50-line Python replica demonstrates that plugin orchestration is a commodity pattern, not a defensible product differentiator.

Concepts & terms
Plugin orchestration framework
A system that routes a user's natural-language request to the most appropriate plugin (Skill), executes it, and stitches the results back into a coherent response.
MCP (Model Context Protocol)
A protocol for connecting AI models to external tools and data sources; Harness positions itself as a simpler alternative to manual MCP configuration.
Source: juejin.cn ↗ Google Translate ↗ Backup ↗