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.

Easy Archive — DSH Plugin for DeepSeek Harness
← Plugins

dsh-easy-archive

Easy Archive

DSH web plugin: two-step inline archive on workspace sidebar rows — one click arms a red confirm, the second archives; archive is no longer buried in the ⋮ menu. · 工作区侧边栏行内两击归档:点一次变红确认,再点即归档,归档不再藏在 ⋮ 菜单里。

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-easy-archive@0.1.4
READMECompatibilityVersions

Compatibility and provenance

Easy Archive is published as dsh-easy-archive 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
npm
Registry updated
9/11/2026

Versions

0.1.4stable
9/11/2026

Related plugins

Loading related plugins…

Latest
0.1.4
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
24.9 kB
Files
7
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
0
Last push
9/13/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 ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Pet@linxin666/dsh-petMulti-pet companion plugin for the dsh web GUI: a registry-driven floating pet that reacts to model activity, with per-pet naming, petting/feeding interactions and an affinity score

README

easy-archive

A DSH (DeepSeek Harness) web plugin that moves session archiving out of the kebab (⋮) menu and onto the workspace sidebar row itself, as a two-step inline button:

  1. Hover a session row — an archive icon appears right before the ⋮ button.
  2. Click once — the button switches to a red 「确认归档 / Confirm archive」 pill.
  3. Click again — the session is archived.

The archive item is removed from the ⋮ menu — archiving lives only on the row, never buried in a submenu.

Features

  • Hover-revealed inline archive button on every session row (next to the ⋮ menu); one click arms the red confirm, the second commits.
  • Archive entry automatically hidden from the ⋮ menu whenever it opens (rename / fork stay where they are).
  • No slot takeover: the stock workspace browser keeps rendering; rename, fork, search, drag-reorder and everything else stay intact.
  • Archive runs through the same wire call the built-in menu used (ctx.workspaces.archiveSession), so behavior and permissions are identical.
  • Safety nets: the armed confirm auto-disarms after 4s, on mouse-leave, or on any click elsewhere; rows with ambiguous identities never get a button rather than risk archiving the wrong session.
  • Locale-aware (zh / en), no build step, no React dependency.

Install

From the DSH plugin market (recommended):

dsh plugin --profile web add github:bainianlaoyao/easy-archive   # GitHub distribution
dsh plugin --profile web add dsh-easy-archive                    # npm distribution (prebuilt; skips allowBuilds)

…or add it manually to the web profile's package.json:

{
  "dependencies": { "dsh-easy-archive": "github:bainianlaoyao/easy-archive" },
  "dsh": { "profile": { "bundles": [ "...", "dsh-easy-archive" ] } }
}

then pnpm install in the profile directory and restart dsh web (new plugins enter the window.__DSH_BOOT__ graph at boot; later edits to lib/client.js hot-apply on refresh).

How it works

The host half (lib/index.js) is an inert plugin row that carries the dsh.client declaration into the profile's loader graph; the browser half (lib/client.js) observes the sidebar DOM and, for every rendered session row:

  • resolves the session id exactly from the ctx.sessions.list snapshot by display title (disambiguated by the rendered relative-time bucket when titles repeat),
  • stamps the row with the id and inserts a 16px archive button into the row's action cell, before the kebab,
  • removes the archive item from any ⋮ menu it sees open.

Clicking the button never bubbles to the row's "open session" handler.

Development

node scripts/smoke.mjs   # validate the browser bundle shape
node scripts/check.mjs  # (alias) syntax + smoke

Notes

  • Blank "New Session" rows and search-result rows never get the button.
  • Sessions whose display title and time bucket collide are skipped (conservative: no wrong-session archives).
  • Uninstall: remove the dependency and bundles entry, pnpm install, restart dsh web.

License

MIT