DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Organize Workspace Sessions — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
O

organize-workspace-sessions

Organize Workspace Sessions

用于整理 DeepSeek Harness 工作区会话的 DSH Skill:将会话重命名为 类别|主题,并提供归档、重命名和判断建议。支持 ChatGPT;不支持 Claude。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:caoqinnan-web/organize-workspace-sessions#b99ccf2b74293ba20c1c9215e74710673fa815de
README兼容性版本

兼容性与来源证明

Organize Workspace Sessions 以 organize-workspace-sessions 发布,当前版本为 1.0.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/8/22

版本

1.0.0stable
2026/8/22

相关插件

正在加载相关插件…

最新版
1.0.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 2
周下载
0
最近提交
2026/8/17
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 productivity-workflow 分类下经过校验的插件。

Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio 及其精选幻灯片模板,作为原生 DeepSeek Harness 对话视图。Mnemondsh-mnemon面向 DeepSeek Harness 的可组合三层记忆控制平面:持久化运行时上下文、可搜索的项目文档、可插拔的长期记忆、受保护的策略、WebUI 和无头工具。Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航Rewind Plugindsh-rewind-plugin同窗口内对话回退并恢复工作区文件

README

Organize Workspace Sessions

Rename DeepSeek Harness (DSH) workspace sessions into clear, content-based 类别|主题 (Category|Topic) titles, and report safe-to-archive / rename / needs-judgment suggestions.

This Skill organizes the sessions in the current DSH workspace through the host's local RPC interface (workspace.list / session.list / session.history / session.rename). It renames every visible session to 类别|主题. Because DSH currently has no way to view archived sessions, it does not archive anything — it only lists safe-to-archive candidates in the report.

中文说明

Usage

  1. Open the DeepSeek Harness workspace you want to organize.
  2. Start a new session in that workspace.
  3. Say “整理对话” (or “整理会话” / “整理工作区会话” / “清理会话”, etc.).

The Skill then inventories the workspace's sessions, renames them as 类别|主题, and reports archive/rename/judgment suggestions.

Compatibility

EnvironmentStatusNotes
DeepSeek Harness / DSH✅ SupportedRenames workspace sessions via the host's local RPC interface.
ChatGPT✅ SupportedVerified by the author (the same Category|Topic renaming workflow).
Claude❌ Not supportedTested by the author; Claude does not expose the required capabilities.
Other Agent hostsCapability-dependentThe host must expose session listing, full-content reading, title updates, and result rereading.

What the Skill does

锁定工作区 → 建立清单 → 阅读正文 → 分级 → 改名 → 回读验证
  • Locks to the current workspace and reconciles visible sessions against archived ones.
  • Reads each session's real content (only source.kind === "user" messages count as the user's question).
  • Classifies each session as A (safe-to-archive), B (needs judgment), or C (keep).
  • Renames every visible session as 类别|主题 (exactly one full-width separator).
  • Because DSH has no archive-view entry, it does not archive; A-class sessions are reported as archive suggestions.
  • Rereads the session list to verify every rename.

It changes session titles only. It does not archive, delete, move, merge, or edit session content.

How it works

The Skill drives the DSH host through its local RPC interface (POST /api/<method> on $DSH_WEB_URL, default http://127.0.0.1:3080):

  • workspace.list / session.list — inventory
  • session.history — read real content
  • session.rename — pin a 类别|主题 title
  • workspace.archiveSession — documented but intentionally not called for now

It ships two helper scripts:

  • skills/organize-workspace-sessions/scripts/dsh_rpc.sh — the RPC envelope
  • skills/organize-workspace-sessions/scripts/session_digest.py — one-pass content digest for fast grading

Installation

As a DSH plugin:

dsh plugin --profile web add "github:caoqinnan-web/organize-workspace-sessions#main"

Or use the skill folder directly: drop skills/organize-workspace-sessions into your skills directory.

Repository structure

  • skills/organize-workspace-sessions/SKILL.md — the skill instructions.
  • skills/organize-workspace-sessions/scripts/ — helper scripts (dsh_rpc.sh, session_digest.py).
  • skills/organize-workspace-sessions/agents/openai.yaml — interface metadata.
  • src/, cordis.patch.yml — the DSH plugin wrapper that registers the skill.

Development and validation

npm install
npm run check

License

MIT