pw-playwright-fieldkitlisted
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-