DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Session Pilot — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

dsh-session-pilot

Session Pilot

Manage DeepSeek Harness conversations from inside a conversation: new_conversation, rename_session, list_sessions, read_session, archive_session model tools plus official-slot UI actions

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:ruby1304/dsh-session-pilot#e04333e9616a986336a9b6f263f4c2d7fc8ee4a8
READMECompatibilityVersions

Compatibility and provenance

Session Pilot is published as dsh-session-pilot and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/10/2026

Versions

0.1.0stable
9/10/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/10/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in memory-context.

Memory Plugin@openviking/dsh-memory-pluginOpenViking memory and context bundle for DeepSeek HarnessContextdsh-contextA DeepSeek Harness plugin for context insight and management, with context dashboard and context command, for understanding how the context is made of, and how it evolves.Weknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Memsearch Dsh@zilliz/memsearch-dshMemSearch plugin for DeepSeek Harness: shared markdown memory across agents, with capture, pre-step context injection, memory-recall skill, and a skill-candidate review panel.

README

dsh-session-pilot

Manage conversations from inside a conversation, for DeepSeek Harness — model and human can both create, rename, list, read, and archive sessions mid-chat.

中文

Five model tools (the agent tidies sessions while chatting):

ToolWhat it does
new_conversationSpin a drifted topic or a well-scoped task off into a brand-new sidebar conversation with a complete, self-contained first user message
rename_sessionRename a conversation (defaults to the current one)
list_sessionsList conversations by recent activity (title, running state, directory); pass query to content-search messages
read_sessionRead a compact transcript of one conversation (latest user/assistant text messages, bounded)
archive_sessionArchive a conversation out of its workspace's session list (durable log retained)

Two official-slot buttons (no DOM injection):

  • Session-header "+ New chat" — one click to a blank conversation in the current workspace
  • Per-assistant-message "⧉" — carry the message text as a bounded context excerpt into a fresh conversation

Official paths only: the Host half reuses the Web UI's own sessionController / sessionQuery / workspaceRegistry seams; the UI uses only official slots (conversation.session.header.actions, conversation.chat.assistant-actions). Bilingual UI (zh/en) through dsh-client-locale.

Install

dsh plugin add dsh-session-pilot

Restart dsh. The model then sees five tools, the session header gains a "+ New chat" button, and every finalized assistant message gains a "⧉" action.

Usage

  • New conversation: say "spin this task off into a new conversation" — the model calls new_conversation with a self-contained briefing as the first message.
  • Session housekeeping: "rename this conversation to X", "list my recent conversations", "what did we discuss in session X", "archive session X".
  • Header button: click "+ New chat" to open a blank conversation in the same workspace.
  • Message action: click "⧉" on an assistant message — the plugin wraps its text (bounded to 4000 chars) as a <quoted-context> excerpt for the new conversation's first user message.

Why not subagent / fork

Existing capabilityDifference
subagentA temporary child that reports back to save this conversation's context — not a user-visible independent conversation
Message fork (official / dsh-turn-fork)Forks carry the history prefix; new_conversation starts zero-history conversations carrying only the first message you write
Sidebar "+"Blank conversations only, user-driven; this plugin lets the model and message-level actions create conversations too, optionally seeded
Official read-only tool-session-query package (opt-in)Event-level read-only queries; this plugin adds writes (create/rename/archive) and a compact housekeeping view

Closest community plugins (survey, 2026-09)

PluginOverlapKey difference
ltxlong/dsh-session-kitDay-to-day session management, archive managementIt is pure UI (session management menus, archive list/restore/delete/preview, local memory, compaction config, topic navigation) with no model tools; every management action here is a model-callable tool, plus new-conversation creation. The two coexist: it owns the interface, this plugin lets the agent act
lesterq/dsh-session-managerSession delete/archive/moveAlso a UI operations panel (no model tools); this plugin has the agent act directly in conversation
yangYzc/dsh-plugin-quote-replyIts "reply in new window" also creates a session with a quoteIt is selection-based quoting into a composer draft (you send manually); this plugin carries a whole message as the first admitted user message (the new conversation starts immediately). It also has no model tool and creates client-side (no sessionController workspace attach)
bpc-oss/dsh-fork-to-presetHeader button creates a sessionFork semantics: inherits completed turns into another preset; this plugin starts zero-history
qwert702/dsh-context-compressorSwitches to a fresh sessionAuto-triggered context compression; this plugin is deliberate, topic-driven creation
weibaohui/dsh-tasks, DSH Automation CenterNew session per runCron-driven, not in-conversation

No plugin ships this tool family — letting the model create, rename, and organize user-visible top-level conversations; that gap is this plugin's core.

Design notes

  • One transaction: new_conversation and the HTTP route share createSessionPilot — resolve the source session's workspace (direct attachment), call sessionController.create (the Host attaches the workspace), then optionally rename and prompt (mode: 'queue', forwarding exec.signal). Created conversations are ordinary durable Sessions.
  • Workspace and preset inheritance: the new conversation lands in the source's workspace, falls back to the source cwd, and (tool path) inherits the source's latest agent-preset/selected.
  • Reads through their own seams: list_sessions uses sessionController.list/search; read_session uses sessionQuery.readSession (live-preferred, cold persistence reads) plus readTitle, with bounded message projection (≤600 chars per message, ≤100 messages, ≤12000 chars total).
  • HTTP trust fence: the route accepts loopback Origin/Host only (same convention as dsh-turn-fork), application/json, bodies ≤ 64 KiB.
  • Cross-version: written against the 0.1.5-rc.1 API (peer deps) and verified on the 0.1.2-alpha.4 runtime; prompt always passes mode: 'queue' explicitly to satisfy both versions' SessionPromptRequest.

Known Limitations and Deferred Work

  • Text-only excerpts — images and tool-call blocks of an assistant message are not carried; re-reference files with @ in the new conversation.
  • Route path skips preset inheritance — UI-created conversations use the deployment's default agent preset (reading the source preset route-side needs an extra inspect, deferred).
  • No in-plugin unarchive — archiving only detaches a session from its workspace list (the log is retained); restoring happens in the workspace UI.
  • read_session skips tool events — it projects user/assistant text only; use the official tool-session-query package for tool-call details.
  • No undo for creation — a created conversation is an ordinary session; archive it with archive_session or from the session list.

Development

pnpm install
pnpm run typecheck
pnpm test          # build + node --test

Layout mirrors dsh-turn-fork: src/index.ts (Host), src/client/ (Client), src/shared.ts (shared value contracts), scripts/dsh-client-preset.ts (client bundle preset vendored from the dsh repository, MIT).