DeepSeek Harness plugin

dsh-qknowledge-base

Local knowledge base for DeepSeek Harness: document CRUD, keyword search and a kb_search model tool.

Jump to install

Source facts

Repository
2128627267/dsh-qknowledge-base
Latest update
Aug 15, 2026
Category
Tools & Capabilities
GitHub stars
1
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/2128627267/dsh-qknowledge-base
Plugin: dsh-qknowledge-base
Author: 2128627267

Check the source files

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

File explorer2 files
README.mdSource · read only

dsh-qknowledge-base 知识库

为 DeepSeek Harness 增加本地知识库:

  • 文档增删改查(标题、内容、标签)
  • 关键词评分检索(模型通过 kb_search 工具自动查阅;UI 中也可手动搜索)
  • 数据默认存于工作区 .dsh-features/knowledge-base.json(可通过 config.jsonkbPath 配置其他位置)

Host RPC(HTTP JSON)

方法入参说明
POST /dsh-qknowledge-base/list全部库与文档
POST /dsh-qknowledge-base/library/save{ library }新增/更新库
POST /dsh-qknowledge-base/library/delete{ id }删除库
POST /dsh-qknowledge-base/doc/save{ libraryId, doc }新增/更新文档
POST /dsh-qknowledge-base/doc/delete{ libraryId, id }删除文档
POST /dsh-qknowledge-base/search{ query, limit? }关键词检索,返回文本片段列表

模型工具

  • kb_search:在知识库中检索文档片段

安装(原生 bundle,与 dshmarket 同类)

本插件是标准 DSH bundle:安装后作为普通插件运行,不产生 Cordis 动态插件、无需批准、无需任何手动激活

dsh plugin --profile web add dsh-qknowledge-base

重启 dsh web 后:

  • 设置页“知识库”直接挂载;
  • kb_search 直接注册为普通模型工具;
  • 不出现 qkbsr-*,也没有 run-* 消息。

仓库

  • GitHub:https://github.com/2128627267/dsh-qknowledge-base
  • Topic:dsh-plugin(发布时请在仓库设置里添加该 topic)

---