dsh-review
Packaged multi-agent adversarial code review for DeepSeek Harness — one finder per lens in parallel, then a verifier per finding whose task is to refute it, so only confirmed defects are reported.
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Viger1/dsh-review说明文档
阅读完整 README ↗Configuration
- id: review
name: dsh-review
config:
subagentProvider: spawn # which composed provider runs the children
lenses: [] # [] runs every built-in lens
verifiersPerFinding: 1 # raise for a stricter panel; all must confirm
maxFindings: 12 # verification budget, worst severities first
maxConcurrentChildren: 8 # cap on children running at once
maxDepth: 2 # delegation-depth cap for review children
registerSkill: true
Lenses: correctness, lifecycle, contract, security. Each is one child agent, and each finding costs verifiersPerFinding more — a review is the most expensive tool in a session, which is why the skill tells the model to use it deliberately.