What problem does it solve? Verifying that the Authority and Revenue loop actually works requires more than checking HTTP 200 responses — you need proof that all six pipeline stages ran, durable task claims and delegation runs landed in sqlite, and the revenue packet contains coherent economics. This Skill provides a repeatable end-to-end verification procedure for the opportunity dispatch/refill pipeline. ## Core Features & Use Cases - End-to-end API verification: Exercises the stages, dispatch, and refill endpoints and validates exact stage ordering, success flags, and economic arithmetic (net value equals estimated value minus provider cost). - Durable state inspection: Queries the runtime sqlite database via Python's sqlite3 module to confirm task claims and delegation runs were persisted per dispatch call. - Quarantine and governance checks: Tests quarantine mode via DHARMA_RESEARCH_BACKEND and runs pre-commit hooks to confirm governance passes. - Use Case: After modifying the opportunity dispatcher, run this procedure against an isolated DHARMA_STATE_DIR to produce a structured PASS/FAIL verdict covering pytest, endpoints, sqlite rows, revenue packets, quarantine behavior, and pre-commit hooks. ## Quick Start Run the opportunity loop end-to-end test against a local uvicorn server with an isolated DHARMA_STATE_DIR and report the verdict.