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 Port — DSH Plugin for DeepSeek Harness
← Plugins
S

dsh-session-port

Session Port

DSH plugin: bundle a session (logs, subagents, referenced media + workspace files) into one ZIP and restore it — GET/wsx/session-pack, POST/wsx/session-pack/import + Session Header Export/Import actions

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

npx -y @deepseek-ai/dsh plugin --profile web add github:seth-hg/dsh-session-port#d72469218e7590499bbe401b97fd357db5faba47
READMECompatibilityVersions

Compatibility and provenance

Session Port is published as dsh-session-port and currently resolves to version 0.1.4. 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/2/2026

Versions

0.1.4stable
9/2/2026

Related plugins

Loading related plugins…

Latest
0.1.4
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/2/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

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-port

Port a session in and out of DeepSeek Harness — bundle one session into a single ZIP and restore it anywhere.

中文

What it does

Export a session with everything it references — the log (root + subagents), media, and the workspace files — into one archive, then import that archive on another DSH, fully restored and re-attached to its workspace.

ActionWhat it does
ExportStreams one ZIP: manifest → logs → subagents → media → referenced workspace files
ImportRestores sessions, media, and workspace files; remaps paths; auto-attaches the session to its workspace
RepairRe-attaches an imported session and re-folds its title (fixes "ungrouped" / missing name)

Install

Requires Node.js ≥ 22.10 and pnpm (dsh plugin uses pnpm underneath).

# From GitHub (default branch, or pin a tag)
dsh plugin --profile web add "github:seth-hg/dsh-session-port"
dsh plugin --profile web add "github:seth-hg/dsh-session-port#v0.1.4"

# From a local checkout
dsh plugin --profile web add /path/to/dsh-session-port

Restart dsh web. Two Export / Import buttons appear in the session header.

Usage

From the session header

  • Export — downloads session-port-<id>.zip.
  • Import — pick a .zip; it restores into the current session's workspace (the header cwd).

Import also accepts DSH's built-in session-log export (the header /export download): it restores the root session, subagents, and media. That export carries no workspace files, so none are expected.

From the HTTP routes (loopback-trusted)

# Export (scope=referenced by default, or workspace)
curl 'http://127.0.0.1:3080/wsx/session-pack?sessionId=<id>&scope=referenced' -o out.zip

# Import into a workspace (path remap: old::new)
curl -X POST 'http://127.0.0.1:3080/wsx/session-pack/import?workspace=/path/to/workspace&remap=/old::/new' \
  --data-binary @out.zip

# Repair an imported session (re-attach + re-fold title)
curl -X POST 'http://127.0.0.1:3080/wsx/session-pack/repair?sessionId=<id>'

HTTP API

RouteMethodPurpose
/wsx/session-pack?sessionId=<id>&scope=referenced|workspace&level=0-9GETStream the ZIP archive
/wsx/session-pack/import?workspace=<dir>&remap=<old>::<new>POSTRestore an archive (JSON summary)
/wsx/session-pack/repair?sessionId=<id>POSTRe-attach + re-fold title (idempotent)

License

MIT