verified-run

verified-run is a skill for Claude Code, Codex from runvouch/runvouch. It costs 57 tokens per session (1,036 once invoked), scanned B, original, MIT.

A workflow for checking that scheduled tasks, such as nightly jobs or cron tasks, both run and produce their expected output file, reply, or data row.

In plain words
What is it for?
Recording task starts and results, checking evidence files, and sending alerts through Telegram, Slack, or email.
Why use it?
It distinguishes a task that merely started from one that finished with evidence, and alerts you when it is missed, fails, or produces no expected file.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/runvouch/runvouch/verified-run
Any agent
npx skills add runvouch/runvouch --skill verified-run
Clone the repo
git clone --depth 1 https://github.com/runvouch/runvouch

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for verified-run

README.md
[![agentmods](https://agentmods.dev/badge/skills/runvouch/runvouch/verified-run.svg)](https://agentmods.dev/skills/runvouch/runvouch/verified-run)
Your own site
<a href="https://agentmods.dev/skills/runvouch/runvouch/verified-run"><img src="https://agentmods.dev/badge/skills/runvouch/runvouch/verified-run.svg" alt="Measured on agentmods" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,036 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00057 $0.01036
Opus 5 $0.00028 $0.00518
Sonnet 5 $0.00011 $0.00207
Haiku 4.5 $0.00006 $0.00104

Measured 4d ago against content hash 04514e116608, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

verified-run scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/verified-run.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

1. Start: `curl -sS -X POST $RUNVOUCH_URL/v1/runs/start -H "X-API-Key: $RUNVOUCH_KEY" -H "Content-Type: application/json" -d '{"agent":"NAME","source":"openclaw"}'` and keep `run_id`.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

metadata: {"openclaw": {"emoji": "shield", "requires": {"bins": ["curl"], "env": ["RUNVOUCH_KEY"]}, "primaryEnv": "RUNVOUCH_KEY"}}
integrations/openclaw/verified-run/SKILL.md · 67 lines

How it starts

The opening of the file, as written. The whole thing — 67 lines — stays where its author put it; the contents beside it link to each section on GitHub.

verified-run

Use this skill for any task that runs on a schedule (cron jobs, heartbeat tasks, nightly digests) and is supposed to produce something: a file, a reply, a row. It turns "the task ran" into "the task ran and here is the evidence", and turns silence into an alert.

What it does

  1. POST /v1/runs/start on RunVouch with the agent name (registers the agent on first use, with the cadence you give).
  2. Runs the task: a shell command, or the steps you carry out yourself.
  3. POST /v1/runs/end with status (ok or fail), the size of the evidence file and evidence checks: {"evidence_file": true|false}. If the file is missing or empty the run is reported as fail with evidence_file: false, and RunVouch raises FAILED. If the run does not start at all within cadence plus grace, RunVouch raises MISSED.

Setup (once)

  • Get a free key at https://runvouch.com (three agents free).
  • Put the key in the OpenClaw environment or in ~/.openclaw/openclaw.json under skills.entries.verified-run.apiKey; it is injected as RUNVOUCH_KEY.
  • Optional: RUNVOUCH_URL (default https://api.runvouch.com).

How to run a task through it

Shell form, the normal case. The script is in this skill folder:

scripts/verified-run.sh NAME --every 24h --evidence-file /path/out.md -- COMMAND ARGS...

Options:

  • NAME: agent name in RunVouch, one per scheduled task (for example inbox-digest).
  • --every 15m|1h|24h: how often the task is expected. Used at first registration.
  • --grace 5m: how late a run may be before MISSED (default 15m).
  • --evidence-file PATH: the file the task must write. Missing or zero bytes means failure.
  • --cost USD: what the task cost, if known; enables the daily cap.
  • --source openclaw: shown in the dashboard (default openclaw).

Exit code is the task's exit code, so cron and OpenClaw see the real result.

Example for an OpenClaw cron task that writes a digest:

0 7 * * * ~/.openclaw/skills/verified-run/scripts/verified-run.sh inbox-digest --every 24h --grace 30m --evidence-file ~/out/digest.md -- openclaw task run inbox-digest

Read the full file on GitHub · 67 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 67 lines · 57 tokens per session scan B 04514e116608

Subscribe to this mod's changes

verified-run is a skill published in the GitHub repository runvouch/runvouch (0 stars, last pushed 7d ago), licensed MIT. It adds 57 tokens to every session and 1,036 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

unity-version-split

Split a C# file into Unity 6.5+ and pre-Unity 6.5 variants. Use when a file needs different implementations for different Unity versions due to API changes (e.g., EntityId vs int, GetEntityId vs GetInstanceID).

IvanMurzak/Unity-MCP · 59 tokens

specflow-use

To connect Rosetta with Grid Dynamics SpecFlow MCP; only when SpecFlow is mentioned and the MCP is installed.

griddynamics/rosetta · 27 tokens

opik-diagnose

Surface the Opik traces worth a developer's attention, ranked by signal — errors, failed tool calls, latency, regressions, and low online-eval scores — plus Diagnostics issues. Reads live/production traces via the SDK (searchtraces and agentinsights) and works with no MCP; uses the MCP issue entity when connected.…

comet-ml/opik-mcp · 147 tokens

planning-and-task-breakdown

Breaks work into ordered tasks. Use when you have a spec or clear requirements and need to break work into implementable tasks. Use when a task feels too large to start, when you need to estimate scope, or when parallel work is possible.

shashankswe2020-ux/whoop-mcp · 56 tokens

qa-knowledge

To run QA engineering — requirements/gap analysis, scenario & spec design, test implementation, failure triage — over the QA knowledge base.

griddynamics/rosetta · 32 tokens