AI Agent Hub
Back to plugins
🧠

dsh-session-search-pro

Memory Updated 2026.08.25

Run the following command in DeepSeek Harness:

dsh plugin install LeslieWylie/dsh-session-search-pro

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

Run dsh plugin install LeslieWylie/dsh-session-search-pro in your DSH profile to install the plugin; the source repository is available at https://github.com/LeslieWylie/dsh-session-search-pro

About this plugin

After many rounds in DSH, finding something you said earlier usually means digging through local files, decompressing frames, and scanning by hand. dsh-session-search-pro lets the agent search, list, and read every DSH session—past and current—right from the one you are in.

Three read-only tools are exposed: agent_session_search performs full-text retrieval (preferring the FTS5 index and falling back to a bounded scan when the index is unavailable), agent_session_list surfaces sessions filtered by time or working directory, and agent_session_read fetches title, metadata, and event stream for a single session by id. The plugin has zero runtime dependencies, creates no database or cache, and silently registers nothing if the sessionQuery service is missing.

It targets the DSH runtime only and does not cross Codex, Claude Code, or other platforms. If you work exclusively in DSH and want the agent to retrieve your history on demand without breaking the current conversation, this is the one-step shortcut.

Use Cases

  • Search past sessions for a specific topic without leaving the current one
  • List recent DSH sessions filtered by working directory
  • Read back a full conversation's event stream by session id

Best For

  • DSH developers who need to recall past conversations on demand
  • Agent workflows that rely on session memory plugins
  • Plugin authors seeking a zero-dependency, read-only session query layer