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.

Scholar — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-scholar

Scholar

Research/scholar tool suite for DeepSeek Harness: arXiv search, paper fetch (HTML/PDF, optional proxy), and OpenAlex journal lookup.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-scholar@0.1.0
READMECompatibilityVersions

Compatibility and provenance

Scholar is published as dsh-scholar and currently resolves to version 0.1.0. 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.1.0stable
8/13/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
19.9 kB
Files
8
Surface
any
License
MIT
Source
npm
GitHub
★ 3
Weekly downloads
97
Last push
8/13/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

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

dsh-scholar

DeepSeek Harness(DSH)科研工具套件:给 agent 补上「检索论文 / 读论文全文 / 查期刊」三个工具。

提供的工具

工具作用数据源
arxiv_search搜 arXiv 论文(标题/作者/摘要/abs+pdf 链接)官方免费 arXiv API,无需 key
scholar_fetch按 URL 抓全文:HTML→纯文本、PDF→抽文本任意 HTTP(S),可选代理
journal_lookup查期刊元数据(出版社/ISSN/发文量/被引/引用指标)OpenAlex API,无需 key

为什么做这个

DSH 原生的 web_fetch 只能抓 HTML/纯文本,不支持 PDF、也不带代理;对科研场景(读 arXiv PDF、查期刊)是明显缺口。dsh-scholar 补上这两点。

安装

dsh plugin add dsh-scholar

装完在组合里自动插入一个 host 行,三个工具默认全开。需要代理(国内访问境外论文站)时,编辑 profile 的 cordis.patch.yml,给 scholar 行加:

- id: scholar
  config:
    proxy: http://127.0.0.1:7890   # 你的 Clash 混合端口;留空 = 直连

配置项

字段默认说明
arxiv / fetch / journaltrue三个工具的开关
proxy""HTTP(S) 出网代理 URL,空 = 直连
fetchTimeoutMs30000单次请求超时预算
arxivMaxResults8arXiv 单次最多返回条数

注意

  • journal_lookup 返回的 OpenAlex 引用指标不是官方 JCR 影响因子。判断分区/影响因子请以官方(JCR / 中科院分区)为准。
  • 本项目采用 MIT 许可证;对第三方数据源(arXiv / OpenAlex)的调用请遵守其使用条款与频率限制。
  • PDF 抽取质量取决于 PDF 本身(扫描版/公式密集的排版可能抽得差,公式会碎);数学公式以 LaTeX 源为最佳。

开发

npm install      # 装 unpdf / undici
npm link         # 本地联调

代码是纯 ESM JavaScript,无需构建。工具注册范式对齐 @deepseek-ai/dsh-tool-web。