A skill that prevents fake progress by enforcing artifact-based verification and hard evidence reporting for AI agent tasks.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install execution-verifier
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install execution-verifier using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The Execution Verifier is a high-integrity skill designed to eliminate the stalling agent problem often encountered in complex workflows. In long-running autonomous tasks, agents might report that they are working without making tangible changes to the project. This skill implements a strict policy where no artifact change is equivalent to no progress, forcing the agent to produce hard evidence—such as file deltas, commits, or test logs—within a defined time window.
By implementing this skill, developers gain a transparent and reliable monitoring loop within their Openclaw Skills environment. It effectively separates execution logic from reporting logic, ensuring that any claims of progress are backed by measurable data. This makes it an essential tool for maintaining momentum and accountability in autonomous software engineering or research tasks handled by AI agents.
To integrate this into your workflow, locate the scripts within your directory and run the following commands to configure the monitoring loop for Openclaw Skills:
# Standard verification command
python3 skills/execution-verifier/scripts/verify_progress.py \
--project-dir projects/my-project \
--status projects/my-project/STATUS.md \
--open-tasks projects/my-project/OPEN_TASKS.md \
--window-min 30
To enable automated remediation using the built-in closed-loop script:
python3 skills/execution-verifier/scripts/verify_execute_verify.py \
--verify-cmd "python3 skills/execution-verifier/scripts/verify_progress.py --project-dir projects/my-project --window-min 30" \
--execute-cmd "openclaw cron run <job-id> --force"
The Execution Verifier organizes data using a combination of status files and artifact monitoring to ensure Openclaw Skills maintain technical truth.
| Component | Purpose |
|---|---|
| STATUS.md | Records the current project state, health, and high-level progress summaries. |
| OPEN_TASKS.md | Maintains a prioritized queue of pending tasks for the agent to execute. |
| Project Artifacts | The source code or documentation files that must show modifications to prove progress. |
| JSON Log Output | Detailed results from closed-loop scripts containing state snapshots before and after execution. |
Loading
A comprehensive journalistic workflow for AI agents to collect materials, verify facts, and generate publication-ready news content.

A comprehensive integration for managing Google Analytics 4 properties and retrieving reporting data via managed OAuth.

A local-to-cloud bridge for processing Speech-to-Text with Whisper and Text-to-Speech via AWS Polly.

A specialized skill for synchronizing Garmin Connect activity history and training schedules into a structured JSON database.

A comprehensive AI programming orchestrator that manages the full task lifecycle, from code generation to automated knowledge induction.

An autonomous development framework for Openclaw Skills that uses iterative loops, validation gates, and structured planning to manage complex coding tasks.








































