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.

Agent Manager — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
A

@ruihuahe/dsh-agent-manager

Agent Manager

Manage the declared tool policy of DeepSeek Harness agent presets

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

npx -y @deepseek-ai/dsh plugin --profile web add github:hrhgit/dsh-agent-manager#d8bc41acf51f15a5c353c7659db72c80ae2c4177
READMECompatibilityVersions

Compatibility and provenance

Agent Manager is published as @ruihuahe/dsh-agent-manager 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
web
Release source
github
Registry updated
9/16/2026

Versions

0.1.0stable
9/16/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
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/16/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 security-access.

Doctor@linxin666/dsh-doctorTransactional rescue mode for DSH profiles with a supervised launcher, isolated recovery capsule, deterministic repairs, health monitoring, and a local Web recovery consolePocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Auto Reviewdsh-auto-reviewSecond-model AI auto-review for DeepSeek Harness approval requests: a read-only reviewer subagent decides allow/deny on the approval answerer chain, with fail-closed fallback and full session-log audit.

README

dsh-agent-manager

DeepSeek Harness settings plugin for the tool policy of agent presets. It adds an Agent Manager settings section; it does not manage model providers or model metadata.

  • Shows only the tools explicitly declared by the selected preset with agentTool.label.
  • Lets a user toggle static disabled: true / disabled: false rows in a locally authored preset.
  • Keeps shipped and other system-owned presets read-only, with a copy-to-user-preset path before editing.
  • Shows whether a declared row is host-controlled, not mounted, available, unavailable, or stale.
  • Makes clear that a policy change applies to later sessions; an existing session keeps the composition it started with.

The plugin delegates roster discovery, validation, locking, atomic writes, and runtime status to the Host's ctx.agentPresets service. The client retains only the currently selected preset in local browser storage.

Compatibility

This plugin requires a DeepSeek Harness build whose @deepseek-ai/dsh-agent-presets service provides inspectTools() and setToolEnabled(). It is packaged as a normal DSH plugin bundle and contributes one settings section through the public client injection points.

Declaring a tool

Preset authors opt a model-facing row into this Manager explicitly:

- id: persistent-bash
  name: '@deepseek-ai/dsh-tool-bash-persistent'
  disabled: false
  agentTool:
    label: Persistent Bash

Rows without agentTool.label stay outside the interface, even if their package happens to provide a tool. Conditional values such as disabled: !!js process.platform === 'win32' remain visible as Host-controlled but are not browser-switchable.

See README.zh-CN.md for Chinese documentation.