DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

@xuxchloris/dsh-sdr

Sdr

DeepSeek Harness plugin for a controllable SDR digital employee

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add @xuxchloris/dsh-sdr@0.2.3
READMECompatibilityVersions

Compatibility and provenance

Sdr is published as @xuxchloris/dsh-sdr and currently resolves to version 0.2.3. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.2.3stable
8/28/2026
0.2.2stable
8/18/2026
0.2.1stable
8/18/2026
Show 1 more versionCollapse versions
0.2.0stable
8/18/2026

Related plugins

Loading related plugins…

Latest
0.2.3
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
73 kB
Files
11
Surface
any
License
MIT
Source
npm
GitHub
★ 30
Weekly downloads
55
Last push
8/28/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
Sdr — DSH Plugin for DeepSeek Harness

Related plugins

More verified plugins in search-research.

Browser Skill Dsh Plugin@wxg-prc-cpg/browser-skill-dsh-pluginDeepSeek Harness tool plugin that exposes BrowserSkill browser automation (browser_* tools) to the modelWeknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Free Searchdsh-free-searchFree web search for DeepSeek Harness: 13 engines (Bing/DuckDuckGo/AnySearch/SearXNG/Exa/Tavily/Keenable/Firecrawl keyless; Parallel/Perplexity/SerpBase/DeepSeek with key) + time filtering + platform search + web_fetch, with web settings UI.Find Plugindsh-find-pluginFind DeepSeek Harness plugins inside the agent — live GitHub dsh-plugin topic search, ranked by stars.

README

@xuxchloris/dsh-sdr

DeepSeek Harness 的 SDR 数字员工插件,当前已实际验证 0.1.0-rc.7 和 0.1.1-rc.2,提供九阶段外贸获客流程、知识检索、客户去重、人工审批和审计日志。

Email、WhatsApp、CRM 默认 dry-run,不会发送真实消息;运行时不依赖 Python 环境。

完整说明、架构图和验收记录见仓库根目录 README。

安装

当前已实际验证 DeepSeek Harness 0.1.0-rc.7 和 0.1.1-rc.2、Node.js 20+。官方 master 若要求更高 Node.js 版本,以其说明为准。

dsh plugin --profile web add @xuxchloris/dsh-sdr
dsh web

重启 Web 后新建会话,在模式菜单选择「SDR 数字员工」。源码安装:

git clone https://github.com/Xuxchloris/deepseek-harness-sdr-plugin.git
cd deepseek-harness-sdr-plugin
dsh plugin --profile web add ".\packages\dsh-sdr"
dsh web

preset 写入 $DSH_HOME/.agent-presets/sdr;Windows 未设置 DSH_HOME 时是 %USERPROFILE%\.dsh\.agent-presets\sdr。安装器不会覆盖没有 dsh-sdr 管理标记的同名 preset。

使用

在 SDR 模式中输入任务,例如「开发 3 个美国户外用品客户」。Agent 调用 sdr_create_task 和 sdr_next_step 推进,阶段顺序由服务端决定。第 6 阶段 sdr_review_drafts 列出开发信草稿,等人工选择;全部草稿批准后,sdr_continue_after_approval 才放行后续阶段。批准凭证绑定草稿哈希,草稿改过需要重新审批。

没有 DSH Web 时,在源码仓库的 packages/dsh-sdr 目录下跑离线测试:

npm.cmd test
node "..\..\scripts\demo_dsh_sdr.mjs"

模式菜单没出现时,重新执行 dsh plugin --profile web add ...,重启 dsh web 并新建会话。审批工具返回 fetch failed 说明当前会话不支持 agent 交互提问,任务会冻结在审批阶段,不会跳过审批继续执行。

数据与配置

任务状态默认保存在 %USERPROFILE%\.dsh\.dsh-sdr\state.json,可用 DSH_SDR_DATA_FILE 改路径。知识库默认是本地原子 JSON adapter;生产环境可注入 PostgreSQL:

const knowledge = new PostgresKnowledgeRepository({ pool, embedder, reranker });
const sdr = new SdrService({ store, knowledge });
await knowledge.ensureSchema();

知识库支持全文召回、可选 embedding、混合排序、reranker、来源版本和 Recall@K/MRR 评测。数据库、embedding 服务和凭证由部署环境提供,不进入工具参数或审计日志。

允许 Agent 写入用户确认过的知识:

$env:DSH_SDR_AGENT_KNOWLEDGE = '1'

允许 Agent 补充非敏感 connector 配置:

$env:DSH_SDR_AGENT_CONFIG = '1'

Agent 只能写白名单字段和凭证引用名,写不了密码、token、API key 的值。DSH_SDR_AGENT_LIVE_CONFIG=1 只保存 live 配置,不会自动启用真实发送。

工具

sdr_create_task、sdr_next_step、sdr_review_drafts、sdr_continue_after_approval、sdr_get_task、sdr_get_report、sdr_audit_log、sdr_knowledge_search、sdr_knowledge_upsert、sdr_knowledge_list、sdr_knowledge_evaluate、sdr_connector_status、sdr_configure_connector。

没有 send_email 或通用 send 工具。默认 connector 的 send() 返回 blocked-dry-run。

发布

发布由仓库根目录的 .github/workflows/npm-publish.yml 完成,只响应 dsh-sdr-v* 标签,发布前跑 npm test,用 GitHub Actions OIDC + npm Trusted Publishing,不需要长期 npm token。

npm version patch
git tag dsh-sdr-v0.2.3
git push origin dsh-sdr-v0.2.3

许可证

MIT。仓库不含 .env、真实客户数据和 API key。