A pi extension that lets the model review and test JS frontends headlessly, with screenshots it can actually see: frontend_open, frontend_act, frontend_screenshot, frontend_console, and frontend_eval drive a Playwright Chromium against your dev server, static build, or a plain HTML file.
Editing UI code without looking at the result is guesswork. With this extension the agent opens the page after a change, sees the rendered screenshot, walks the user flow (click, type, select), reads the browser console and failed network requests, and checks responsive layouts at phone/tablet/desktop widths — all headless.
From npm:
pi install npm:pi-frontend-checkOr from git:
pi install git:github.com/sebaxzero/pi-frontend-check.gitAdd -l to either form to install project-locally (adds to .pi/settings.json only).
No manual setup: the playwright npm dependency installs automatically with the package, and the Chromium binary (~150 MB) downloads once on the first browser launch. To pre-download it instead, run npx playwright install chromium in the install directory.
| Tool | What it does |
|---|---|
frontend_open |
Navigate to a URL, host:port shorthand, or HTML file path → title, console health line, screenshot |
frontend_act |
click / type / press / hover / select / scroll / wait_for on the open page → updated state + fresh screenshot |
frontend_screenshot |
Capture the viewport, the full page, or one element; optionally resize the viewport first (e.g. 375×812) for responsive testing |
frontend_console |
Full collected log: console messages, uncaught page errors, failed requests, HTTP 4xx/5xx responses |
frontend_eval |
Evaluate a JS expression in the page and return the JSON result — exact assertions (counts, text, computed styles) |
Every frontend_open / frontend_act result pairs a text half (title, URL, viewport, console error summary with the first errors inlined) with an image half (a screenshot of the rendered page), so one tool call answers both "does it error?" and "does it look right?".
This is a testing tool for your own frontend, not a web browser:
- No SSRF protection, no sanitization —
localhost, private addresses, andfile://are the whole point. For browsing the open web with prompt-injection and SSRF defenses, use pi-browser-search or pi-safe-search. - No dev-server management — the agent starts your dev server itself (bash, background) and then points
frontend_openat it.
/frontend-check — show current status and config
/frontend-check set KEY=VAL — override config for the current session only
/frontend-check save — write the current config to frontend-check.json
/frontend-check reset — close the browser
Persistent configuration lives in extensions/frontend-check.json next to the installed extension (auto-created on first load with defaults). You can ask the agent to edit it, or tune values live with /frontend-check set.
| Key | Default | Description |
|---|---|---|
HEADLESS |
true |
Set false to watch the browser during a session |
VIEWPORT_WIDTH / VIEWPORT_HEIGHT |
1280 / 900 |
Initial viewport |
NAV_TIMEOUT_MS |
30000 |
Navigation timeout |
AUTO_SHOT |
true |
Attach a screenshot to every open/act result (set false for non-vision models) |
FULL_PAGE |
false |
Default screenshot mode |
SHOT_FORMAT / SHOT_QUALITY |
jpeg / 80 |
Screenshot encoding (png for lossless) |
MAX_CONSOLE |
200 |
Console log ring-buffer size |
MAX_EVAL_CHARS |
4000 |
Truncation limit for frontend_eval results |
playwright (^1.53.0) — installed automatically with the package, whether via pi install npm: or a git-based install. The Chromium binary is downloaded separately on first browser launch (see Install above).
MIT