DeepSeek Harness plugin

dsh-subagent-response-promoter

Promote completed subagent responses ahead of ordinary queued parent context in DeepSeek Harness.

Jump to install

Source facts

Repository
JachinShen/dsh-subagent-response-promoter
Latest update
Aug 19, 2026
Category
Workflow & Automation
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/JachinShen/dsh-subagent-response-promoter
Plugin: dsh-subagent-response-promoter
Author: JachinShen

Check the source files

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

File explorer3 files
README.mdSource · read only

dsh-subagent-response-promoter

A small Host-side Cordis plugin for DeepSeek Harness.

Continuable background subagents already wake their parent when an activation settles. If a parent is busy, the runtime places the manager-authored subagent-settled response in the next safe Agent step. This plugin stably promotes those responses ahead of ordinary context in that step, so the parent handles child callbacks first without polling or interrupting an in-flight model/tool call.

The built-in send_message tool submits a coordinator relay as the child's next turn. This plugin moves that relay to the child's next-step inbox while preserving the original wake, so a running child receives it at its nearest later step boundary instead of waiting for its current turn to finish.

Behavior

Given one proposed Agent step:

ordinary A, child response A, ordinary B, child response B

The model receives:

child response A, child response B, ordinary A, ordinary B

A coordinator relay inserted into next-turn is durably removed and reinserted into next-step. The relocation does not cancel an active model request or tool call; it becomes visible only when the Agent reaches a safe step boundary. Other follow-up messages retain their ordinary next-turn behavior.

Install in a DSH profile

Add the repository as a profile dependency and bundle:

{
  "dependencies": {
    "dsh-subagent-response-promoter": "github:JachinShen/dsh-subagent-response-promoter#v0.2.0"
  },
  "dsh": {
    "profile": {
      "bundles": [
        "@deepseek-ai/dsh-base",
        "dsh-subagent-response-promoter"
      ]
    }
  }
}

Then reinstall that profile and restart its DSH process. The package's cordis.patch.yml inserts the Host plugin automatically.

Development

npm test

License

MIT