DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Bailian Kb Dsh — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

bailian-kb-dsh

Bailian Kb Dsh

面向 DeepSeek Harness 的 Bailian 知识库工具:通过 DashScope RAG API 提供 kb_search 和 kb_chat,以及 bl CLI 管理技能。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add bailian-kb-dsh@0.1.19
README兼容性版本

兼容性与来源证明

Bailian Kb Dsh 以 bailian-kb-dsh 发布,当前版本为 0.1.19。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.1.19stable
2026/8/25
0.1.18stable
2026/8/24
查看其余 1 个版本收起版本
0.0.0-beta-e023af5-202608241135beta
2026/8/24

相关插件

正在加载相关插件…

最新版
0.1.19
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
282.5 kB
文件数
36
Surface
web
许可证
Apache-2.0
发布源
npm
GitHub
★ 320
周下载
60
安全扫描
✓ v0.1.19 扫描通过
最近提交
2026/9/1
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

README

Bailian Knowledge Base for DeepSeek Harness

Knowledge-base retrieval tools for DeepSeek Harness, backed by Aliyun Model Studio (Bailian).

Bailian Console · 中文文档 · DeepSeek Harness · API Documentation

What is this?

bailian-kb-dsh is a plugin (and dsh bundle) that gives a DeepSeek Harness agent access to knowledge bases hosted on Aliyun Model Studio (Bailian). It registers two model-facing tools — kb_search for raw evidence and kb_chat for grounded answers — and ships a settings page plus a management skill for the bl CLI.

Retrieval happens through retrieval services you deploy on Bailian: a service binds one or more knowledge bases to an embedding/rerank configuration and is addressed by its agent_id. The plugin keeps the list of deployed services in front of the model, so it can decide whether the question is answerable from your knowledge at all.

Features

  • Two model-facing tools — kb_search returns scored chunks with source references; kb_chat returns a complete grounded answer
  • Service awareness — the workspace's deployed retrieval services are injected into the conversation, so the model knows what it can look up instead of guessing service ids
  • Low-friction setup — sign in to the Bailian console from the settings page to fill in the API key and workspace id; an existing bl CLI login is adopted automatically
  • Settings page — a "Bailian KB" section in the web UI for credentials, default services, and service-cache inspection
  • Management skill — bundled bailian-kb skill teaching the agent the bl CLI workflow for creating knowledge bases, ingesting documents, and deploying services

Requirements

  • DeepSeek Harness with its plugin runtime (@deepseek-ai/dsh-*), Node.js >= 22.12
  • An Aliyun Model Studio account: a workspace id and a DashScope API key (get one)
  • At least one deployed retrieval or Q&A service in that workspace — create one in the console or with bl knowledge service create / bl knowledge service deploy
  • The bl CLI (npm install -g bailian-cli) for anything on the management side — creating knowledge bases, ingesting documents, deploying services. Retrieval itself calls the API directly and never shells out, so kb_search / kb_chat work without it

Installation

dsh plugin --profile web add bailian-kb-dsh

The CLI adds the bundle to the profile's layer stack; no manual YAML editing required. To remove it:

dsh plugin --profile web remove bailian-kb-dsh

Verify the plugin is composed — dsh --profile web --dump-config should list a tool-bailian-kb row.

Configuration

Option 1 — Settings page (recommended)

After installation, Settings → Bailian KB appears in the web UI:

  • Fetch from console login — opens the Bailian console in a browser on the host machine; when you finish signing in, the API key and workspace id of that account are stored on the host (the key never travels to the browser). Each login requests a freshly issued key, so switching accounts is one click.
  • API key — write-only: the stored value is never echoed back, only reported as configured or not.
  • Workspace id / default retrieval service / default Q&A service — editable with echo; the service ids can be picked from the cached service list. Clearing a value falls back to the layers below.
  • Retrieval service cache — shows when the injected service list was last fetched, how many services it holds, and offers a manual refresh for a service you just created.

If you have already run bl auth login, the API key and workspace id are adopted once from ~/.bailian/config.json at startup. A value you deliberately clear is never re-filled.

Option 2 — Environment and credential files

# ~/.dsh/.env, or the credential store at ~/.dsh/.credentials.yaml
DASHSCOPE_API_KEY=sk-xxx                    # required
BAILIAN_WORKSPACE_ID=ws-xxx                 # required
BAILIAN_DEFAULT_RETRIEVE_AGENT_ID=aid-xxx   # optional
BAILIAN_DEFAULT_CHAT_AGENT_ID=aid-xxx       # optional

Option 3 — Profile patch

The bundle inserts its own entry into the profile; you can override it by id in ~/.dsh/cordis.patch.yml or the profile's patch file. An override replaces the whole config object (no deep merge):

- id: tool-bailian-kb
  config:
    defaultRetrieveAgentId: aid-search-service
    defaultChatAgentId: aid-chat-service
    chatTimeoutMs: 600000

Disable the plugin with - id: tool-bailian-kb plus disabled: true.

