From skills
Verifies a feature by delegating to an independent sub-agent that drives the real app, then runs codified checks and opens a PR with proof.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skills:prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are the **orchestrator + fixer**. Verification splits by who's best at it:
You are the orchestrator + fixer. Verification splits by who's best at it:
Pairs with dev-local-setup (reproducible stack) and e2e-setup (the suite).
On a branch, not the default branch; changes committed.
Start it via your repo's dev launcher (see dev-local-setup). You own it; the
verifier reuses it.
Brief from the plan file if one exists (point the verifier at it), else pass the requirements inline. Spawn a read-only verifier:
You are a read-only verifier. Do NOT edit code. Independently confirm THIS feature
works by driving the running app (the stack is already up). It likely has no
automated spec — verify it agentically.
FEATURE (what a user should now be able to do, and the observable success state):
<intent / acceptance criteria> (or: see plan file <path>)
HOW TO EXERCISE IT:
<UI route + steps / API call / CLI>
AUTH (if the feature is behind login):
mint a session first via the repo's session helper and load it before driving.
Drive it (browser via playwright-cli, or the API/CLI): walk the exact steps,
screenshot/record the success state, judge observed vs expected. Return ONLY:
FEATURE: works | broken
expected: <criteria>
observed: <what actually happened>
evidence: <screenshot/video paths>
type-check · lint · unit · existing e2e. Triage failures (real-bug vs stale-test —
see e2e-setup); never weaken an assertion to go green. If a fix here changes
feature behavior, re-verify (step 3).
Get a reviewable link for the success video. GitHub can't play video inline via
automation, so upload it somewhere with a stable URL — a dedicated pr-evidence
GitHub prerelease (gh release upload), a bucket, or CI artifacts — and link it.
## What changed
<1–3 lines>
## Feature verified ✅ (verifier drove the app)
- <acceptance criteria> — observed working. 📹 Proof: <url>
## Regression guardrails
- [x] type-check · lint · unit · e2e
## How to reproduce
<stack-up command> && <exercise steps>
Isolates context, not environment: if your stack is single-instance / fixed-port, don't run multiple verifiers in parallel.
npx claudepluginhub ai-builder-club/skills --plugin skillsEnforces evidence-based verification by running fresh tests, builds, linters, reviewing outputs before claiming work done, committing, or PRing.
Verifies feature completion by requiring automated tests that prove functionality works. Enforces phase gates and spec alignment before acceptance.