z953218350/dsh-history-tree ↗★ 1
dsh-history-tree
在 DeepSeek Harness 网页端聊天消息左侧提供 Codex 风格的对话轮次时间轴树状图及历史概览。
AI 分析
核心用途是可视化展示对话分支。适合在复杂对话中频繁分叉、需要清晰理清上下文脉络和历史轮次的用户。
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:z953218350/dsh-history-tree说明文档
阅读完整 README ↗📦 如何安装与配置到 DSH
DSH 采用 Cordis 模块化微内核架构,你可以通过以下方式安装该插件:
方法一:通过 NPM 线上源安装(推荐)
1. 使用 DSH 官方 CLI 命令一键安装
dsh plugin --profile web add -w dsh-history-tree
2. 或者在 Web Profile 目录下通过 npm/pnpm 安装
cd ~/.dsh/profiles/web
npm i dsh-history-tree
# 或使用 pnpm
pnpm add -w dsh-history-tree
安装完成后,请确认 ~/.dsh/profiles/web/package.json 中的 dsh.profile.bundles 数组已包含 dsh-history-tree:
{
"name": "dsh-profile-web",
"private": true,
"dependencies": {
"dsh-history-tree": "^1.0.0"
},
"dsh": {
"profile": {
"bundles": [
"@deepseek-ai/dsh-base",
"@deepseek-ai/dsh-web-app",
"dsh-history-tree"
]
}
}
}
方法二:通过本地源码目录(Link 方式)安装
如果你在本地开发该插件,可以使用本地链接方式安装: