DSH Plugins Marketplace

DSH Plugins

Plugins

/

dsh-plugin-dev-kb

d

dsh-plugin-dev-kb

Manifest valid

Offline mirror of the official DeepSeek Harness documentation as a dsh skill: 168 site pages (EN/zh) plus 52 repository-only reference docs, with topic navigation and a full-text search index for plug

hasBundlePatch

dsh-plugin-dev-kb

npm version License AI Assisted

中文 | English

184 页官方镜像 · 58 篇补充文档 · 245 文件搜索索引 · 0 运行时依赖

写 dsh 插件时的随身官方文档:把 DeepSeek Harness 官方文档站点 https://deepseek-harness.github.io/deepseek-harness/ 的全部内容整理为 dsh 原生可用的形态—— 装了这个插件,agent 写插件时自动加载知识库,按任务场景定位文档,不用再翻网页。

这是什么

  • 站点完整镜像:官方文档(VitePress)由仓库 deepseek-ai/deepseek-harnessdocs/ 原始 Markdown 投影生成(链接已按站点路由重写,与线上逐字一致)。中英双语共 184 页。
  • 补充文档:仓库 docs/ 中未发布到站点的 58 篇开发参考(术语表、防御模式、模块图、测试策略、事故复盘、i18n 规范等)。
  • agent 友好skills/dsh-plugin-dev-kb.md 技能让 dsh 在插件开发任务中自动加载,获知知识库位置、 主题导航与检索策略;kb/meta/topics.md 按任务场景映射要读的文件;kb/meta/search-index.json 提供全量检索。

功能

  • 官方文档完整镜像:deepseek-ai/deepseek-harness 官方文档站全部内容整理为 dsh 原生可用的形态, 中英双语共 184 页,链接按站点路由重写,与线上逐字一致;
  • 仓库补充文档:未发布到站点的 58 篇开发参考(术语表、防御模式、模块图、测试策略、事故复盘、i18n 规范等);
  • agent 友好dsh-plugin-dev-kb 技能让 dsh 在插件开发任务中自动加载知识库; kb/meta/topics.md 按任务场景映射要读的文件,kb/meta/search-index.json 提供全量检索;
  • 人侧可用:直接浏览 kb/ 目录,或打开 kb/INDEX.md 按 URL 对照查阅;
  • 纯数据插件,零运行时依赖,不注册任何工具。

配置

无需任何配置,安装即用:

  • 不读取环境变量,不需要 API Key / token,不写配置文件;
  • 挂载后 skills/dsh-plugin-dev-kb.md 技能在会话启动时进入可用技能列表,自动生效;
  • 知识库更新走 npm run rebuild-index(见「更新知识库」),无手动配置项。

安装 / 挂载

# npm(推荐)
dsh plugin --profile web add dsh-plugin-dev-kb
# 或 GitHub
dsh plugin --profile web add github:Pasumao/dsh-plugin-dev-kb

源码安装(本地开发 / 调试):

git clone https://github.com/Pasumao/dsh-plugin-dev-kb.git
cd dsh-plugin-dev-kb
npm install
# 以 link: 方式挂载进 profile

本插件是「纯数据 + 技能」插件,不自带 bundle 自动挂载,装完后在 profile 的 cordis.patch.yml 末尾加一行手动挂载(唯一的一次性步骤,复制即用; 挂载为 profile 根层插件行,其 skills/ 技能进入全局层):

- insert:
    - id: dsh-plugin-dev-kb
      name: dsh-plugin-dev-kb

重新启动 / 新建 dsh 会话后,dsh-plugin-dev-kb 技能才会出现在可用技能列表中(技能清单在会话启动时快照)。

5 分钟验证

重启后开一个新会话,直接问:

帮我写一个最小的 dsh 插件

agent 会自动加载 dsh-plugin-dev-kb 技能(技能清单里可见),按 kb/meta/topics.md 定位文档后再动手——看到它引用 kb/site/... 路径即验证通过。

目录结构

dsh-plugin-dev-kb/
├── cordis.patch.yml   挂载声明
├── package.json       插件元数据
├── skills/
│   └── dsh-plugin-dev-kb.md   ★ 知识库使用指南(agent 加载此技能)
├── kb/
│   ├── site/          站点镜像:guide/ develop/ reference/(+ en/ 英文站)
│   ├── extra/         仓库补充文档:glossary、defensive-patterns、module-graph、postmortem/、i18n/ …
│   ├── meta/
│   │   ├── topics.md         ★ 主题导航:任务场景 → 文件
│   │   ├── search-index.json 全量索引(245 文件)
│   │   ├── source.json       来源 commit / 时间 / 统计
│   │   └── site-pages.txt    线上页面清单
│   ├── INDEX.md        站点 URL ↔ 本地文件 对照
│   └── README.md       知识库总览与更新方法
└── LICENSE

