AI Agent Hub
Back to plugins
dsh-cross-session preview

dsh-cross-session

Workflow Updated 2026.08.25

Run the following command in DeepSeek Harness:

dsh plugin install Wha1eChai/dsh-cross-session

Paste the following prompt into your AI chat to install this plugin:

In DeepSeek Harness, run dsh plugin install Wha1eChai/dsh-cross-session to install this plugin; source code is available at https://github.com/Wha1eChai/dsh-cross-session .

About this plugin

In a DeepSeek Harness workflow, a session often already holds the context you need: an implementation in progress, an investigation with useful evidence, or a review that should stay separate from the main conversation. Copying that history into another chat window risks losing nuance and adds coordination overhead. dsh-cross-session lets multiple live sessions inside the same DSH process discover, message, and coordinate with each other directly, without spawning a second runtime, a daemon, or an extra network port.

The plugin exposes a set of Fleet tools: list live sessions in the current process, read a bounded summary of a target session, queue follow-up work for its next turn, steer its direction at the next step boundary, observe the complete turn that claimed a sent message, and cancel active work when explicitly enabled. All write operations go through a confirmed-targeting flow that is short-lived, caller-bound, and fail-closed, so model tools cannot silently address an arbitrary session ID.

If you run implementation, review, research, or long-running sessions in parallel within a single DSH runtime and want them to hand off context and instructions naturally instead of manual copy-paste, dsh-cross-session is the lightweight coordination layer built for that.

Screenshots

Use Cases

  • Send follow-up work directly to an implementation session without copying context
  • Run code review and implementation sessions in parallel, inspecting and steering each other via Fleet tools
  • Send steering instructions to a long-running research session to adjust direction without interrupting the current step

Best For

  • Developers managing multiple agent sessions in parallel within a single DSH runtime
  • Engineers who want to eliminate manual context copy-paste and coordinate sessions naturally
  • Automation builders using DeepSeek Harness for multi-step workflows requiring cross-session coordination