Install
openclaw skills install proof-of-workAutomates verification that AI agents truly completed tasks by checking output files, system states, and logs for expected results and activity.
openclaw skills install proof-of-workUse this skill to verify that your AI agents actually completed what they claimed, not just that they said they did.
Runs automated verification checks after agent task completion:
Catches the most common AI agent failure mode: the confident-sounding completion that didn't actually do anything.
A shell script that runs after agent task completion. Checks:
Returns exit code 0 on pass, 1 on fail. Integrates with any CI/cron pipeline.
chmod +x install.sh && ./install.sh
# Verify a file output
./proof-of-work.sh --check-file /path/to/expected/output.md
# Verify a process is running
./proof-of-work.sh --check-process "queue-manager"
# Verify a DB record exists
./proof-of-work.sh --check-db ~/.agentops/agentops.db --query "SELECT count(*) FROM queue_items WHERE status='done' AND id=42" --expected 1
# Full verification suite
./proof-of-work.sh --config verification.json
{
"task_id": 42,
"checks": [
{"type": "file", "path": "~/.agentops/output/report.md", "min_size": 100},
{"type": "db", "db": "~/.agentops/agentops.db", "query": "SELECT status FROM queue_items WHERE id=42", "expected": "done"},
{"type": "log", "event_type": "TASK_COMPLETE", "agent_id": "buzz"}
]
}
Proof of Work is the verification layer of the Trust AI Suite:
→ Full suite: Trust AI Stack on ClawMart