dsh-continue
Safe unattended recovery and continuation policies for DeepSeek Harness.
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:JuwanXu/dsh-continue说明文档
阅读完整 README ↗Global and per-task configuration
After installing the bundle, override its continue row in the profile's cordis.patch.yml:
- id: continue
config:
defaults:
network:
enabled: true
recommended:
enabled: true
continuation:
enabled: false
autoApprovePlan: false
autoConfirmContinue: false
Policy precedence is:
task session override > plugin defaults > built-in values
A launcher, preset, or another plugin can inject a one-task policy:
ctx.continue.setTaskConfig(agent, {
network: { enabled: true },
recommended: { enabled: true },
})
Overrides are persisted as continue/config session events and survive resume and fork. Input configuration is snapshotted, so later mutation of the caller's object cannot silently change the active policy.