Back to home

Compare

Comparing: DeepSeek Agent Tutorial Hits Chapter 10 — China's LLMs Now Chase Developers & DeepSeek Agent 教程出到第 10 章 — 中国大模型开始抢开发者

AEN
DeepSeekHarnessAgent·

DeepSeek Agent Tutorial Hits Chapter 10 — China's LLMs Now Chase Developers

DeepSeek's open-source Agent framework Harness (an Agent is an AI program that can autonomously execute multi-step tasks) is being dissected chapter by chapter in the Chinese tech community — one tutorial on Juejin (掘金, a major Chinese developer platform) has already reached Chapter 10. It starts with the simplest "greeting" tool, then walks developers through registering tools, adding configs, attaching event listeners (HMR — Hot Module Replacement — code changes take effect without restarting), and packaging everything into a plugin bundle. What we find worth watching is the phenomenon itself: when a company's open-source framework can inspire external developers to spontaneously write this depth of tutorial series, we know the ecosystem flywheel is already spinning.

What this is

The tutorial's subject is Harness, the open-source project DeepSeek hosts on GitHub. dsh is its command-line entry point, running on top of Cordis (a microkernel-style service orchestration framework) — every tool, config, and listener registers as an independent "Fiber", loaded according to dependency relationships. Writing a new tool plugin is essentially writing a TypeScript file, declaring parameters and return values via defineTool, then loading it through cordis.yml. The most critical engineering detail: the entire system supports HMR — change one line in a plugin and you see the effect immediately in the browser, no Agent process restart needed.

Industry view

One view holds that this represents DeepSeek's strategic upgrade: as the gap between models narrows, the real moat — a long-term advantage that's hard to replicate — is the developer ecosystem. Whoever gets more third parties to write custom tools and integrate with their Agent will lock in the next wave of enterprise AI applications — the logic mirrors how Apple built durable defensibility through the App Store. Another view is far more measured — open-source Agent frameworks are not scarce; LangChain (the dominant overseas AI application orchestration framework) and LlamaIndex (focused on retrieval-augmented generation) actually started earlier than dsh and have higher overseas recognition. Open-sourcing the model, framework, and plugin specs together will indeed rally developers in the short term, but how to convert ecosystem traffic into commercial revenue over the long term remains, as we see it, an unanswered question.

Impact on regular people

For enterprise IT: over the next 12-18 months, when evaluating Agent vendors, "does it offer a mature plugin ecosystem" will matter more than "how many points higher the model benchmarks score" — real enterprise scenarios always need custom tools, not generic chatbots. For individual careers: Agent development roles (writing tools, writing workflows) are moving from geek niche to legitimate technical profession — engineers who can write plugins and integrate APIs will become more valuable. For consumer markets: end users won't feel any change for now, but the underlying ecosystem battles will, in our view, determine what your AI assistant can and cannot do two to three years from now.

Source: juejin.cn
BZH
DeepSeekHarnessAgent·

DeepSeek Agent 教程出到第 10 章 — 中国大模型开始抢开发者

DeepSeek 开源的 Agent 框架 Harness(Agent 指能自主执行多步任务的 AI 程序),最近在中文技术圈被逐章拆解 —— 掘金上一篇教程已写到第 10 章,从最简的「打招呼」工具起步,一步步教人注册工具、加配置、挂事件监听器(HMR 即热模块替换,代码改动后无需重启即可生效)、打包成插件包。值得关心的是这个现象本身:当一家公司的开源框架能让外部开发者自发写出这么深度的系列教程,说明生态飞轮已经转动。

这是什么

教程主角是 DeepSeek 在 GitHub 上开源的 Harness 项目。dsh 是它的命令行入口,底层跑在 Cordis(一个微内核风格的服务编排框架)上 —— 所有工具、配置、监听器都注册成独立的「纤维」(Fiber),按依赖关系加载。新写一个工具插件,本质就是写一个 TypeScript 文件、用 defineTool 声明参数和返回值、再用 cordis.yml 加载进去。最关键的工程细节是整套体系都支持 HMR:插件改一行代码,浏览器里立刻能看到效果,不用重启 Agent 进程。

行业怎么看

一种声音认为这是 DeepSeek 的战略升级:当模型本身的差距在缩小,真正的护城河(难以被复制的长期优势)是开发者生态。谁能让更多第三方写自定义工具、接入自家 Agent,谁就能锁住下一波企业级 AI 应用 —— 逻辑和苹果靠 App Store 立住长期壁垒类似。另一种声音则冷静得多 —— Agent 开源框架并不稀缺,LangChain(海外主流 AI 应用编排框架)、LlamaIndex(专注检索增强生成的框架)甚至比 dsh 起步更早、海外认知度更高。DeepSeek 把模型、框架、插件规范全部开源,短期确实能聚拢开发者,但长期怎么把生态流量变成商业收入,目前还没有清晰答案。

对普通人的影响

对企业 IT:未来 12-18 个月评估 Agent 供应商时,「是否提供成熟的插件生态」会比「模型跑分高几分」更重要 —— 企业真实场景需要的永远是定制工具,不是通用聊天机器人。对个人职场:Agent 开发岗(写工具、写工作流)正从极客小众变成正经技术工种,会写插件、会接 API 的工程师会更值钱。对消费市场:终端用户暂时感受不到变化,但底层生态之争会决定两三年后你手上的 AI 助手到底能做什么、不能做什么。

Source: juejin.cn