Sombrer0-1/dsh-git-dashboard ↗★ 0
dsh-git-dashboard
DSH Web 端的只读 Git 工作区仪表盘插件
AI 分析
在 DSH 中提供只读的 Git 工作区状态面板,支持查看分支、状态、文件列表及 diff 预览。适合需要在 DSH 界面中快速查看本地代码仓库 Git 状态的开发者。
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Sombrer0-1/dsh-git-dashboard说明文档
阅读完整 README ↗配置
cordis.patch.yml 默认值(可在 profile 覆盖同名插件 config):
| 字段 | 默认 | 含义 |
|---|---|---|
command | git | Git 可执行文件 |
timeoutMs | 2000 | 单次 git 命令超时 |
maxStatusBytes | 1048576 | git status stdout 上限 |
maxNumstatBytes | 524288 | numstat stdout 上限 |
maxFiles | 100 | 列表最多文件数 |
maxBranches | 100 | 分支列表上限 |
maxDiffBytes | 262144 | 单文件 diff 预览字节上限 |
maxDiffChangedLines | 500 | 单文件预览变更行(增+删)上限 |