← ClaudeAtlas

pw-playwright-fieldkitlisted

Explore, debug, audit, compare, record, and test live websites with deterministic Playwright scripts and QE workflows. Use for requests to map a site, find broken pages or links, reproduce browser bugs, discover hidden or role-gated features, audit accessibility/performance, compare crawls, design or review test cases from feature specifications, record a user-demonstrated journey, execute an approved test-case document as a witnessed journey, run existing permanent automated Playwright tests with trace evidence, create test charters, find automation coverage gaps, plan test data or execution matrices, generate negative-path tests, triage flaky tests, save authenticated state, or generate verified Python/Node integration tests.
jpbaking/playwright-fieldkit · ★ 1 · Testing & QA · score 72
Install: claude install-skill jpbaking/playwright-fieldkit
# PW Playwright FieldKit Drive the bundled scripts and reason over their reports. Do not improvise raw Playwright code for operations already supported here. ## Package paths The scripts have one runtime home, the user-global skill root (installed for every harness; if this SKILL.md was discovered elsewhere, still run the scripts from here): ```text ~/.agents/skills/pw-playwright-fieldkit ``` Run tools from the project/workspace root so reports land in the project, for example: ```bash node ~/.agents/skills/pw-playwright-fieldkit/scripts/crawl.mjs <URL> --out report/explore ``` Install the runtime dependencies once per machine if needed: ```bash (cd ~/.agents/skills/pw-playwright-fieldkit/scripts && npm ci && npx playwright install chromium) ``` ## Route the request Read and follow exactly one primary workflow. Read another only when the task genuinely crosses intents. - Explore, map, health-check, or understand a site: [pw-explore-site](references/workflows/pw-explore-site.md) - Reproduce a bug or diagnose wrong navigation: [pw-debug-site](references/workflows/pw-debug-site.md) - Find undocumented, authenticated, or role-gated functionality: [pw-discover-features](references/workflows/pw-discover-features.md) - Derive traceable draft test cases from a feature specification: [pw-design-test-cases](references/workflows/pw-design-test-cases.md) - Review and explicitly approve specification-derived test cases: [pw-review-test-cases](references/workflows/pw-review-