JuwanXu/dsh-continue0

dsh-continue

Safe unattended recovery and continuation policies for DeepSeek Harness.

包名
dsh-continue
版本
0.1.2
许可证
MIT
最近更新
2026年8月25日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:JuwanXu/dsh-continue

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.