DeepSeek Harness plugin

dsh-queue-director

DSH web plugin: reorder queued messages (up / down / top / bottom) before the agent processes them.

Jump to install

Source facts

Repository
loklamlok/dsh-queue-director
Latest update
Aug 17, 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/loklamlok/dsh-queue-director
Plugin: dsh-queue-director
Author: loklamlok

Check the source files

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

File explorer4 files
README.mdSource · read only
README language

dsh-queue-director

English | 中文

A DeepSeek Harness web plugin that lets you reorder queued messages (up / down / top / bottom) before the agent processes them — handy when writing long articles or running a batch of prompts in your own preferred order.

Features

  • Each queued message gains / buttons; when the queue is expanded, Move to top / Move to bottom chips appear as well.
  • Drag to reorder: grab a message row (or its handle) and drop it anywhere in the queue.
  • Send all now: promote every queued message to the AI at once (works while the task is running).
  • Clear queue: remove all pending messages in one click (with a two-step confirm to prevent accidents).
  • Built-in queue behaviors are preserved: preview, inline edit, remove, and send-now (steer).
  • No server restart needed after an update: DSH's client HMR pushes the new bundle automatically (a hard refresh of the page is enough).

How it works

  • Host half (lib/index.js): registers one trusted HTTP endpoint POST /queue-director/api/reorder, which reorders pending inbox items via agent.inbox.splice — the same durable path the built-in session.updateQueue RPC uses, so the client snapshot refreshes automatically. The route uses the same browser-trust fence as dsh-better-sidebar (loopback / trusted hosts + same-origin checks).
  • Client half (lib/client.js): shadows the built-in conversation.input.dock entry (id: "queue", priority: -1 — lowest renders), redrawing the queue strip with the extra reorder controls.
  • No DSH source is modified; the plugin mounts as a bundle via dsh.profile.bundles.

Requirements

  • DeepSeek Harness web profile (@deepseek-ai/dsh-web-app), dsh launcher
  • Node.js ≥ 20

Install

The plugin is not published to npm yet, so install it from source:

# 1. Clone the repository anywhere you like
git clone https://github.com/loklamlok/dsh-queue-director

# 2. In your DSH web profile directory ($DSH_HOME/profiles/web),
#    add the dependency (adjust the path to your clone):
#    "dependencies": { "dsh-queue-director": "link:<path-to-repo>" }

# 3. Register the bundle in package.json:
#    "dsh": { "profile": { "bundles": [..., "dsh-queue-director"] } }

# 4. Install and restart
pnpm install
# restart `dsh web`, then hard-refresh the page (Cmd/Ctrl+Shift+R)

Uninstall

cd "$DSH_HOME/profiles/web" && pnpm remove dsh-queue-director
# and remove "dsh-queue-director" from dsh.profile.bundles in package.json

Development

  • lib/index.js — host half (route + reorder logic; reorderInbox is exported for tests)
  • lib/client.js — client half (window.__ModuleLoader__.load factory, no build step)
  • cordis.patch.yml — bundle patch (inserts the plugin entry into the loader)

License

[MIT](LICENSE)