Prove a web change actually works by exercising the flow in Poracode's browser and collecting visual, console, and network evidence.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add SDSLeon/lightcode --skill web-app-verification --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Web App Verification?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/sdsleon-web-app-verification)More formats (shields.io, HTML) on the badges page.
---
name: web-app-verification
description: "Prove a web change actually works by exercising the flow in Poracode's browser and collecting visual, console, and network evidence."
---
# Web App Verification
A change is not verified because the code looks right or the build passed. Drive the real flow and report what the app did.
## Set the baseline
Call `browser.enable` once, then open the exact target the user named — their local dev URL, their preview
deployment. Do not substitute a different URL or a web search when the page is unreachable; say it is unreachable.
Capture the starting state with `browser.snapshot` plus the current URL, and clear the console with a reload so
pre-existing noise is not mistaken for your change. Note any errors that survive the reload — those are the baseline,
not your regression.
## Exercise the flow
Walk the path a user would take, one action at a time, using the refs from the snapshot rather than coordinates. After
each navigation or state-changing action, wait for the expected URL, text, or element before continuing.
Test the boundaries the change actually touched: the empty state, the error path, the second submit. A single happy
path proves very little.
## Collect the evidence
For every claim you intend to make, hold one artifact:
- **Visual** — a screenshot when layout, spacing, or appearance is part of the requirement.
- **Console** — `browser.console` after the flow, separating new errors from the baseline.
- **Network** — failed or unexpected requests from `browser.requests`, with status codes.
## Verdict
State plainly what you verified, what you observed, and what you could not check — a flow behind a login you do not
have, a path that needs data you cannot create. "Works" without evidence is not a verdict.
Call `browser.disable` before you stop or hand back to the user.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!