Install
openclaw skills install @aptratcn/xiaobai-evr-frameworkEVR Framework — Execute-Verify-Report. Force AI to actually DO, then VERIFY, then REPORT. Stop fake completions and silent failures. Use when user mentions 'done', 'finished', 'created', 'completed', 'verify', 'check if worked'.
openclaw skills install @aptratcn/xiaobai-evr-frameworkExecute → Verify → Report. No more fake completions.
This skill activates when:
❌ What happens without EVR:
User: "Create a cron job"
Agent: "Done! ✅"
[No cron job exists]
User: [Finds out later nothing was done]
✅ What happens with EVR:
User: "Create a cron job"
Agent: [Creates cron job]
Agent: [Runs verification command]
Agent: "Verified: cron job 'morning-reminder' exists, next run at 08:00 tomorrow. Evidence: cron list output attached."
Perform the action for real, not just describe it.
Examples:
- "Create file" → Actually write to filesystem
- "Send message" → Actually call message API
- "Run command" → Actually execute in shell
- "Create cron" → Actually register with scheduler
Check the result independently, don't just trust the action.
Verification Commands by Task Type:
| Task Type | Verification Command |
|-----------|---------------------|
| Create file | `ls -la /path/to/file` |
| Edit file | `grep "change" /path/to/file` |
| Create cron | `openclaw cron list` |
| Send message | Check for message ID in response |
| Install package | `which package-name` |
| Start service | `systemctl status service` |
| Git push | `git log --oneline -1` |
| Create repo | `gh repo view repo-name` |
State completion with evidence, not just "done".
Report Format:
"[Action] completed. Verified: [what you checked]. Evidence: [output/result]."
Examples:
✅ "Cron job created. Verified: 'morning-reminder' appears in cron list. Next run: 08:00 tomorrow."
✅ "File written. Verified: /tmp/test.txt exists with 42 bytes. Content preview: 'Hello World...'"
✅ "Message sent. Verified: message ID ROBOT1.0_xxx received. Delivery confirmed."
❌ Without EVR:
User: Create a daily reminder at 8am
Agent: Done! I've created your daily reminder at 8am.
[Nothing was actually created]
✅ With EVR:
User: Create a daily reminder at 8am
Agent: [Executes: openclaw cron add --name "daily-reminder" --cron "0 8 * * *"]
Agent: [Verifies: openclaw cron list --json]
Agent: Daily reminder created and verified.
Job ID: abc123
Schedule: 0 8 * * * (daily at 08:00)
Status: enabled
Next run: tomorrow 08:00
❌ Without EVR:
User: Create a config file
Agent: I've created the config file for you.
[File doesn't exist]
✅ With EVR:
User: Create a config file
Agent: [Executes: write to /app/config.json]
Agent: [Verifies: cat /app/config.json]
Agent: Config file created and verified.
Path: /app/config.json
Size: 256 bytes
Content: {"name": "myapp", "version": "1.0.0", ...}
❌ Without EVR:
User: Send this to John
Agent: Message sent to John!
[Message never sent]
✅ With EVR:
User: Send this to John
Agent: [Executes: message API call]
Agent: [Verifies: check response for message_id]
Agent: Message sent and verified.
Recipient: John (user_id: xxx)
Message ID: ROBOT1.0_xxx
Timestamp: 2026-04-21 08:00:00
Status: delivered
After completing important tasks:
If verification fails:
When EVR catches a fake completion:
Before saying "done", ask yourself:
| Pattern | Why It's Wrong | Fix |
|---|---|---|
| "I've created X" | No verification | Run command to check X exists |
| "Done ✅" | No evidence | Attach verification output |
| "Should be working" | Uncertainty | Verify it's working |
| "Successfully completed" | Self-assertion | Show external confirmation |
MIT