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

推荐订阅源

V
V2EX
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
P
Proofpoint News Feed
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
量子位
A
About on SuperTechFans
Engineering at Meta
Engineering at Meta
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
博客园 - Franky
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net
博客园_首页
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog

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
fix(workboard): wire task-backed board runs · openclaw/op...
vincentkoc · 2026-06-01 · via Recent Commits to openclaw:main

@@ -9,7 +9,8 @@ title: "Workboard plugin"

991010

The Workboard plugin adds an optional Kanban-style board to the

1111

[Control UI](/web/control-ui). Use it to collect agent-sized work cards, assign

12-

them to agents, and jump from a card into the linked dashboard session.

12+

them to agents, and track the linked background task, run, and dashboard

13+

session from one card.

13141415

Workboard is intentionally small. It tracks local operating work for an

1516

OpenClaw Gateway; it is not a replacement for GitHub Issues, Linear, Jira, or

@@ -47,8 +48,8 @@ Each card stores:

4748

- priority: `low`, `normal`, `high`, or `urgent`

4849

- labels

4950

- optional agent id

50-

- optional linked session, run, task, or source URL

51-

- optional execution metadata for a Codex or Claude session started from the card

51+

- optional linked task, run, session, or source URL

52+

- optional execution metadata for a Codex or Claude run started from the card

5253

- compact metadata for attempts, comments, links, proof, artifacts, automation,

5354

attachments, worker logs, worker protocol state, claims, diagnostics,

5455

notifications, templates, archive state, and stale-session detection

@@ -65,26 +66,35 @@ proof snippets, related links, comments, archive markers, and stale-session

6566

markers are intentionally local metadata; they do not replace session

6667

transcripts or GitHub issue history.

676868-

## Card executions

69+

## Card executions and tasks

697070-

Unlinked cards can start work from the card. Start uses the Gateway's configured

71+

Unlinked cards can start work from the card. Autonomous starts use the

72+

Gateway's task-tracked agent run path, then Workboard links the resulting task,

73+

run id, and session key back onto the card. Start uses the Gateway's configured

7174

default agent and model. Codex and Claude actions are optional explicit model

7275

choices:

737674-

- Run Codex or Run Claude creates a dashboard session, sends the card prompt,

75-

and marks the card `running`.

77+

- Run Codex or Run Claude starts a task-backed agent run, sends the card

78+

prompt, and marks the card `running`.

7679

- Open Codex or Open Claude creates a linked dashboard session without sending

7780

the card prompt or moving the card, so you can work manually while it stays

7881

attached to the board.

79828083

Execution metadata stores the selected engine, mode, model ref, session key,

81-

run id, and lifecycle status on the card. Codex executions use

82-

`openai/gpt-5.5`; Claude executions use `anthropic/claude-sonnet-4-6`.

84+

run id, task id when available, and lifecycle status on the card. Codex

85+

executions use `openai/gpt-5.5`; Claude executions use

86+

`anthropic/claude-sonnet-4-6`.

83878488

Each linked execution also records an attempt summary on the same card record.

8589

The attempt summary keeps the engine, mode, model, run id, timestamps, status,

8690

and rolling failure count so repeated failures remain visible on the board.

879192+

The dashboard refreshes task status from the Gateway task ledger and matches

93+

tasks back to cards by task id, run id, or linked session key. If a task is

94+

queued or running, the card lifecycle shows active task state. If the task

95+

finishes, fails, times out, or is cancelled, the card lifecycle moves toward

96+

review or blocked status using the same lifecycle sync as linked sessions.

97+8898

## Agent coordination

899990100

Workboard also exposes optional agent tools for board-aware workflows:

@@ -160,13 +170,15 @@ blocked cards that need attention, repeated failures, done cards without proof,

160170

and running cards that only have a loose session link.

161171162172

Dispatch is intentionally Gateway-local. It does not spawn arbitrary operating

163-

system processes; normal OpenClaw subagent sessions still own execution. A

164-

dispatch nudge promotes dependency-ready cards, records dispatch metadata on

173+

system processes; normal OpenClaw subagent sessions still own execution. The

174+

dispatch action promotes dependency-ready cards, records dispatch metadata on

165175

ready cards, blocks expired claims or timed-out runs, marks board-configured

166176

triage cards as orchestration candidates, then claims a small batch of ready

167-

cards and starts worker runs through the Gateway subagent runtime. Workers get

168-

bounded card context plus the claim token they need to heartbeat, complete, or

169-

block the card through the Workboard tools.

177+

cards and starts worker runs through the Gateway subagent runtime. Assigned

178+

cards use `agent:<id>:subagent:workboard-*` worker session keys; unassigned

179+

cards use unscoped `subagent:workboard-*` keys so the Gateway still resolves the

180+

configured default agent. Workers get bounded card context plus the claim token

181+

they need to heartbeat, complete, or block the card through the Workboard tools.

170182171183

### Dispatch worker selection

172184