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.

Plugin Litsearch Zotero — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
P

dsh-plugin-litsearch-zotero

Plugin Litsearch Zotero

DeepSeek Harness plugin: literature/related-work search plus one-shot Zotero import. Ships two skills (literature-search, zotero-import) and a zotero-import CLI so an agent can check an idea's novelty, then file the papers it finds straight into a running Zotero.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:careyourcake/dsh-plugin-litsearch-zotero#67fbe4b1db65d863b9d4d0dd5675d74b3e4bd548
READMECompatibilityVersions

Compatibility and provenance

Plugin Litsearch Zotero is published as dsh-plugin-litsearch-zotero 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
github
Registry updated
9/8/2026

Versions

0.1.0stable
9/8/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/8/2026
View source ↗
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.

Anysearch Dsh@anysearch/anysearch-dshAnySearch web search and fetch providers plus advanced tools for DeepSeek HarnessIndustry Researchdsh-industry-researchIndustry and company research domain pack for DeepSeek Harness: methodology skills, an industry-chain structure model (industry_map), public-source policy/news tracking over ctx.web (industry_track), company scan cards (company_scan), and auditable researZoterodsh-zoteroLet agents search, read, and cite your local Zotero library: find papers, browse notes and annotations, pull evidence by question, open the source document, generate citations.Browser@anweat/dsh-browserSelf-contained browser runtime plugin for DeepSeek Harness (scoped @anweat) — bundles Playwright (chromium) and OpenCLI as plugin-local dependencies (with global-reuse fallback), exposes a `browser` service and interactive browser tools.

README

dsh-plugin-litsearch-zotero

A DeepSeek Harness (DSH) plugin that bundles two agent skills and a small CLI for the "check my idea, then file the papers" workflow:

  • literature-search — decompose an idea into searchable novelty axes, run a multi-source literature search, and grade every hit by how close it is to the idea. Used to answer "has anyone already done this?" before you start work.
  • zotero-import — push a BibTeX/RIS file into a locally running Zotero desktop app through its connector import endpoint. No zotero.org account, no API key.
  • zotero-import CLI — the same import as a shell command.

The two skills compose: literature-search finds the papers, zotero-import files them into your library.

Install

dsh plugin --profile web add dsh-plugin-litsearch-zotero

dsh plugin add installs the package into the profile and, because this package declares dsh.bundle.patch, activates it automatically. After a restart of the profile, the two skills appear in the session skill catalog.

Install straight from a Git checkout / GitHub instead: dsh plugin --profile web add github:<user>/dsh-plugin-litsearch-zotero

What you get

CapabilityKindTrigger
literature-searchskill"has anyone done this idea", "related work", "novelty check"
zotero-importskill"put these papers into Zotero"
zotero-import <file>CLIzotero-import refs.bib in the shell

Usage

Skill: literature-search

Ask the agent directly:

在 MuJoCo/IsaacLab 里训 DreamerV3,蒸馏成极小的反射网络,部署到 ROS2 真机——帮我查有没有人做过。

The skill guides the agent to produce a closeness table (🔴 几乎一样 / 🟡 部分重叠 / 🟢 背景) plus a "still-open gap" list, so you know which axis of your idea is actually novel.

Skill + CLI: zotero-import

zotero-import /tmp/refs.bib
# node bin/zotero-import.mjs /tmp/refs.bib   # if not on PATH

Zotero must be running. Items land in the currently selected Zotero collection.

How it works

  • lib/index.js is a Cordis plugin that registers a skill provider on ctx.skills (same pattern as @deepseek-ai/dsh-skill-badge). Skill bodies are read from skills/*.md at load time and served as bundled skills.
  • cordis.patch.yml is the bundle patch that inserts the plugin as a host row, so dsh plugin add activates it without any manual composition edit.
  • The CLI and the zotero-import skill use Zotero's local POST /connector/import endpoint (note: Zotero's local /api/ is read-only). Node's fetch does not honor http_proxy, which sidesteps the "502 Bad Gateway" you get when curl routes 127.0.0.1:23119 through a local proxy.

Structure

dsh-plugin-litsearch-zotero/
├── package.json          # bundle + bin + dsh-plugin keywords
├── cordis.patch.yml      # inserts the host row
├── lib/index.js          # Cordis plugin + skill provider
├── skills/
│   ├── literature-search.md
│   └── zotero-import.md
├── bin/zotero-import.mjs # CLI
└── README.md

License

MIT


中文简介

这是 DeepSeek Harness 插件:内置两个 skill——literature-search(把 idea 拆成可检索维度做文献/related-work 检索,给出接近度分级)和 zotero-import(把 BibTeX/RIS 直接写进正在运行的 Zotero,免账号免 API key),另附 zotero-import 命令行。安装:dsh plugin --profile web add dsh-plugin-litsearch-zotero。