DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-project-organizer

Project Organizer

将项目对话重命名为清晰、基于内容的“类别|主题”标题。

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-project-organizer@0.2.0
README兼容性版本

兼容性与来源证明

Project Organizer 以 dsh-project-organizer 发布,当前版本为 0.2.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.2.0stable
2026/8/14
0.1.0stable
2026/8/14

相关插件

正在加载相关插件…

最新版
0.2.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
23 kB
文件数
10
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
29
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航Automation@michengai/dsh-automation在独立 DSH Session 中按计划执行编码任务,支持 Web 设置页与 Agent 双入口管理。

README

Project Conversation Organizer

Rename vague AI-generated project conversation titles into clear, content-based Category|Topic names.

This repository packages a ChatGPT-verified conversation-organizing skill as an experimental DeepSeek Harness / DSH Skill and installable plugin.

中文说明

Status

EnvironmentStatusEvidence
ChatGPTVerified by the authorDirectly invoking the installed skill renamed all conversations in the selected project.
DeepSeek Harness / DSHExperimental; not yet verified end to endThe repository contains and tests the DSH registration adapter, but the author has not tested live conversation discovery, reading, and renaming in DSH.

DSH can complete the workflow only if its host environment exposes capabilities to list project conversations, read their contents, rename them, and reread the results. The Skill detects missing capabilities and reports them instead of claiming success.

Origin

This skill began in ChatGPT, not in DSH.

Projects often accumulate many conversations whose titles were generated automatically by AI. Those titles can be vague, repetitive, or disconnected from what the conversation ultimately became, making it difficult to understand a project's contents from the conversation list.

The author created and verified this skill in ChatGPT to solve that specific problem: read each conversation's full content, identify its overall category and concrete topic, then rename it in the form Category|Topic. The goal is simple—a person should be able to understand what each conversation is for by looking at its title.

This repository is the next step in that history: sharing the method publicly and testing whether the same workflow can be used through DeepSeek Harness.

What the Skill does

Scope → Inventory → Read → Classify → Rename → Verify
  • Limits all operations to the selected project.
  • Reads conversation content instead of trusting the old AI-generated title.
  • Assigns a stable content category and a concrete topic.
  • Uses exactly one full-width separator: Category|Topic.
  • Preserves accurate titles that already follow the convention.
  • Rereads the conversation list to verify every change.

It only changes conversation titles. It does not create PROJECT.md, summarize the project into files, edit messages, move conversations, archive conversations, or delete anything.

Use in ChatGPT

With the skill installed in a ChatGPT project, invoke it directly, for example:

Organize the names of all conversations in this project.
Use Category|Topic titles based on each conversation's full content.

The author has verified this direct invocation workflow in ChatGPT. This repository does not claim that npm is a ChatGPT Skill installation mechanism; the npm package exists for the DSH adapter.

Install in DSH (experimental)

From npm:

dsh plugin --profile web add dsh-project-organizer

From GitHub:

dsh plugin --profile web add github:caoqinnan-web/dsh-project-organizer

For reproducible installs, pin a reviewed commit:

dsh plugin --profile web add github:caoqinnan-web/dsh-project-organizer#<commit-sha>

Restart the selected DSH surface after installation. The adapter registers project-organizer with ctx.skills.

Verify the bundle layer without booting the full profile:

dsh --profile web --dump-config

The output should include the dsh-project-organizer bundle and a project-organizer plugin row. This verifies plugin configuration, not the live conversation-renaming capability.

Use in DSH (experimental)

Ask DSH:

Organize the names of all conversations in this project.
Use Category|Topic titles based on each conversation's full content.

If DSH cannot access or rename project conversations, the Skill should stop, explain the missing capability, and provide a proposed title mapping when possible.

Architecture

  • skills/project-organizer/SKILL.md contains the host-aware naming workflow.
  • src/index.ts loads the Skill and registers it with the DSH Skill registry.
  • cordis.patch.yml mounts the runtime plugin into a DSH profile.
  • package.json declares dsh.bundle.patch, making the package installable with dsh plugin add.

Official DSH packages are peer dependencies so the plugin uses the host's runtime services instead of installing a competing copy.

Development

Requires Node.js 22 or newer.

npm install
npm run check
npm pack --dry-run

Validate the standalone Skill:

python3 /path/to/skill-creator/scripts/quick_validate.py skills/project-organizer

Publishing checklist

  • Publish the repository publicly on GitHub.
  • Add topics: dsh-plugin, deepseek-harness, agent-skills, ai-agents, chatgpt, conversation-management.
  • Keep dsh.bundle.patch, cordis.patch.yml, built lib/, and the Skill in the published package.
  • Keep community listings in draft or experimental status until the DSH workflow is tested end to end.

Security and scope

Review third-party plugins before installation. This Skill requests only conversation listing, reading, renaming, and verification within the selected project. It must not modify message contents or archive, delete, move, or merge conversations.

License

MIT