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.

Archived Tasks — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-archived-tasks

Archived Tasks

DSH web GUI plugin: an "Archived Tasks" settings page that lists archived sessions and supports restore or permanent delete

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-archived-tasks@0.1.0
READMECompatibilityVersions

Compatibility and provenance

Archived Tasks is published as dsh-archived-tasks 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
npm
Registry updated
9/20/2026

Versions

0.1.0stable
8/15/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
35.3 kB
Files
7
Surface
web
License
Apache-2.0
Source
npm
GitHub
★ 1
Weekly downloads
24
Last push
8/15/2026
View source ↗Project homepage ↗
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 HarnessWeknora@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.Reme@agentscope-ai/remeReMe client and memory integrations for TypeScript agents

README

dsh-archived-tasks — Archived Tasks for DeepSeek Harness

English | 中文

A DeepSeek Harness Web GUI plugin that adds an Archived Tasks settings page: list every archived session and restore it, or permanently delete its log files and registry references in one click.

Install

Published on npm, installs as a profile bundle with a single command:

dsh plugin --profile web add dsh-archived-tasks

After installing, restart dsh web, then open Settings → Archived Tasks (设置 → 已归档任务).

To remove:

dsh plugin --profile web remove dsh-archived-tasks

What it does

The settings section lists sessions in the workspace registry's archived set:

  • 恢复 (Restore) — removes the session id from the registry's archivedSessionIds set; the session log and workspace accounting are kept.
  • 删除 (Delete) — destructive and irreversible. It rm -rfs the session log directory under data/sessions, drops the id from the archived set, detaches the in-memory session, and removes the id from every workspace's accounting list.

The delete route is intentionally guarded:

  • POST only, same-origin requests only (light CSRF check on the Origin header).
  • The session id must match ^session-[0-9a-f-]+$ — no path traversal.
  • The resolved session path must sit exactly one level under data/sessions/<encoded-cwd>/ before anything is removed.
  • dataRoot resolution: config.dataRoot → $DSH_DATA_ROOT → $DSH_HOME → automatic walk-up from the module location (works for both the local vendor layout and a published npm install).

Development

# local link install (from this checkout)
dsh plugin --profile web add link:$(pwd)

# publish a new version
npm publish --access public

License

Apache-2.0