- Accueil
- Plugins
- Sessions et messages
- dsh-archive-manager
dsh-archive-manager
earnest02522/dsh-archive-manager
Archived-conversation manager for DeepSeek Harness: view archived conversations grouped by workspace, restore them, and reveal their transcript folders.
Installer
dsh plugin --profile web add github:earnest02522/dsh-archive-managerREADME
dsh-archive-manager
A plugin for DeepSeek Harness that adds archived-conversation management: a sidebar entry that lists your archived conversations — grouped by workspace — and lets you view (open), restore (unarchive), or reveal the transcript folder of any archived conversation.
Background. DSH has a built-in Archive session action (it hides a conversation from the sidebar by adding its id to the registry-global
archivedSessionIdsset), but it ships no way to view archived sessions and no unarchive API — the shippeddsh-client-ui-workspaceREADME lists "no viewing or unarchive surface" as a known gap. The underlying transcript (session.jsonl*) is never deleted by any DSH code (the persistence seam has no delete interface), so restore is exactly: remove one session id from the archive set. This plugin implements exactly that, as a normal cordis plugin — no core modifications.
Features
- View, grouped by workspace — a popup panel (opened from a new button at the bottom of the sidebar) lists every archived conversation under its owning workspace's heading (sessions with no workspace go into "Ungrouped"), each row showing title, short id and last-updated time.
- Restore — one click removes the session from the archive set durably; the session reappears in the sidebar at its original position.
- Open — restore + open in one step (an archived session cannot stay open, so opening first unarchives it).
- Open conversation folder — reveals the session's transcript directory
(the folder holding its
session.jsonl*log) in your platform file manager (Explorer / Finder / xdg-open), so you can inspect or back up the raw log. - Safe by construction — the browser bundle is defensive: it never calls
hooks that the
sidebar.footer.actionslot may not provide, never crashes the web shell, degrades to a read-only panel if the remote mount fails, and avoids the inject/mount self-deadlock (thearchiveManagernamespace is mounted by the bundle itself, so it is fetched withctx.get(...)and is deliberately not listed ininject). - Zero build — plain ESM/CommonJS-style files, no compile step; installs
through the official
dsh plugin add. - i18n — Chinese and English UI text, chosen from the browser language.
Why there is no "delete" (and why the plugin does not add one)
Deleting a conversation is not something DSH supports, by design, and this plugin intentionally stays within that boundary:
- The persistence seam has no delete interface. DSH stores every session
as an append-only JSONL log under
~/.dsh/sessions/.... Thedsh-session-persistence-jsonlREADME states: "logs accumulate under the root until removed externally (the seam has no delete interface)". No DSH code — including this plugin — ever unlinks a transcript file. - "Archive" is a soft hide, not deletion. The built-in Archive session
action only adds the session id to
archivedSessionIds; the log, the workspace accounting slot, and the session's data all remain intact. That is precisely what makes restore possible. - Session cleanup is out-of-band. If you really want a transcript gone,
the supported way is to stop DSH and remove the session's directory under
~/.dsh/sessions/--<project>--/<session-id>/yourself (the sqlite search index then reconciles the entry away on the next scan). This plugin instead gives you the Open conversation folder button to find that directory quickly and safely.
In short: view and restore are reversible and safe; physical deletion is deliberately out of scope — a destructive "delete" button would fight the storage design (append-only logs, rebuildable indexes) and could silently destroy data this plugin cannot restore.
How it works
| Layer | What happens |
|---|---|
Host plugin (src/index.js) | Registers a root-scoped Typert Remote service ctx.archiveManager with two endpoints: archiveManager/unarchive (removes a session id from ctx.workspaceRegistry's archivedSessionIds through the registry's own serialized op queue — enqueueOperation/requireState/setState — and returns the updated set) and archiveManager/openSessionFolder (locates the session's transcript via ctx.sessionPersistence and reveals its directory in the platform file manager). |
Browser plugin (src/client.js) | Mounts the matching strict remote descriptors via ctx.remote.$mount, then registers a sidebar.footer.action entry (button + panel). The panel reads workspaces.list (items + archivedSessionIds) and sessions.list (both reactive stores), groups archived ids by workspace accounting, calls archiveManager/unarchive for restore, sessions.open(id) to open, and archiveManager/openSessionFolder for the folder button. |
No DSH source is patched. The plugin is discovered by the standard loader
(the profile's cordis.patch.yml) and its browser half by the client module
loader (dsh.client.platform = "web").
Compatibility
- DeepSeek Harness
0.1.x— verified end-to-end viadsh plugin addon0.1.1-rc.2(web profile); peer ranges cover^0.1.0-rc.6 || ^0.1.1-rc.1 - Windows (scripts + Explorer reveal) — the plugin itself is platform-agnostic (Finder / xdg-open on macOS / Linux)
Install
Official CLI (recommended)
dsh plugin --profile web add https://github.com/Earnest02522/dsh-archive-manager.git
The package declares a dsh.bundle manifest, so dsh plugin add installs the
dependency and registers its loader line automatically — no manual patch
editing needed. From a local checkout, a file path works too:
dsh plugin --profile web add "file:D:\path\to\dsh-archive-manager"
After install: restart DSH (or let the patch HMR re-compose the config), then hard-refresh the browser (
Ctrl+Shift+R). Non-default profiles: swapwebfor e.g.headlessin the command above.
Windows install script (legacy)
Open PowerShell and cd into the repo folder first, then run the script:
cd <path-to-repo> # e.g. cd D:\dsh-archive-manager
powershell -ExecutionPolicy Bypass -File .\scripts\install.ps1
Or from anywhere, with the repo at <repo>:
powershell -ExecutionPolicy Bypass -File <repo>\scripts\install.ps1
# non-default profile:
powershell -ExecutionPolicy Bypass -File <repo>\scripts\install.ps1 -ProfileName headless
The script copies the plugin into
%USERPROFILE%\.dsh\profiles\node_modules\dsh-archive-manager and enables it
in %USERPROFILE%\.dsh\profiles\web\cordis.patch.yml (a timestamped backup of
the patch file is created first). If the plugin entry already exists it is a
no-op.
After install: restart DSH (or let the patch HMR re-compose the config), then hard-refresh the browser (
Ctrl+Shift+R).
Manual install
-
Copy this folder to
%USERPROFILE%\.dsh\profiles\node_modules\dsh-archive-manager(create the folder if needed; the profile'snode_modulesis the hoisted resolution root for the loader). -
Edit
%USERPROFILE%\.dsh\profiles\web\cordis.patch.ymland append:- insert: - id: dsh-archive-manager name: dsh-archive-manager -
Restart DSH (or let the patch HMR re-compose the config), then hard-refresh the browser (
Ctrl+Shift+R).
Verify
-
The sidebar foot now shows an 归档 / Archive button next to Settings.
-
Click it: archived conversations are listed under their workspace headings with Open, Restore and folder-icon actions.
-
You can also probe the host endpoints directly:
POST /api/archiveManager/unarchive {"type":"client-request","rpcId":"x","method":"archiveManager/unarchive", "payload":{"args":{"request":{"sessionId":"<archived-session-id>"}}}} POST /api/archiveManager/openSessionFolder {"type":"client-request","rpcId":"x","method":"archiveManager/openSessionFolder", "payload":{"args":{"request":{"sessionId":"<archived-session-id>"}}}}
Uninstall
dsh plugin --profile web remove dsh-archive-manager
then restart DSH. Legacy fallbacks: run
powershell -ExecutionPolicy Bypass -File .\scripts\uninstall.ps1, or manually
remove the dsh-archive-manager loader entry from the profile's
cordis.patch.yml and delete
%USERPROFILE%\.dsh\profiles\node_modules\dsh-archive-manager.
Development
No build step: src/index.js is the host plugin, src/client.js is the
browser bundle (module-loader format). Sanity checks:
node --check src/index.js
node --check src/client.js
Host-side smoke test (real cordis Context + stub registry/persistence):
import { Context } from '@deepseek-ai/cordis';
import { apply } from './src/index.js';
const ctx = new Context();
let archived = ['a', 'b'];
ctx.provide('workspaceRegistry', {
enqueueOperation(op) { return Promise.resolve().then(op); },
requireState() { return { archivedSessionIds: archived }; },
async setState(s) { archived = s.archivedSessionIds; },
get archivedSessionIds() { return archived; },
});
const svc = apply(ctx);
console.log(await svc.unarchive({ sessionId: 'b' })); // { archivedSessionIds: ['a'] }
Known limitations
- No "delete" feature by design — see Why there is no "delete" above.
- The panel refreshes optimistically on restore; the authoritative
archivedSessionIdsset re-syncs on the next workspace baseline (reconnect / list refresh). openSessionFolderreveals the transcript directory (under~/.dsh/sessions/...), not the project workspace directory.- Removing a session's transcript file by hand is out of scope and will not be "restored" (the endpoint leaves the set unchanged for unknown ids).
License
MIT
Plugins associés
dsh-web-ui (dsh-chat-recovery)
zhu1090093659/dsh-web-ui
dsh-synapse
liangmianya/dsh-synapse
dsh-plugin-bridge
totoro-qaq/dsh-plugin-bridge
dsh-chat-import
nwflower/dsh-chat-import