2026-07-02 23:12:25 -07:00
|
|
|
|
# DeepSeek Harness
|
|
|
|
|
|
|
|
|
|
|
|
[English](README.md) | 中文
|
|
|
|
|
|
|
2026-08-13 12:02:48 +08:00
|
|
|
|
DeepSeek Harness(`dsh`)是由 [DeepSeek AI](https://deepseek.com) 开发的开源 agent harness(智能体框架)。
|
2026-07-23 12:15:56 +08:00
|
|
|
|
|
2026-08-13 12:12:13 +08:00
|
|
|
|
它采用**一切皆插件**的架构,并由 [Cordis](https://github.com/cordiverse/cordis) 驱动。
|
2026-07-02 23:12:25 -07:00
|
|
|
|
|
2026-08-13 12:02:48 +08:00
|
|
|
|
## 开发者预览
|
2026-07-22 10:55:16 +08:00
|
|
|
|
|
2026-08-13 12:02:48 +08:00
|
|
|
|
DeepSeek Harness 目前处于 _开发者预览_ 阶段,正在快速迭代。**未来将出现破坏兼容性的变更。**
|
2026-07-22 10:55:16 +08:00
|
|
|
|
|
2026-08-13 12:16:31 +08:00
|
|
|
|
## 运行
|
|
|
|
|
|
|
|
|
|
|
|
### 通过 `npm` 运行
|
2026-07-22 10:55:16 +08:00
|
|
|
|
|
2026-08-13 12:12:13 +08:00
|
|
|
|
安装 `Node.js`,然后运行:
|
2026-07-22 10:55:16 +08:00
|
|
|
|
|
|
|
|
|
|
```sh
|
2026-08-12 10:59:06 +08:00
|
|
|
|
npx @deepseek-ai/dsh web
|
2026-07-22 10:55:16 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
2026-08-13 12:02:48 +08:00
|
|
|
|
该命令会启动 Web UI,默认地址为 `http://127.0.0.1:3080`。详见 [Web UI 指南](docs/user/guide/index.md)。
|
2026-07-23 00:15:44 +08:00
|
|
|
|
|
2026-08-12 10:59:06 +08:00
|
|
|
|
### 从源码运行
|
2026-07-23 00:15:44 +08:00
|
|
|
|
|
2026-08-12 16:43:38 +08:00
|
|
|
|
如需从仓库源码运行:
|
2026-07-23 00:15:44 +08:00
|
|
|
|
|
|
|
|
|
|
```sh
|
2026-08-12 14:03:34 +08:00
|
|
|
|
git clone https://github.com/deepseek-ai/deepseek-harness.git
|
2026-08-12 10:59:06 +08:00
|
|
|
|
cd deepseek-harness
|
|
|
|
|
|
pnpm install
|
2026-08-12 11:57:02 +08:00
|
|
|
|
pnpm run build
|
2026-08-12 10:59:06 +08:00
|
|
|
|
pnpm dsh web
|
2026-07-23 00:15:44 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
2026-08-13 12:02:48 +08:00
|
|
|
|
## 社区与支持
|
2026-07-02 23:12:25 -07:00
|
|
|
|
|
2026-08-13 12:02:48 +08:00
|
|
|
|
- 欢迎通过 [GitHub Discussions](https://github.com/deepseek-ai/deepseek-harness/discussions) 提交反馈或 bug 报告。
|
|
|
|
|
|
- 为你的插件仓库添加 [`dsh-plugin`](https://github.com/topics/dsh-plugin) 主题,便于被发现。
|
2026-07-23 00:15:44 +08:00
|
|
|
|
|
2026-08-13 12:02:48 +08:00
|
|
|
|
## 参与贡献
|
2026-07-23 00:15:44 +08:00
|
|
|
|
|
2026-08-13 12:02:48 +08:00
|
|
|
|
参见 [CONTRIBUTING.md](CONTRIBUTING.md)。
|
2026-07-23 00:15:44 +08:00
|
|
|
|
|
|
|
|
|
|
## 开发
|
2026-07-02 23:12:25 -07:00
|
|
|
|
|
2026-08-13 12:02:48 +08:00
|
|
|
|
请先阅读[开发指南](docs/development.md)与[架构文档](docs/architecture.md)。
|
2026-07-23 00:37:30 +08:00
|
|
|
|
|
2026-08-13 12:02:48 +08:00
|
|
|
|
面向 agent:请遵循 [AGENTS.md](AGENTS.md)。
|
2026-07-23 00:15:44 +08:00
|
|
|
|
|
|
|
|
|
|
## 许可证
|
2026-07-02 23:12:25 -07:00
|
|
|
|
|
2026-08-13 01:46:57 +08:00
|
|
|
|
[MIT](LICENSE)
|
2026-07-29 21:29:49 -07:00
|
|
|
|
|
2026-08-12 16:43:38 +08:00
|
|
|
|
第三方依赖及其许可证见 [THIRD_PARTY_NOTICES.md](THIRD_PARTY_NOTICES.md)。
|