DeepSeek Harness plugin

dsh-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.

Jump to install

Source facts

Repository
Enderfga/dsh-clawo
Latest update
Aug 20, 2026
Category
Tools & Capabilities
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/Enderfga/dsh-clawo
Plugin: dsh-clawo
Author: Enderfga

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

@enderfga/dsh-clawo

A bundle built on DeepSeek Harness 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