zriyox/dsh-verify-judge0

dsh-verify-judge

DeepSeek Harness 的目标完成验证拦截插件:拦截 update_goal(complete) 调用,在工作区运行验证命令,仅在命令通过时允许关闭目标。

AI 分析

核心用途是为 Agent 任务交付引入自动化质量把关。适合需要确保 Agent 提交的代码或成果必须通过测试、Lint 校验等硬性指标的开发任务。

包名
dsh-verify-judge
版本
0.1.0
许可证
MIT
最近更新
2026年8月15日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:zriyox/dsh-verify-judge

Configuration

Add config to the plugin row (profile or home cordis.patch.yml):

- id: verify-judge
  config:
    commands: ['pnpm test', 'pnpm run lint']  # always wins over auto-detect
    onUndetected: allow                        # allow (default) | deny
    timeoutMs: 300000                          # per-command cap
    outputTailChars: 4000                      # failure tail fed to the model
FieldDefaultMeaning
commandsauto-detectExplicit verification commands, run in the session workspace
onUndetectedallowdeny refuses the stamp when no command is found
timeoutMs300000Per-command timeout
outputTailChars4000Cap on the output tail included in denial feedback