# Send Execution Verifier to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "execution-verifier",
    "name": "Execution Verifier",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/RichardSun700/execution-verifier",
    "canonicalUrl": "https://clawhub.ai/RichardSun700/execution-verifier",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/execution-verifier",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=execution-verifier",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/verify_execute_verify.py",
      "scripts/verify_progress.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "execution-verifier",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T10:47:12.465Z",
      "expiresAt": "2026-05-08T10:47:12.465Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=execution-verifier",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=execution-verifier",
        "contentDisposition": "attachment; filename=\"execution-verifier-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "execution-verifier"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/execution-verifier"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/execution-verifier",
    "downloadUrl": "https://openagent3.xyz/downloads/execution-verifier",
    "agentUrl": "https://openagent3.xyz/skills/execution-verifier/agent",
    "manifestUrl": "https://openagent3.xyz/skills/execution-verifier/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/execution-verifier/agent.md"
  }
}
```
## Documentation

### 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

已完成：<file path + concrete change>
进行中：<current actionable step>
下一步+ETA：<next step + time>

If verification fails, replace line 1 with: 本轮无新增（原因：<blocker>）.

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: RichardSun700
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T10:47:12.465Z
- Expires at: 2026-05-08T10:47:12.465Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/execution-verifier)
- [Send to Agent page](https://openagent3.xyz/skills/execution-verifier/agent)
- [JSON manifest](https://openagent3.xyz/skills/execution-verifier/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/execution-verifier/agent.md)
- [Download page](https://openagent3.xyz/downloads/execution-verifier)