SajoLuo/dsh-trellis0

dsh-trellis

DeepSeek Harness 的 Trellis 工作流集成插件,提供每轮工作流状态面包屑、实用命令和原生会话身份。

AI 分析

核心用途是在对话中注入工作流状态面包屑并提供辅助命令。适合需要在 DSH 中进行结构化工作流管理和状态跟踪的开发者。

套件
dsh-trellis
版本
0.1.0
授權
MIT
最近更新
2026年8月14日

安裝

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:SajoLuo/dsh-trellis

装进实际使用的 profile(均在该 profile 下次启动时生效)

dsh plugin --profile web add dsh-trellis dsh plugin --profile headless add dsh-trellis

配置

在 profile 的 cordis.patch.yml 里覆盖(整行替换):

- id: dsh-trellis
  config:
    maxBytes: 4096          # 面包屑注入的字节预算(0 = 关闭注入)
    skipKeyword: no-trellis # 提示词中的独立单词可跳过当轮注入(空 = 禁用)
    pythonCmd: ""           # 空 = 自动选择:Windows 先 py -3 再 python;其他系统先 python3 再 python
    commandsEnabled: true