Verified Ops Starter
Description
Your scheduled job says exit 0 — prove it did the work. Three stdlib-only checks: output freshness, silent no-op detection, rollout proof by reading the fact back. Sanitized from a live agent fleet. Free, MIT.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
verified-ops-starter
**Your scheduled job says `exit 0`. Prove it did the work.**
[](https://github.com/Palo-Alto-AI-Research-Lab/verified-ops-starter/actions/workflows/selftest.yml) [](LICENSE) [](#requirements) [](#requirements)
Three small checks, no server, no dependencies. They replace a job's *self-report* with *evidence*:
| check | question it answers | catches | code |
|---|---|---|---|
freshness |
is the job's real output young enough? | exit 0 while the artifact rots | verified_ops/freshness.py |
wrap |
did this run actually change anything? | exit 0 with no work done | verified_ops/wrap.py |
rollout |
is the fix on every box, read back as a fact? | "rolled out" that never landed | verified_ops/rollout.py |
Everything speaks one [exit-code contract](#exit-code-contract), implemented once in `verified_ops/contract.py`, in which a dead checker cannot look like a clean result.
Why
An agent, a cron job and a nightly script all report on themselves, and the report is the first thing to break — each failure below has its own mutant in `selftest.py`:
- the model refused, the API returned an empty page, the token expired, the filter matched
nothing — the process still exits 0 and stamps its heartbeat (caught by
verified_ops/wrap.py); - a checker written in Python dies on an unhandled exception and exits 1 — the same code
many checkers use for "I found a problem", so the dashboard paints the corpse yellow and
moves on (caught by
verified_ops/contract.py); - the fix "was rolled out" because it was sent, and an offline box, a lagging box and a healthy box are all equally quiet (cau
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11