AI Agent Hub
Back to plugins
🧠

dsh-session-tools

Memory Updated 2026.08.25

Run the following command in DeepSeek Harness:

dsh plugin install Unintendedz/dsh-session-tools

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

Run dsh plugin install Unintendedz/dsh-session-tools in your terminal to install this plugin (full source at https://github.com/Unintendedz/dsh-session-tools), then restart the DSH Web service to activate it.

About this plugin

When you run multiple sessions side by side in DSH, they remain completely siloed. There is no native way for one session to read another's output, delegate a task to a different thread, or clean up inactive conversations. dsh-session-tools closes that gap, giving sessions their first structured channel of interoperability.

A set of four tools carries the core capabilities. session_send delivers one durable user message to a target session and returns a request ID immediately. session_wait uses that ID to await the exact assistant turn (60-second default timeout, tunable up to 600 seconds; pass 0 to poll) and exposes only visible text, never reasoning or tool traces. session_read returns a bounded, untrusted snapshot of another session's content. session_archive hides a session from normal lists while preserving its full log. Every session row's three-dot menu and the session header include a one-click Copy Session ID button, so you never have to hunt for an ID by hand.

The plugin suits developers orchestrating multi-agent workflows in DSH who need to pass context or results across sessions, or who want to archive historical conversations without deleting them. It requires DSH 0.1.1-rc.2 or later on a Web profile; install and restart the DSH Web service once to go live.

Use Cases

  • A session finishes analysis and forwards the result to another session for follow-up processing
  • Bulk-archive inactive sessions to tidy the sidebar while preserving full logs
  • Read another session's output from the current session as context for further reasoning

Best For

  • Developers orchestrating multi-agent workflows in DSH
  • Prompt engineers who need to pass context or results across sessions
  • Long-term users managing many sessions without deleting them individually