What problem does it solve? Debugging failed Playwright tests normally requires opening a browser-based trace viewer, which is slow and impractical in headless or CI environments. This Skill lets you inspect trace.zip files entirely from the command line. ## Core Features & Use Cases - Action Inspection: List all test actions as a tree, filter by title or errors, and drill into individual actions for parameters, logs, and source locations. - Cross-Cutting Views: Review network requests, console messages, and errors across the entire trace with filtering by URL, HTTP method, or failure status. - Snapshot Analysis: Load DOM snapshots for any action into a headless browser to run eval queries, capture screenshots, or extract accessibility trees. - Use Case: A CI pipeline reports a failed Playwright test. Open the uploaded trace.zip, list failed actions, inspect the failing action's snapshot, and query the DOM for the error message — all without leaving the terminal. ## Quick Start Open the Playwright trace file at test-results/my-test/trace.zip and show me which actions failed and why.