























@@ -14,15 +14,15 @@ Looking for scheduling? See [Automation and tasks](/automation) for choosing the
14141515Background tasks track work that runs **outside your main conversation session**: ACP runs, subagent spawns, isolated cron job executions, and CLI-initiated operations.
161617-Tasks do **not** replace sessions, cron jobs, or heartbeats — they are the **activity ledger** that records what detached work happened, when, and whether it succeeded.
17+Tasks do **not** replace sessions, cron jobs, or heartbeats - they are the **activity ledger** that records what detached work happened, when, and whether it succeeded.
18181919<Note>
2020Not every agent run creates a task. Heartbeat turns and normal interactive chat do not. All cron executions, ACP spawns, subagent spawns, and CLI agent commands do.
2121</Note>
22222323## TL;DR
242425-- Tasks are **records**, not schedulers — cron and heartbeat decide _when_ work runs, tasks track _what happened_.
25+- Tasks are **records**, not schedulers - cron and heartbeat decide _when_ work runs, tasks track _what happened_.
2626- ACP, subagents, all cron jobs, and CLI operations create tasks. Heartbeat turns do not.
2727- Each task moves through `queued → running → terminal` (succeeded, failed, timed_out, cancelled, or lost).
2828- Cron tasks stay live while the cron runtime still owns the job; if the
@@ -100,7 +100,7 @@ Not every agent run creates a task. Heartbeat turns and normal interactive chat
100100101101<AccordionGroup>
102102<Accordion title="Notify defaults for cron and media">
103-Main-session cron tasks use `silent` notify policy by default — they create records for tracking but do not generate notifications. Isolated cron tasks also default to `silent` but are more visible because they run in their own session.
103+Main-session cron tasks use `silent` notify policy by default - they create records for tracking but do not generate notifications. Isolated cron tasks also default to `silent` but are more visible because they run in their own session.
104104105105Session-backed `music_generate` and `video_generate` runs also use `silent` notify policy. They still create task records, but completion is handed back to the original agent session as an internal wake so the agent can write the follow-up message and attach the finished media itself. Group/channel completions follow the normal visible-reply policy, so the agent uses the message tool when source delivery requires it. If the completion agent fails to produce message-tool delivery evidence in a tool-only route, OpenClaw sends the completion fallback directly to the original channel instead of leaving the media private.
106106@@ -109,7 +109,7 @@ Not every agent run creates a task. Heartbeat turns and normal interactive chat
109109While a session-backed `video_generate` task is still active, the tool also acts as a guardrail: repeated `video_generate` calls in that same session return the active task status instead of starting a second concurrent generation. Use `action: "status"` when you want an explicit progress/status lookup from the agent side.
110110</Accordion>
111111<Accordion title="What does not create tasks">
112-- Heartbeat turns — main-session; see [Heartbeat](/gateway/heartbeat)
112+- Heartbeat turns - main-session; see [Heartbeat](/gateway/heartbeat)
113113- Normal interactive chat turns
114114- Direct `/command` responses
115115@@ -140,7 +140,7 @@ stateDiagram-v2
140140| `cancelled` | Stopped by the operator via `openclaw tasks cancel` |
141141| `lost` | The runtime lost authoritative backing state after a 5-minute grace period |
142142143-Transitions happen automatically — when the associated agent run ends, the task status updates to match.
143+Transitions happen automatically - when the associated agent run ends, the task status updates to match.
144144145145Agent run completion is authoritative for active task records. A successful detached run finalizes as `succeeded`, ordinary run errors finalize as `failed`, and timeout or abort outcomes finalize as `timed_out`. If an operator already cancelled the task, or the runtime already recorded a stronger terminal state such as `failed`, `timed_out`, or `lost`, a later success signal does not downgrade that terminal status.
146146@@ -161,12 +161,12 @@ Agent run completion is authoritative for active task records. A successful deta
161161162162When a task reaches a terminal state, OpenClaw notifies you. There are two delivery paths:
163163164-**Direct delivery** — if the task has a channel target (the `requesterOrigin`), the completion message goes straight to that channel (Telegram, Discord, Slack, etc.). For subagent completions, OpenClaw also preserves bound thread/topic routing when available and can fill a missing `to` / account from the requester session's stored route (`lastChannel` / `lastTo` / `lastAccountId`) before giving up on direct delivery.
164+**Direct delivery** - if the task has a channel target (the `requesterOrigin`), the completion message goes straight to that channel (Telegram, Discord, Slack, etc.). For subagent completions, OpenClaw also preserves bound thread/topic routing when available and can fill a missing `to` / account from the requester session's stored route (`lastChannel` / `lastTo` / `lastAccountId`) before giving up on direct delivery.
165165166-**Session-queued delivery** — if direct delivery fails or no origin is set, the update is queued as a system event in the requester's session and surfaces on the next heartbeat.
166+**Session-queued delivery** - if direct delivery fails or no origin is set, the update is queued as a system event in the requester's session and surfaces on the next heartbeat.
167167168168<Tip>
169-Task completion triggers an immediate heartbeat wake so you see the result quickly — you do not have to wait for the next scheduled heartbeat tick.
169+Task completion triggers an immediate heartbeat wake so you see the result quickly - you do not have to wait for the next scheduled heartbeat tick.
170170</Tip>
171171172172That means the usual workflow is push-based: start detached work once, then let the runtime wake or notify you on completion. Poll task state only when you need debugging, intervention, or an explicit audit.
@@ -177,7 +177,7 @@ Control how much you hear about each task:
177177178178| Policy | What is delivered |
179179| --------------------- | ----------------------------------------------------------------------- |
180-| `done_only` (default) | Only terminal state (succeeded, failed, etc.) — **this is the default** |
180+| `done_only` (default) | Only terminal state (succeeded, failed, etc.) - **this is the default** |
181181| `state_changes` | Every state transition and progress update |
182182| `silent` | Nothing at all |
183183@@ -290,9 +290,9 @@ Tasks: 3 queued · 2 running · 1 issues
290290291291The summary reports:
292292293-- **active** — count of `queued` + `running`
294-- **failures** — count of `failed` + `timed_out` + `lost`
295-- **byRuntime** — breakdown by `acp`, `subagent`, `cron`, `cli`
293+- **active** - count of `queued` + `running`
294+- **failures** - count of `failed` + `timed_out` + `lost`
295+- **byRuntime** - breakdown by `acp`, `subagent`, `cron`, `cli`
296296297297Both `/status` and the `session_status` tool use a cleanup-aware task snapshot: active tasks are preferred, stale completed rows are hidden, and recent failures only surface when no active work remains. This keeps the status card focused on what matters right now.
298298@@ -343,13 +343,13 @@ A sweeper runs every **60 seconds** and handles four things:
343343344344</Accordion>
345345<Accordion title="Tasks and cron">
346-A cron job **definition** lives in `~/.openclaw/cron/jobs.json`; runtime execution state lives beside it in `~/.openclaw/cron/jobs-state.json`. **Every** cron execution creates a task record — both main-session and isolated. Main-session cron tasks default to `silent` notify policy so they track without generating notifications.
346+A cron job **definition** lives in `~/.openclaw/cron/jobs.json`; runtime execution state lives beside it in `~/.openclaw/cron/jobs-state.json`. **Every** cron execution creates a task record - both main-session and isolated. Main-session cron tasks default to `silent` notify policy so they track without generating notifications.
347347348348See [Cron Jobs](/automation/cron-jobs).
349349350350</Accordion>
351351<Accordion title="Tasks and heartbeat">
352-Heartbeat runs are main-session turns — they do not create task records. When a task completes, it can trigger a heartbeat wake so you see the result promptly.
352+Heartbeat runs are main-session turns - they do not create task records. When a task completes, it can trigger a heartbeat wake so you see the result promptly.
353353354354See [Heartbeat](/gateway/heartbeat).
355355@@ -358,14 +358,14 @@ A sweeper runs every **60 seconds** and handles four things:
358358A task may reference a `childSessionKey` (where work runs) and a `requesterSessionKey` (who started it). Sessions are conversation context; tasks are activity tracking on top of that.
359359</Accordion>
360360<Accordion title="Tasks and agent runs">
361-A task's `runId` links to the agent run doing the work. Agent lifecycle events (start, end, error) automatically update the task status — you do not need to manage the lifecycle manually.
361+A task's `runId` links to the agent run doing the work. Agent lifecycle events (start, end, error) automatically update the task status - you do not need to manage the lifecycle manually.
362362</Accordion>
363363</AccordionGroup>
364364365365## Related
366366367-- [Automation & Tasks](/automation) — all automation mechanisms at a glance
368-- [CLI: Tasks](/cli/tasks) — CLI command reference
369-- [Heartbeat](/gateway/heartbeat) — periodic main-session turns
370-- [Scheduled Tasks](/automation/cron-jobs) — scheduling background work
371-- [Task Flow](/automation/taskflow) — flow orchestration above tasks
367+- [Automation & Tasks](/automation) - all automation mechanisms at a glance
368+- [CLI: Tasks](/cli/tasks) - CLI command reference
369+- [Heartbeat](/gateway/heartbeat) - periodic main-session turns
370+- [Scheduled Tasks](/automation/cron-jobs) - scheduling background work
371+- [Task Flow](/automation/taskflow) - flow orchestration above tasks
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。