Config fields

The config doubles as the bailian-kb settings section, so edits in the settings page or settings document apply to the next call without a restart.

FieldTypeDefaultMeaning
workspaceIdstring?—Bailian workspace id; the API host is the workspace subdomain https://<workspaceId>.<endpointHost>
endpointHoststringcn-beijing.maas.aliyuncs.comHost suffix; replace for another region or a private deployment
defaultRetrieveAgentIdstring?—Service kb_search falls back to when the caller omits agent_id
defaultChatAgentIdstring?—Service kb_chat falls back to when the caller omits agent_id
agentVersionstring?—beta (draft) or a published version number; defaults to the latest published version. Not exposed to the model
chatTimeoutMsnumber300000kb_chat timeout — the server side is a minutes-scale agentic loop

Resolution order

ValueSettings layer (settings page)Entry config (profile patch)Credential store / env
DASHSCOPE_API_KEYwrite-only control—DASHSCOPE_API_KEY
workspace id✅ workspaceId✅ workspaceIdBAILIAN_WORKSPACE_ID
default retrieval service✅ defaultRetrieveAgentId✅ defaultRetrieveAgentIdBAILIAN_DEFAULT_RETRIEVE_AGENT_ID
default Q&A service✅ defaultChatAgentId✅ defaultChatAgentIdBAILIAN_DEFAULT_CHAT_AGENT_ID

Every value is re-read per call, so a rotated key or a switched workspace takes effect immediately. The API key and workspace id are mandatory: without them the tools fail with a message pointing at these configuration paths. Default services are optional — when the workspace has exactly one deployed service for a scene, that one is used.

Tools

ToolParametersReturns
kb_searchquery, agent_id (required), top_k? (default 5, applied client-side), images? (image URLs for multimodal)Scored chunks with source references, plus a total
kb_chatmessage, agent_id (required)The complete answer plus a request_id

agent_id is required in both schemas: the schema cannot tell the model whether this deployment pins a default, and discovering a missing default at call time wastes a round-trip. The configured default is still honoured for programmatic calls that omit it.

The list of deployed services — id, name, and scene — is injected into the conversation as a context message, refreshed periodically and whenever a bl knowledge service command changes the inventory. Long lists are truncated with the total stated, so the model never mistakes a partial list for the full inventory.

Errors

  • HTTP 4xx — most often an agent_id that no longer exists, so the service list is refreshed and appended to the error message for immediate recovery
  • HTTP 5xx — passed through unchanged
  • Missing credentials — the message names the configuration paths (~/.dsh/.env, ~/.dsh/.credentials.yaml, the settings page) and links to the console key page
  • kb_chat timeout — the message explains the server-side multi-turn retrieval and suggests retrying or switching to kb_search

Known limitations

  • kb_chat buffers the server stream, so there is no progress output while it runs.
  • top_k is a client-side cut: the request body carries no such parameter, and how many chunks the server returns is decided by the service configuration.
  • Service names carry the routing signal. The service list API does not return a description field yet, so the model judges what a service covers from its name alone. Name your services after their content (Product docs retrieval, not Service 1).
  • At most two pages per scene are fetched; beyond that the injected list is marked as truncated.

Development

pnpm --filter bailian-kb-dsh run build       # tsc → dist/ (node half) + tsdown → dist/web/client.js (browser half)
pnpm --filter bailian-kb-dsh run typecheck   # node and web tsconfigs
pnpm --filter bailian-kb-dsh run test

For local integration, add the working copy to a dev profile (the patch file is watched by HMR):

dsh plugin --profile dev add <this-repo>/packages/bailian-kb-dsh

Internal design notes — context injection strategy, service cache layout, refresh triggers — live in docs/kb-dsh/runtime-behavior.md; the maintenance checklist is docs/agents/dsh-plugin.md.

Contributing

Bug reports, feature requests, and PRs are welcome. See CONTRIBUTING.md for developer setup and the contribution workflow.

License

Apache 2.0

相关插件

继续浏览 search-research 分类下经过校验的插件。

Weknora@wxg-prc-cpg/dsh-weknora适用于 DeepSeek Harness (dsh) 的 WeKnora 知识检索工具:通过自有知识库进行语义搜索、文档阅读以及 RAG/代理回答。Free Searchdsh-free-searchDeepSeek Harness 的免费网页搜索:13 个引擎(Bing/DuckDuckGo/AnySearch/SearXNG/Exa/Tavily/Keenable/Firecrawl 无需密钥;Parallel/Perplexity/SerpBase/DeepSeek 需要密钥),支持时间筛选、平台搜索和 web_fetch,并提供网页设置界面。Find Plugindsh-find-plugin在代理中查找 DeepSeek Harness 插件——实时搜索 GitHub 上的 dsh-plugin 主题,并按星标数排序。Mimirdsh-mimir用于 DeepSeek Harness 的研究助手插件套件(文献搜索、研究维基、LaTeX 编译、独立子代理审阅)