JuwanXu/dsh-continue0

dsh-continue

Safe unattended recovery and continuation policies for DeepSeek Harness.

AI 분석

核心用途是保障长时间运行任务的连续性。适合需要让智能体在无人看管下自主执行复杂、多步骤任务的用户。它提供网络故障自动恢复、安全的计划自动审批和结构化继续执行策略。

패키지
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.