verify-unattended

Solid

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.

AI & Automation 326 stars 69 forks Updated today NOASSERTION

Install

View on GitHub

Quality Score: 79/100

Stars 20%
84
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Reticle, unattended 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. ## The one rule that makes this work **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. - **not present** → use the CLI. `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. ## Step 1 — wire it, once, quietly ``` npx -y @reticlehq/server@latest init ``` 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 i...

Details

Author
reticlehq
Repository
reticlehq/reticle
Created
2 months ago
Last Updated
today
Language
TypeScript
License
NOASSERTION

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

Web & Frontend Solid

verify-ui-change

Check that a change to a web app actually works in the running app before calling it done. Drives the real page and returns a pass/fail verdict with the request that fired, the state that moved, and the file:line to fix. Use after editing a component, a form, a route, or an API call; when you have said "fixed" but have not opened the app; when the user asks "does it actually work?"; or when a change looks right on screen and you cannot prove it.

326 Updated today
reticlehq
AI & Automation Solid

install-and-verify

Verify that a web app change actually works by driving the running app from the inside (DOM, network, routing, console, framework state) instead of screenshots or guessing. Use after any user-facing change, when a fix is claimed but unproven, when a test passes but the UI is broken, or when you need a real verdict rather than "looks right". Also use to install and wire up Reticle in a project that does not have it yet.

326 Updated today
reticlehq
Code & Development Solid

verifier-setup

Set a repo up to prove engineering-task work actually works before it ships. Investigates the repo, ensures a one-command dev stack (`dev-local`) exists, asks whether verification runs locally or in a sandbox (crabbox), confirms/installs the driver (the `playwright-cli` skill for web by default). Outputs three artifacts: a committed `/verify` skill (per-task verification SOP — spawn a verifier sub-agent → drive the app → screenshot/video proof → open a PR with the proof embedded), the `/dev-local` skill + script, and the installed driver skill. Use when someone says "set up verification", "make this repo verifiable", "scaffold a verify skill", "set up the verifier".

1,191 Updated 3 weeks ago
AI-Builder-Club