JuwanXu/dsh-continue0

dsh-continue

适用于 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.