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.

Bioinf — DSH Plugin for DeepSeek Harness
← Plugins
B

dsh-bioinf

Bioinf

Bioinformatics skill router plugin for DeepSeek Harness: searchable index over a large skill library, an anysearch web-search provider, remote-exec tooling, and scenario guidance for literature review, bio-data analysis, and remote training

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

npx -y @deepseek-ai/dsh plugin --profile web add github:gsh150801/dsh-bioinf#ca6ae3b04fe3090b972f8abb8801a0f2a632545c
READMECompatibilityVersions

Compatibility and provenance

Bioinf is published as dsh-bioinf 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/1/2026

Versions

0.1.0stable
9/1/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
★ 0
Weekly downloads
0
Last push
9/1/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

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-bioinf

Bioinformatics skill router plugin for DeepSeek Harness.

Solves one core problem: a curated library of 986 bio-skills cannot be published as a flat per-session catalog (~230 KB / 60–80k tokens of prompt per session). This plugin replaces the catalog with search-based routing:

ComponentWhat it does
skill_search toolBM25-style scoring (idf-weighted fields: name ×6, category ×2, whenToUse ×1.5, description ×1) with CJK bigram support — Chinese and English queries both work. Returns top-k matches with exact names + categories. <10 ms per query over the full library.
skill_categories toolCategory tree (15 top-level categories, counts, sub-categories) for domain browsing.
bioinf-library skill providerRegisters all 986 skills into ctx.skills so the native skill tool loads bodies on demand (normalized kebab-case names; strips HTML provenance comments; guaranteed descriptions).
dsh-bioinf-anysearch (sibling row)Registers an [anysearch] WebSearchProvider into ctx.web — powers the native web_search tool. Separate row because headless profiles mount no web seam.
remote_exec tool (opt-in)SSH execution on a configured GPU/train server: nvidia-smi, nohup training, log polling, prediction. Registered only when remote.host/remote.user are set.
Guidance prompt sectionRouting rules ("never guess a skill name") + three scenario playbooks: (A) literature deep-review with falsifiable hypotheses, (B) bio-data retrieval/analysis, (C) remote training/prediction.

Usage

Pair with @deepseek-ai/dsh-tool-skill config catalog: off (see ~/.dsh/profiles/bioinf/cordis.patch.yml).

- insert:
    - id: bioinf
      name: 'file:///D:/projs/bioinf_agent/deepseek-harness/packages/examples/dsh-bioinf/lib/index.js'
      config:
        skillsIndexFile: 'D:/projs/bioinf_agent/skills_meta/_dsh_index.json'
    - id: bioinf-anysearch
      name: 'file:///D:/projs/bioinf_agent/deepseek-harness/packages/examples/dsh-bioinf/lib/anysearch-plugin.js'
      config:
        apiKey: '...'
- id: tool-skill
  name: '@deepseek-ai/dsh-tool-skill'
  config:
    catalog: off

Index format

skillsIndexFile points at a JSON array (build script: D:/projs/bioinf_agent/tools_scan/build_index.py, inventory: validate_skills.py):

[{"name":"scanpy","dir":"scanpy","cat1":"细胞组学与组学整合场景","cat2":"单细胞与转录组分析",
  "cat3":"scanpy","description":"...","whenToUse":"...","requirements":["pip install scanpy"],
  "hasScripts":false,"nScripts":0,"bodyChars":1234,"path":"D:/.../scanpy/SKILL.md"}]

Development

pnpm run build:lib:host   # rebuilds lib/ (tsc project graph + tsdown)
pnpm exec vitest run packages/examples/dsh-bioinf/tests/

Unit suites (36 tests, no harness boot): bioinf.spec.ts (index/tokenizer/body extraction/anysearch), scenarios.spec.ts (scenario A literature→hypothesis routing + skill-load chain; scenario B data-source routes + category tree + ssh argv), perf.spec.ts (measurement-based guardrails: per-step model-visible payload, cold/cached index load).

The package follows repo conventions: tsconfig.json in the tsc -b graph (referenced from the root tsconfig.host.json) and a local tsdown.config.ts with entries index, anysearch-plugin, search, anysearch.