z953218350/dsh-archive-manager1

@mlgbnb/dsh-archive-manager

DeepSeek Harness 归档管理器插件,支持直接在设置页面中查看和删除已归档的会话。

AI 分析

核心用途是清理和管理历史归档会话。适合长期使用 DSH 积累了大量归档、需要定期整理存储空间的用户。

包名
@mlgbnb/dsh-archive-manager
版本
1.0.3
许可证
MIT
最近更新
2026年8月16日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:z953218350/dsh-archive-manager

📦 如何安装与配置到 DSH

DSH 采用 Cordis 模块化微内核架构,你可以通过以下方式安装该插件:

方法一:通过 NPM 线上源安装(推荐)

1. 使用 DSH 官方 CLI 命令一键安装

dsh plugin --profile web add -w @mlgbnb/dsh-archive-manager

2. 或者在 Web Profile 目录下通过 npm/pnpm 安装

cd ~/.dsh/profiles/web
npm i @mlgbnb/dsh-archive-manager

# 或使用 pnpm
pnpm add -w @mlgbnb/dsh-archive-manager

安装完成后,请确认 ~/.dsh/profiles/web/package.json 中的 dsh.profile.bundles 数组已包含 @mlgbnb/dsh-archive-manager

{
  "name": "dsh-profile-web",
  "private": true,
  "dependencies": {
    "@mlgbnb/dsh-archive-manager": "^1.0.0"
  },
  "dsh": {
    "profile": {
      "bundles": [
        "@deepseek-ai/dsh-base",
        "@deepseek-ai/dsh-web-app",
        "@mlgbnb/dsh-archive-manager"
      ]
    }
  }
}

方法二:通过本地源码目录(Link 方式)安装

如果你在本地开发该插件,可以使用本地链接方式安装: