Execution Verifier
/install execution-verifier
Execution Verifier
Use this skill to prevent fake progress.
Core policy
- Treat "no artifact change" as "no progress".
- Report only hard evidence: file changes, line deltas, commits, test outputs.
- If no evidence is detected in the time window, report blocker + immediate next action.
Minimal operating loop (30 min)
- Execute one concrete next action from OPEN_TASKS.
- Write artifacts (target files must change).
- Verify with
scripts/verify_progress.py. - Report in strict 3-line format.
Strict report format
- 已完成:
\x3Cfile path + concrete change> - 进行中:
\x3Ccurrent actionable step> - 下一步+ETA:
\x3Cnext step + time>
If verification fails, replace line 1 with: 本轮无新增(原因:\x3Cblocker>).
Verifier command
python3 skills/execution-verifier/scripts/verify_progress.py \
--project-dir projects/ai-human-co-production \
--status projects/ai-human-co-production/STATUS.md \
--open-tasks projects/ai-human-co-production/OPEN_TASKS.md \
--window-min 30
Closed-loop mode (verify → auto-execute → re-verify)
Use built-in script:
python3 skills/execution-verifier/scripts/verify_execute_verify.py \
--verify-cmd "python3 skills/execution-verifier/scripts/verify_progress.py --project-dir projects/ai-human-co-production --status projects/ai-human-co-production/STATUS.md --open-tasks projects/ai-human-co-production/OPEN_TASKS.md --window-min 30" \
--execute-cmd "openclaw cron run fc567f18-83fa-426c-8181-71a10f4568b3 --force"
Behavior:
- Step A: verify current progress
- Step B: if no progress, auto-trigger executor
- Step C: verify again
- Output JSON includes
before,triggered_execute,after
Cron pattern (recommended)
Use two jobs:
- Executor job (isolated agentTurn, every 30m): do real work + write files.
- Verifier job (main systemEvent, every 30m offset +5m): run closed-loop script above.
Never run report-only cron without verifier.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install execution-verifier - After installation, invoke the skill by name or use
/execution-verifier - Provide required inputs per the skill's parameter spec and get structured output
What is Execution Verifier?
Enforce real progress for long-running tasks by separating execution from reporting. Use when users complain that the agent is "saying it's working" without... It is an AI Agent Skill for Claude Code / OpenClaw, with 466 downloads so far.
How do I install Execution Verifier?
Run "/install execution-verifier" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Execution Verifier free?
Yes, Execution Verifier is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Execution Verifier support?
Execution Verifier is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Execution Verifier?
It is built and maintained by RichardSun (@richardsun700); the current version is v1.1.0.