browser-verifylisted
Install: claude install-skill stevengonsalvez/agents-in-a-box
# Browser Verify — Test + Screenshot Combo
Combines **expect-cli** (AI-generated browser tests) with **debug-bridge** (screenshots + DOM inspection) for full verification with visual evidence.
## When to Use
- After fixing UI bugs — need both test pass AND screenshot proof
- Before raising a PR — capture evidence for PR comments
- When `/validate` needs visual verification
- Anytime you hear "prove it works"
## Architecture
```
┌─────────────────────────────────────────────────────────────┐
│ /browser-verify │
│ │
│ Phase 1: expect-cli (Playwright browser) │
│ ├─ Auto-detect dev server │
│ ├─ AI generates test plan from git diff │
│ ├─ Execute tests → pass/fail results │
│ └─ Session recording (ephemeral replay) │
│ │
│ Phase 2: debug-bridge (App's own browser via WebSocket) │
│ ├─ Open app with ?session=X&port=Y │
│ ├─ Navigate to affected pages │
│ ├─ Take before/after screenshots → saved as PNG │
│ ├─ Inspect DOM state, console errors, network │
│ └─ Upload screenshots via /imgbb-upload for PR comments │
└─────────────────────────────────────────────────────────────┘
```
## Quick Start
```bash
/browser-