Raphaelutumn/dsh-change-budget ↗★ 0
dsh-change-budget
DeepSeek Harness guardrail that limits how many files an AI coding agent can edit per turn
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Raphaelutumn/dsh-change-budget说明文档
阅读完整 README ↗Configuration
| Field | Default | Meaning |
|---|---|---|
maxFilesPerTurn | 12 | Maximum distinct normalized paths in one Agent turn |
maxMutationsPerTurn | 24 | Maximum admitted structured mutation calls in one Agent turn |
maxPayloadBytesPerTurn | 262144 | Maximum UTF-8 bytes submitted as new text in one Agent turn |
Override the plugin row in the profile's cordis.patch.yml:
- id: change-budget
config:
maxFilesPerTurn: 20
maxMutationsPerTurn: 40
maxPayloadBytesPerTurn: 524288
Every value must be a positive integer. Invalid configuration fails plugin loading instead of silently weakening the guardrail.