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.

Clawo — DSH Plugin for DeepSeek Harness
← Plugins

@enderfga/dsh-clawo

Clawo

DeepSeek Harness bundle that registers Claw Orchestrator as an ACP subagent provider — delegate a dsh subagent to a multi-engine council across Claude Code, Codex and Cursor.

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

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

Compatibility and provenance

Clawo is published as @enderfga/dsh-clawo 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/17/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
6 kB
Files
4
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
43
Last push
8/20/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

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

@enderfga/dsh-clawo

A DeepSeek Harness bundle that registers Claw Orchestrator as an ACP subagent provider.

dsh already ships subagent-claude-code and subagent-codex, so delegating to a single coding CLI is covered. This delegates to something none of those can be: a multi-engine runtime. A clawo subagent can answer with one engine, or convene a council of several in isolated git worktrees and hand back the synthesis.

Install

dsh plugin --profile <name> add @enderfga/dsh-clawo

That is the whole setup. The bundle contains no code — it is nine lines of YAML that point dsh's own ACP client at npx @enderfga/claw-orchestrator acp.

Verify it composed into your profile:

dsh --profile <name> --dump-config | grep -A6 subagent-clawo

What the subagent can do

The provider is registered as clawo. Its prompts run through Claw Orchestrator's ACP agent, which supports:

ModeBehaviour
single (default)One engine answers.
councilSeveral engines debate in isolated git worktrees and reach consensus.
ultraplanLong-horizon planning pass.
ultrareviewParallel reviewers sweep the working tree.

Modes are selected with a slash command in the prompt — /council fix the failing test.

Requirements

  • dsh 0.1.0-rc.6 or newer (the dsh.bundle.patch manifest contract and @deepseek-ai/dsh-subagent-acp).
  • Node 22.19+ / 24+, matching dsh's own floor.
  • Whichever coding CLIs you want Claw Orchestrator to drive, authenticated on the host — claude, codex, and so on. The subagent runs on your machine, not in dsh.

Known limitations

Inherited from the ACP agent, and worth knowing before you rely on them:

  • No conversation resume. loadSession is advertised as false. This suits dsh, whose ACP subagent provider starts a fresh session per run and inherits no parent context anyway.
  • No mid-turn permission prompt. Claw Orchestrator resolves permission into engine CLI flags when a session opens, so session/request_permission is not implemented. dsh's provider defaults to auto-rejecting permission requests, so nothing is lost here.
  • Council is slow. A measured two-round run took roughly nine minutes. It is a deliberate action, not a default.

Why npx and not a dependency

Claw Orchestrator depends on re2, a 17 MB native module used for ReDoS-safe pattern matching. Declaring it as a dependency would make every dsh profile compile a native addon at install time. Fetching the published binary through npx keeps this bundle at three files and zero dependencies, and keeps a failed native build out of your profile install.

Status

dsh is in developer preview and states that compatibility-breaking changes are expected. This bundle depends on exactly two things — the dsh.bundle.patch manifest contract and the config keys of @deepseek-ai/dsh-subagent-acp — so a break here is a YAML fix, not a rewrite. Please open an issue if a dsh release moves either.

License

MIT