使用

  • agent 侧:写插件 / Tool / 配置 / 服务 / 事件 / 打包 / LLM 适配器时,加载 dsh-plugin-dev-kb 技能 → 读 kb/meta/topics.md 定位 → 按需 read/grep。
  • 人侧:直接浏览 kb/ 目录,或打开 kb/INDEX.md 按 URL 对照查阅。

自检

发布前跑结构自检(离线、零依赖):

npm run selfcheck   # 结构完整 + 入口 / bundle patch 存在性

更新知识库

kb/README.md:重新克隆 deepseek-ai/deepseek-harness(master 分支),安装投影依赖后 在仓库内调用 scripts/project-doc-site.tsprojectDocs() 生成 website/.generated/, 覆盖本插件的 kb/site/(并按发布清单同步 kb/extra/),再在本插件根目录运行 node scripts/rebuild-index.mjs 重建索引与 INDEX.md。

相关插件

本插件属于 Pasumao 的 dsh 插件生态,同系列已发布插件可搭配使用:

| 插件(npm) | GitHub | 说明 | |---|---|---| | dsh-notify | GitHub 仓库 | Windows 原生通知 + 系统托盘 | | dsh-plugin-choice-refresh | GitHub 仓库 | 选择增强:重新生成选项 / 更多选项 | | dsh-plugin-image-tools | GitHub 仓库 | 图片选择卡 + 回复内嵌图片 + 盲模型收图 | | dsh-plugin-table-zoom | GitHub 仓库 | 聊天长表格浮窗查看 + 一键复制 Markdown | | dsh-plugin-windows-guard | GitHub 仓库 | Windows 环境防坑:守则技能 + 乱码检测 / 危险写拦截 / 编码诊断修复 | | dsh-plugin-workbench | GitHub 仓库 | VS Code 风格文件浏览器 + 可编辑预览 |

本系列其余插件见 Pasumao · dsh 插件;觉得好用欢迎到 GitHub 点 ⭐。

AI 生成声明

知识库内容为官方文档的镜像整理(来源标注于 kb/meta/source.json),索引与 导航由 AI 辅助生成(DeepSeek Harness),均经人工核对。

License

MIT

Compatibility

DSH 0.1.5-rc.2: errorDSH 0.1.5-rc.1: errorDSH 0.1.5-alpha.2: errorDSH 0.1.5-alpha.1: errorDSH 0.1.3-alpha.2: errorDSH 0.1.2-rc.1: errorDSH 0.1.2-alpha.5: errorDSH 0.1.2-alpha.4: errorDSH 0.1.2-alpha.3: errorDSH 0.1.2-alpha.2: error

Versions

Latest versionPublishedSize
1.0.0
1.0.1
1.0.2
1.0.3
1.0.4
1.0.5
1.0.6
1.0.7
1.0.8
1.0.9
1.1.0
1.3.0

Similar plugins

dsh-plugin-guide

by PerryLink

Installable DSH bundle: the dsh-plugin-guide plugin-development knowledge base as an on-demand agent skill. Official docs archive (EN/ZH), Cordis primer, 114-repo community archive, 1654 archived Disc

Tools & CapabilitiesMemory & ContextManifest valid

38

Apache-2.0

TypeScript

Sep 15, 2026

dsh plugin --profile web add dsh-plugin-guide

by dsh-research

The research plugin market for DeepSeek Harness (dsh): a Research plugins page in Settings that installs a curated, hand-read catalog into the profile you are running. Catalog at dsh-research.com.

Tools & CapabilitiesManifest valid

4

MIT

TypeScript

Sep 1, 2026

dsh plugin --profile web add dsh-research

by yunhuantian

Plugin Store for DeepSeek Harness (DSH): a graphical app-store inside the Harness Web UI — browse, search and one-click install GitHub dsh-plugins (topic:dsh-plugin / #dsh-plugin repos), with local ra

Manifest valid

3

397/wk

MIT

JavaScript

Sep 11, 2026

dsh plugin --profile web add dsh-plugin-hub

by AwesomeHou

Plugin marketplace for DeepSeek Harness — live-syncs the GitHub dsh-plugin topic (1800+ repos) into a searchable, paginated settings tab with one-click install and agent tools (market_search / market_

Development & InfrastructureManifest valid

29

MIT

JavaScript

Sep 12, 2026

dsh plugin --profile web add dsh-plugin-marketplace

by kun2-5code

A starter template for DeepSeek Harness (dsh) plugins: six plugin shapes, fourteen browser UI surfaces, and demo slash commands in one installable bundle.

Development & InfrastructureManifest valid

7

MIT

TypeScript

Aug 16, 2026

dsh plugin --profile web add dsh-plugin-template

by cxdyun

DeepSeek Harness 版本的类 CodeX 插件市场

Tools & CapabilitiesManifest valid

3

63/wk

MIT

TypeScript

Aug 28, 2026

dsh plugin --profile web add dsh-skills-marketplace