Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

durable-task-runner持久任务运行者

Agent Skill

durable-task-runner 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,545

周安装

410

GitHub Stars

公开资料未说明

下载量

3,346
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:durable-task-runner(持久任务运行者)
来源仓库:https://github.com/wonko6x9/durable-task-runner
安装命令:
openclaw skills install durable-task-runner
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install durable-task-runner

简介

支持长时间多步骤任务持续执行不中断。

  • 具备智能恢复和进度保存功能。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 适用于复杂流程如数据迁移或批量处理。
  • 使用前应验证状态持久化机制是否可靠。
  • 注意任务失败时的回滚策略。durable-task-runner 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
durable-task-runner
description
Run long-running, multi-step work in OpenClaw without losing it to resets: durable state, progress updates, smart 'continue this' recovery, verification before completion, and optional worker-lane coordination for larger jobs. Use when work spans multiple phases, must survive agent or gateway resets, or should not depend on ad-hoc chat memory. Best fit for users who want explicit recovery after interruption rather than fragile background scheduler setup.

Use this skill to run long work with durable state and deliberate recovery, not like a goldfish.

Core stance

Act as the planner and verifier. Do not rely on conversational memory for active long-running work. Persist the working state to disk early and keep it updated.

Prefer this skill when any of these are true:

  • duration will likely exceed a few minutes
  • the task has multiple milestones or checkpoints
  • the user wants progress reporting without repeated permission prompts
  • interruption or reset would be costly
  • work may need pause / stop / steer controls
  • verification matters before calling the task done

Do not use it for trivial one-shot tasks.

Required baseline

Before substantial execution:

  1. create a task snapshot with scripts/task_ctl.py create
  2. record milestones, done criteria, constraints, execution priority, and next step
  3. keep updates flowing through the helper scripts instead of hand-editing state where practical

Durable task files live under:

  • state/tasks/<task-id>.json
  • state/tasks/<task-id>.events.jsonl
  • state/tasks/<task-id>.progress.log

Required behavior

1. Plan first

Create the durable task before real work starts. At minimum capture:

  • goal
  • done criteria
  • constraints
  • desired state
  • execution priority (time or tokens)
  • phase
  • milestones
  • next step
  • reporting cadence

2. Work in bounded slices

Prefer:

  • scan -> checkpoint
  • extract -> checkpoint
  • execute -> checkpoint
  • verify -> checkpoint

Each meaningful slice should end with a progress/event update.

3. Report progress without permission theater

For active long work, send informational progress updates:

  • on milestone completion
  • on phase change
  • on blocker/retry/pause/stop/completion
  • periodically for longer runs

Do not ask for permission to keep going unless the next action is risky, destructive, external, or ambiguous.

4. Respect control state

If the user pauses, stops, or steers the task:

  • record it in durable state/event history
  • checkpoint safely
  • resume only when the durable state says to

5. Resume deliberately

After interruption or reset:

  • prefer the explicit user-facing recovery move: "continue this"
  • use scripts/task_continue.py to select the most relevant durable task and resume it intelligently
  • review recent events and verify the last concrete step before any non-trivial follow-through
  • use scripts/task_resume_bootstrap.py for restart analysis when you need to inspect the decision surface directly
  • use scripts/task_resume_apply.py only for clearly low-risk follow-through

The intended model is smart resume after reset, not endless ambient scheduler theater. By default, bootstrap should prefer asking whether to continue after reset/interruption; explicit user intent like "continue this" is what should flip the task back into active execution.

6. Verify before completion

Before marking a task complete:

  • verify outputs or milestone results
  • record a verification event
  • then update desired_state=completed

Worker-lane model

Use worker lanes only when parallelism is worth the added control surface.

Default roles:

  • main agent = planner/verifier
  • worker lanes = bounded workers

When using worker lanes:

  • keep each worker scope narrow
  • avoid overlapping write targets unless coordination is explicit
  • require structured worker returns
  • run dropped-line checks before ending the turn

Read references/subagent-return-protocol.md when using worker lanes.

What to read next

Read only what the current task needs:

  • references/quickstart.md — minimal end-to-end usage pattern
  • references/task-schema.md — snapshot/event structure
  • references/control-levels.md — how much process the task earns
  • references/subagent-return-protocol.md — worker return rules

Key scripts

Use these directly:

  • scripts/task_ctl.py — create/update/show/progress/event/control durable tasks
  • scripts/task_continue.py — smart user-facing "continue this" recovery after reset/interruption
  • scripts/task_resume_bootstrap.py — analyze resumability after interruption
  • scripts/task_resume_apply.py — apply low-risk resume follow-through
  • scripts/task_reconcile.py — reconcile pending/idempotent action state
  • scripts/task_subagent_ctl.py — manage worker-line state and structured returns
  • scripts/task_subagent_run.py — prepare a ready-to-use worker payload
  • scripts/task_report.py / scripts/task_ticker.py — render compact status
  • scripts/task_tick_all.py — run optional due status delivery across eligible running tasks
  • scripts/task_install_tick_cron.sh — optional helper to print/install a current-user cron entry for recurring ticks

Attribution discipline

Keep attribution explicit when ideas or adapted structures come from other skills. If you borrow more than general inspiration, update ATTRIBUTION.md and note it near the relevant file.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.8%
按下载量换算3,205

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills