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.

Tool Nanobot — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
T

dsh-tool-nanobot

Tool Nanobot

NanoBot Subagent Bridge — lets DeepSeek Harness run the local nanobot AI agent (HKUDS/nanobot) as a subagent via a nanobot_run tool (oneshot CLI or persistent OpenAI-compatible server).

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

npx -y @deepseek-ai/dsh plugin --profile web add github:2025Bigeye/dsh-nanobot-subagent-link#b0d7ffd70f48468c17246e783ca517da163309c3
READMECompatibilityVersions

Compatibility and provenance

Tool Nanobot is published as dsh-tool-nanobot and currently resolves to version 0.4.2. 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/20/2026

Versions

0.4.2stable
9/20/2026

Related plugins

Loading related plugins…

Latest
0.4.2
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/20/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 agents-orchestration.

Headless@deepseek-ai/dsh-headlessThe dsh one-shot bundle: a direct core Agent/Session runner over dsh-base with no Host, HTTP, or browser layerExperimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocolSubagent Claude Code@deepseek-ai/dsh-subagent-claude-codeOne-shot Claude Code subagent provider over the official Agent SDK

README

dsh-tool-nanobot · NanoBot Subagent Bridge

Run the local nanobot AI agent as a subagent from DeepSeek Harness (DSH).

Registers a nanobot_run tool: DSH hands one self-contained subtask to nanobot, which executes it with its own tools and context and returns only its final answer. The plugin also registers a nanobot-run runtime skill and a prompt section, so fresh conversations discover the capability.

Install

dsh plugin --profile web add dsh-tool-nanobot

Restart dsh web, then use it. Requires dsh web >= 0.1.0-rc.6 and a local nanobot CLI on PATH.

Usage

DSH calls nanobot_run automatically. Two invocation modes:

  • oneshot (default) — runs nanobot agent -m <prompt> as an independent process per task (stateless, safest for unrelated tasks).
  • server — calls a persistent nanobot serve OpenAI-compatible endpoint (/v1/chat/completions); faster, and auto-started when not already running.

Configuration (persisted in DSH Settings)

Namespace nanobot under Settings:

FieldDefaultDescription
modeoneshotDefault invocation mode: oneshot / server
oneshotCommandnanobot agent -m "{prompt}" --no-markdownoneshot command template; must contain exactly one {prompt} placeholder
serverBaseUrlhttp://localhost:8900server-mode address (loopback only)
serverStartCommandnanobot servecommand used to start the server
serverModel(empty)model to send; empty omits it so the server uses its own configured model

Security

  • The command template and base URL come only from trusted user settings — there is no model-controllable command/URL injection surface.
  • server mode enforces a loopback whitelist; the API key is never sent off-host.
  • Sandbox-aware execution with approval-gated escalation (sandbox_permissions + justification).
  • Output is truncated, and a started server process is terminated when the plugin tears down.

Requirements

  • DeepSeek Harness dsh web >= 0.1.0-rc.6
  • A local nanobot CLI (e.g. uv tool install nanobot-ai)
  • Windows: PowerShell, used by the shell service

Development

git clone https://github.com/2025Bigeye/dsh-nanobot-subagent-link.git
cd dsh-nanobot-subagent-link
npm install

Changelog

See CHANGELOG.md.

License

MIT