SajoLuo/dsh-trellis0

dsh-trellis

Trellis workflow integration for DeepSeek Harness: per-turn workflow-state breadcrumbs, utility commands, and native session identity.

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