@seekjourney: 大家可能忽略了 DeepSeek Harness 昨天发布时的一个隐藏宝藏: .agents/skills/ 里面直接放了 11 个真实工程 Skill: Code Review、Pre-push Checks、找过度设计、Stacked…

X AI KOLs Timeline 工具

摘要

介绍 DeepSeek Harness 发布中包含的 .agents/skills/ 目录,内含 11 个真实工程 Skill(如代码审查、提交前检查、CoT 泄漏清理等),相当于开源了部分工程规范和 Agent SOP。

大家可能忽略了 DeepSeek Harness 昨天发布时的一个隐藏宝藏: .agents/skills/ 里面直接放了 11 个真实工程 Skill: Code Review、Pre-push Checks、找过度设计、Stacked PR、文档同步、双语翻译、CoT 泄漏清理,甚至还有自动录制 GUI PR 验收 GIF。 看起来是 DeepSeek 把自己的: 工程规范 + Review 方法 + Quality Gates + Agent SOP 直接开源了一部分。 做 Coding Agent / Harness 的,非常值得逐个拆。 https://github.com/deepseek-ai/deepseek-harness/tree/master/.agents/skills…
查看原文
查看缓存全文

缓存时间: 2026/08/14 15:35

大家可能忽略了 DeepSeek Harness 昨天发布时的一个隐藏宝藏:

.agents/skills/

里面直接放了 11 个真实工程 Skill:

Code Review、Pre-push Checks、找过度设计、Stacked PR、文档同步、双语翻译、CoT 泄漏清理,甚至还有自动录制 GUI PR 验收 GIF。

看起来是 DeepSeek 把自己的:

工程规范 + Review 方法 + Quality Gates + Agent SOP

直接开源了一部分。

做 Coding Agent / Harness 的,非常值得逐个拆。

https://github.com/deepseek-ai/deepseek-harness/tree/master/.agents/skills…


deepseek-ai/deepseek-harness

Source: https://github.com/deepseek-ai/deepseek-harness

DeepSeek Harness

English | 中文

DeepSeek Harness (dsh) is an open-source agent harness developed by DeepSeek AI.

It uses an architecture where everything is a plugin, and is powered by Cordis, whose design is described in A Programming Paradigm for Spatiotemporal Composability.

Developer preview

DeepSeek Harness is currently in developer preview and is iterating rapidly. THERE WILL BE COMPATIBILITY-BREAKING CHANGES.

Run

Run from npm

Install Node.js, then run:

npx @deepseek-ai/dsh web

The command starts the Web UI, served at http://127.0.0.1:3080 by default. See Web UI guide.

Run from source

To run from a repository checkout:

git clone https://github.com/deepseek-ai/deepseek-harness.git
cd deepseek-harness
pnpm install
pnpm run build
pnpm dsh web

Community and support

Contributing

See CONTRIBUTING.md.

Development

Start with the development guide and architecture documentation.

For agents, follow AGENTS.md.

License

MIT

Third-party dependencies and their licenses are disclosed in THIRD_PARTY_NOTICES.md.

相似文章

@Saccc_c: Deepseek harness 的轨迹模式太有意思了,现在完全可以知道 Agent 的工作进展,你的 Agent 员工再也不敢摸鱼了 其具体的思考步骤,调用工具,工具返回结果都清晰可见。最有意思的是,它会用不同颜色区分 AI 执行任务时…

X AI KOLs Following

DeepSeek Harness 发布了,带有轨迹模式,可以可视化 Agent 的思考步骤、工具调用和返回结果,并用颜色区分不同类型内容。可通过 npm 安装使用,适合开发者观察 Agent 工作进展。