Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Install, instrument and verify a web app end to end without pausing for a human. Use in an autonomous or goal-mode agent, in CI, or in any client that asks for approval on every command: it never says "restart your client" or "open a browser", because it takes a route that needs neither. Prefer the normal install-and-verify skill when a human is present and can answer.
.claude/skills/reticlehq-verify-unattended/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-05 | ✗→✓ | ▲ Improved | 112% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 186% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 57% | 0% |
| case-11 | ✗→✓ | ▲ Improved | -17% | 0% |
| case-15 | ✗→✓ | ▲ Improved | 81% | 0% |
Same product, same verdicts, one difference: nothing here waits for a human.
The normal skill has two places where it hands control back: "restart your client so it picks up the MCP server" and "open the app in a browser". Both are correct when someone is sitting there. In goal mode they are dead ends: the restart ends the context holding these instructions, and there is nobody to open a tab.
So this skill takes the route that needs neither, and stops only when it has a verdict or a reason.
You cannot add MCP tools to your own running process. No slash command, no config edit, no re-registration reaches the tool list you already have. Your client read it before Reticle existed. Do not try, and do not ask to be restarted.
Instead, branch once on what you already have:
reticle_* tools present → drive with them. Best evidence, source-mapped, full verdicts.reticle verify produces a verdict and an exit code with no MCP involvement at all.Both routes end in a verdict. Pick the one your process allows and go.
export RETICLE_INSTALL_SOURCE=npx_skill
npx -y @reticlehq/server@latest initThe export is on its own line on purpose. Every other copy of this command carries the marker inline, but this skill runs where commands are matched against a prefix allowlist (see "Keep commands plain" below), and RETICLE_INSTALL_SOURCE=... npx ... no longer starts with npx. Inline, it would stop matching the very rule this file tells you to rely on.
Then read the report rather than assuming it. Two lines matter:
⚠ on the app's build config: the wiring did not land. Apply the printed edit yourself; do not carry on as if it had.ℹ naming a version fallback: the pinned SDK was refused and a different one installed. The SDK and the daemon must agree; if a later call reports a protocol error, this is why.init is idempotent. A step reading already wired is a pass, not a skip.
If init reports every step already done, the app was instrumented before you arrived. That is fine, but it means this run has not proved the install. Say so rather than claiming you set it up.
The daemon needs a page to look at, and a page needs a server. Do not ask whether to start one.
package.json.If a server is already listening on that port, use it. Starting a second one on a different port gives you an app nobody is verifying, and leaves a process behind.
Restarting matters after init. A build plugin added to a config the running server already read is not in the bundle. If the server was up before step 1, restart it now or nothing you do next will find an instrumented page.
With the MCP tools:
reticle_sessionsA listed session is the proof. Nothing else in this skill can tell you anything about the app until one appears.
No session, and no human to open a tab? Take one yourself:
reticle_lease { action: "acquire", url: "http://localhost:<port>/" }The lease opens a browser Reticle owns and drives. It is the whole answer to "there is nobody here to open the page".
Without the MCP tools, skip to step 4: verify opens its own browser.
Declare the consequence before you act. This is the difference between a check and a rationalisation, and it is the entire reason this tool exists:
reticle_act_and_wait { ref, action, until: { … } }Assert what the app _did_, not what it _shows_. A UI that renders the value it just sent, rather than the value the server returned, passes every DOM-level check ever written:
until: { kind: "net", method: "POST", urlContains: "/api/refund",
status: 200, bodyContains: "\"refunded\":1187.01" }bodyContains reads the response: what the server answered. It needs body capture, which init writes into the app's config; if a verdict comes back outcome_unread, that is what is missing.
Without the MCP tools:
npx @reticlehq/server verify http://localhost:<port>/Exit 0 is a pass. It drives the app and re-verifies saved flows, so if the project has none, it will tell you nothing was checked. That is not a pass. Record one first, or say plainly that there was nothing to verify.
verified: "yes": proved. Say what held.verified: "no": the app is wrong, or your expectation was. Both are results. Report it.verified: "unknown": Reticle drove the app and could not tell. Not a pass. Never round it up, and never weaken the assertion until it goes green. That converts a real signal into a false one, which is the failure this product exists to prevent.A drive that ends without act_and_wait or assert has no result, however many tools it used.
Stop and say which of these it is. A precise dead end beats a green report.
| What you see | What it means | | --- | --- | | tools absent, verify says no saved flows | nothing to verify yet: record a flow, or report that | | reticle_sessions empty, port listening | the bundle has no SDK: restart the dev server after init | | verified: "unknown", outcome_unread | the response body was not recorded: check the plugin options init wrote | | lease loads the page but never connects | the app refused to dial; on a non-localhost host it needs a pairing token as well as allowNonLocalhost |
Some clients ask a human to approve each command. Two things reduce that to near zero:
npx @reticlehq/server init matches a prefix rule; the same command wrapped in a subshell or a $(…) usually does not.~/.reticle, which is outside the workspace. Approving that family once covers every later call.If your client offers an autonomous or goal mode, this skill is written for it. Turn it on before starting rather than approving forty prompts. Approval fatigue is a real reason runs are abandoned half-installed, with the tools connected and nothing ever verified.
Reticle is built for agents, so your experience is the signal that decides what gets fixed, and it disappears when your context does. One call, then carry on:
reticle_feedback { kind: "bug" | "gap" | "ambiguity" | "feature_request" | "improvement", text: "…" }Unreachable? npx @reticlehq/server feedback --agent --kind <kind> "what happened". Report defects in Reticle; a bug you find in the app under test is Reticle working, and belongs in your answer.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 6,458 | 8,368 | +30% | 1 | 1 | 0% | 419 | 2,195 | +424% | 0 | 0 | — |
case-02 | fail→fail | 14,272 | 9,734 | -32% | 1 | 1 | 0% | 2,128 | 2,213 | +4% | 0 | 0 | — |
case-03 | fail→fail | 28,992 | 15,264 | -47% | 1 | 1 | 0% | 2,692 | 2,165 | -20% | 0 | 0 | — |
case-04 | pass→pass | 24,330 | 8,603 | -65% | 1 | 1 | 0% | 1,887 | 2,597 | +38% | 0 | 0 | — |
case-05 | fail→pass | 15,407 | 6,722 | -56% | 1 | 1 | 0% | 1,211 | 2,562 | +112% | 0 | 0 | — |
case-06 | fail→pass | 6,459 | 4,466 | -31% | 1 | 1 | 0% | 851 | 2,437 | +186% | 0 | 0 | — |
case-07 | pass→pass | 17,721 | 6,743 | -62% | 1 | 1 | 0% | 1,866 | 2,734 | +47% | 0 | 0 | — |
case-08 | fail→fail | 15,116 | 3,872 | -74% | 1 | 1 | 0% | 1,975 | 2,312 | +17% | 0 | 0 | — |
case-09 | fail→pass | 11,714 | 7,600 | -35% | 1 | 1 | 0% | 1,765 | 2,775 | +57% | 0 | 0 | — |
case-10 | pass→pass | 9,834 | 6,694 | -32% | 1 | 1 | 0% | 1,413 | 2,527 | +79% | 0 | 0 | — |
case-11 | fail→pass | 16,503 | 3,239 | -80% | 1 | 1 | 0% | 2,710 | 2,257 | -17% | 0 | 0 | — |
case-12 | pass→pass | 8,433 | 5,134 | -39% | 1 | 1 | 0% | 1,032 | 2,266 | +120% | 0 | 0 | — |
case-13 | pass→pass | 15,212 | 6,168 | -59% | 1 | 1 | 0% | 2,028 | 2,748 | +36% | 0 | 0 | — |
case-14 | pass→pass | 10,493 | 4,713 | -55% | 1 | 1 | 0% | 1,489 | 2,405 | +62% | 0 | 0 | — |
case-15 | fail→pass | 8,827 | 4,072 | -54% | 1 | 1 | 0% | 1,196 | 2,161 | +81% | 0 | 0 | — |
case-16 | pass→pass | 12,737 | 5,214 | -59% | 1 | 1 | 0% | 1,969 | 2,441 | +24% | 0 | 0 | — |
case-17 | fail→pass | 9,034 | 4,115 | -54% | 1 | 1 | 0% | 1,397 | 2,373 | +70% | 0 | 0 | — |
case-18 | fail→pass | 10,167 | 5,002 | -51% | 1 | 1 | 0% | 1,605 | 2,340 | +46% | 0 | 0 | — |
case-19 | pass→pass | 6,076 | 14,089 | +132% | 1 | 1 | 0% | 1,068 | 3,341 | +213% | 0 | 0 | — |
case-20 | pass→pass | 7,182 | 14,767 | +106% | 1 | 1 | 0% | 1,061 | 3,274 | +209% | 0 | 0 | — |
case-21 | pass→pass | 5,292 | 7,155 | +35% | 1 | 1 | 0% | 981 | 2,857 | +191% | 0 | 0 | — |
case-22 | fail→pass | 13,466 | 4,044 | -70% | 1 | 1 | 0% | 1,988 | 2,317 | +17% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 19 counted toward the lift figure. The other 3 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +36 percentage points is the difference between those two pass rates over the 19 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.