$ pest --agent='visit("/checkout")->assertNoJavascriptErrors();'
✓ verify — page loaded · 0 js errors · 0 console warnings
agent → checking the fix on mobile…
$ pest --agent='visit("/checkout")->on()->mobile()->screenshot(filename: "checkout");'
✓ verify — layout stable · screenshot saved to .pest/screenshots
agent → verifying the backend too…
$ pest --agent='$order = \App\Models\Order::factory()->create(); expect($order->total)->toBeGreaterThan(0);'
✓ verify — 1 passed (1 assertion)
// agent browser
Your agents verify their own work
A coding agent can check its own change against your live app with one short CLI command: visit the page, assert on what rendered, save a screenshot as proof. Each probe runs as an isolated, throwaway test, so nothing extra lands in your suite.