Install
openclaw skills install agent-task-statusVerify whether named OpenClaw agents actually received formal task assignments and replied with execution status, using transcript-backed audit checks. Use w...
openclaw skills install agent-task-statusUse the bundled script to inspect OpenClaw session indexes and transcript files, then extract the latest assignment and structured report for each target agent.
Run the script directly:
python3 /home/lyqadmin/.openclaw/workspace/skills/agent-task-status/scripts/check_agent_task_status.py --format summary
For more examples, read references/usage.md.
--agents a,b,c for explicit targets.--agent-file when the list comes from a file.--discover when the deployment has many agents under the same root.~/.openclaw/agents.--base or OPENCLAW_AGENTS_BASE in non-default environments.agent:{agent}:main.--session-key-template if your target sessions use another pattern.正式任务分配:.任务: / 状态: / 结果: / 风险:.--only-status filters by normalized status such as completed, blocked, accepted, no-assignment, assigned-no-report, error.--contains filters by keyword across assignment text, parsed task, result, and risk.table: best for human inspectionsummary: compact overviewjson: structured automation outputjsonl: line-oriented pipelines--strict for CI/automation.
0: normal1: partial problem such as missing assignment/report or agent error2: script/runtime error--output-file to persist results for later review or downstream automation.Human-readable table:
python3 /home/lyqadmin/.openclaw/workspace/skills/agent-task-status/scripts/check_agent_task_status.py --agents xiaocheng,xiaowen,xiaobian --format table
Only completed tasks:
python3 /home/lyqadmin/.openclaw/workspace/skills/agent-task-status/scripts/check_agent_task_status.py --discover --only-status completed --format summary
Filter by keyword:
python3 /home/lyqadmin/.openclaw/workspace/skills/agent-task-status/scripts/check_agent_task_status.py --discover --contains 自动化 --format table
Automation JSON:
python3 /home/lyqadmin/.openclaw/workspace/skills/agent-task-status/scripts/check_agent_task_status.py --agent-file ./agents.txt --format json --strict --output-file ./agent-status.json
sessionKey: which session was usedsessionFile: exact transcript file pathassignedAt / assignText: when and what was assignedreportAt: when the agent reported backtask / status_raw / status_normalized / result / risk: parsed structured fieldserror: why the check failed for that agentsessions/sessions.json and transcript sessionFile paths.