惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
N
Netflix TechBlog - Medium
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
GbyAI
GbyAI
B
Blog
F
Fortinet All Blogs
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
Google Developers Blog
A
About on SuperTechFans
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
MyScale Blog
MyScale Blog
B
Blog RSS Feed

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
docs: typography hygiene + drop one in-body H1 across 5 p...
vincentkoc · 2026-05-06 · via Recent Commits to openclaw:main

@@ -14,15 +14,15 @@ Looking for scheduling? See [Automation and tasks](/automation) for choosing the

14141515

Background 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>

2020

Not 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.

104104105105

Session-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

109109

While 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.

144144145145

Agent 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

161161162162

When 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>

171171172172

That 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

290290291291

The 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`

296296297297

Both `/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.

347347348348

See [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.

353353354354

See [Heartbeat](/gateway/heartbeat).

355355

@@ -358,14 +358,14 @@ A sweeper runs every **60 seconds** and handles four things:

358358

A 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