DeepSeek Harness plugin

dsh-companion-enterprise

DeepSeek Companion Enterprise — DeepSeek Harness 企业级伴侣插件:安全审计与 DLP、团队协作与知识管理、任务编排、多模型竞技场、执行轨迹分析、Prompt 工程工作台、API 成本治理。

Jump to install

Source facts

Repository
beijingwahw/dsh-companion-enterprise
Latest update
Aug 17, 2026
Category
Workflow & Automation
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/beijingwahw/dsh-companion-enterprise
Plugin: dsh-companion-enterprise
Author: beijingwahw

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

DeepSeek Companion Enterprise

> DeepSeek Harness 企业级伴侣插件 —— 面向企业开发团队的 AI 工程效率与安全平台。

![License: MIT](LICENSE) ![dsh-plugin](https://github.com/topics/dsh-plugin) ![DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness)

DeepSeek Companion Enterprise 是构建于 DeepSeek Harness 之上的企业级伴侣插件,为开发团队提供从安全合规协作效率的完整能力矩阵。所有数据仅存于本地 Harness 沙箱,零遥测、零追踪。

---

核心能力

安全与合规

  • 安全审计:全量操作审计日志,支持导出与检索
  • DLP 数据防泄漏:内置规则引擎自动识别 API Key、手机号、邮箱、密码等敏感信息,支持自定义规则与开关
  • 密钥管理:命名密钥库、作用域控制、轮换提醒、泄露检测

团队协作与知识管理

  • 团队配置:成员偏好、默认策略、配置导入/导出/差异对比
  • 知识快照:会话快照存档与检索
  • 经验库:团队经验沉淀、笔记、智能推荐
  • 评审流:多轮评审、评论、决策、合并

任务编排与自动化

  • 任务编排器:多步 Pipeline 定义、条件分支、超时重试、依赖管理
  • 定时任务:Cron 调度、空闲时段执行、断点续跑
  • 任务队列:运行中/排队/完成/失败状态追踪

开发者效率

  • 多模型竞技场:多模型并行对比、历史评测记录
  • 执行轨迹分析:耗时/Token/异常检测、最慢步骤定位
  • Prompt 工程工作台:版本管理、模板库、变量插值
  • API 成本治理:实时计价(动态抓取官方定价页)、预算控制、用量报表

基础能力

  • 对话智能导出:Markdown / PDF / JSON,单会话与批量 ZIP
  • 上下文交接摘要:自动生成会话交接摘要,武装给下一个对话
  • 全局对话检索:全文检索 + 标签管理

---

安装

前置要求

一键安装

dsh plugin add beijingwahw/dsh-companion-enterprise --profile web

启动后插件面板自动加载:

dsh web

> 常用进阶命令:升级 dsh plugin upgrade dsh-companion-enterprise --profile web;卸载 dsh plugin remove dsh-companion-enterprise --profile web;本地路径安装 dsh plugin add ./dsh-companion-enterprise --profile web

---

模块清单

模块说明默认启用
security安全审计与 DLP 数据防泄漏
team团队协作与知识管理
orchestrator任务编排与断点续跑
arena多模型竞技场
trace执行轨迹分析
promptPrompt 工程工作台
costAPI 成本治理
export对话智能导出
handoff上下文交接摘要
search全局对话检索

所有模块均可在 cordis.patch.yml 中独立开关。

---

权限与隐私

  • 网络:仅访问 api.deepseek.com(模型调用)及五家官方定价页(只读 GET,用于动态计价)
  • 存储:仅使用 companion 存储域,数据保存在 Harness 插件沙箱本地
  • 隐私:无用户行为追踪、无遥测、无数据上报;对话内容与 API Key 仅存于本地

---

开发

pnpm install          # 安装依赖
pnpm run build        # 编译 TypeScript
pnpm run typecheck    # 类型检查
pnpm run dev          # 本地 HMR 开发

从源码构建安装(贡献者 / 离线场景)

git clone https://github.com/beijingwahw/dsh-companion-enterprise.git
cd dsh-companion-enterprise
pnpm install
pnpm run build
dsh plugin add . --profile web

项目结构

src/
├── core/            # 核心服务(存储适配、HTTP、加密、隐私、计价)
├── modules/         # 功能模块
│   ├── security/    # 安全审计与 DLP
│   ├── team/        # 团队协作与知识管理
│   ├── orchestrator/# 任务编排
│   ├── arena/       # 多模型竞技场
│   ├── trace/       # 执行轨迹分析
│   ├── prompt/      # Prompt 工程工作台
│   ├── cost/        # API 成本治理
│   ├── export/      # 对话智能导出
│   ├── handoff/     # 上下文交接摘要
│   └── search/      # 全局对话检索
├── client/          # Web UI 组件
└── types/           # 类型定义

---

贡献

欢迎提交 Issue 和 Pull Request。请遵循以下规范:

1. Fork 本仓库并创建特性分支 2. 确保 npm run typecheck 通过 3. 提交信息遵循 Conventional Commits 规范 4. 提交 PR 并描述变更内容

---

许可证

[MIT](LICENSE)

---

相关链接