CAI-MH/dsh-quality-review0

dsh-quality-review

适用于 DeepSeek Harness 的 AI 回答质量审查插件:使用独立的评审模型审计每个已完成的助手回合,并引导 Agent 修正不合理的输出(最多 2 轮)。

AI 分析

核心用途是通过引入独立评审模型来自动审计和修正 AI 的输出。适合对回答准确性和指令遵循度有极高要求的任务。

包名
dsh-quality-review
版本
0.1.0
许可证
MIT
最近更新
2026年9月4日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:CAI-MH/dsh-quality-review

Configuration

Every field has a safe default, so the bundle row can be inserted with no config at all. Override individual keys from your profile's cordis.patch.yml:

- id: quality-review
  config:
    enabled: true            # master switch; the plugin stays loaded but inert when false
    reviewer:
      provider: ''           # reviewer provider id; empty reuses the agent's own provider
      model: ''              # reviewer model id; empty reuses the agent's own model
    maxRounds: 2             # max steered fix rounds per turn (loop guard, max 5)
    aspects:
      factualAccuracy: true
      completeness: true
      logicalConsistency: true
      instructionFollowing: true