playwright-skill
playwright skill
What it does
- Plugin system: <plugin-root>/skills/playwright-skill
- Manual global: <agent-home>/skills/playwright-skill
- Project-specific: <project>/.agent/skills/playwright-skill
- If 1 server found: Use it automatically, inform user
- If multiple servers found: Ask user which one to test
- If no servers found: Ask for URL or offer to help start dev server
- Inline: Quick one-off tasks (screenshot, check if element exists, get page title)
Requirements & configuration
- cd $SKILLDIR && node -e "require('./lib/helpers').detectDevServers().then(servers => console.log(JSON.stringify(servers)))"
- cd $SKILLDIR && node -e "require('./lib/helpers').detectDevServers().then(s => console.log(JSON.stringify(s)))"
- const { chromium } = require('playwright');
- const helpers = require('./lib/helpers');
Configuration: SKILL_DIRPW_HEADER_NAMEPW_HEADER_VALUETARGET_URL
Derived from the skill's own SKILL.md documentation · extracted 2026-07-23
playwright-skill FAQ
What does the playwright-skill skill do?
IMPORTANT - Path Resolution: This skill can be installed in different locations (plugin system, manual installation, global, or project-specific). Before executing any commands, determine the skill directory based on where you loaded this SKILL.md file, and use that path in all commands below. Plugin system: <plugin-root>/skills/playwright-skill Manual global: <agent-home>/skills/playwright-skill
What does playwright-skill require?
cd $SKILLDIR && node -e "require('./lib/helpers').detectDevServers().then(servers => console.log(JSON.stringify(servers)))" cd $SKILLDIR && node -e "require('./lib/helpers').detectDevServers().then(s => console.log(JSON.stringify(s)))" const { chromium } = require('playwright'); const helpers = require('./lib/helpers'); Configuration keys: SKILL_DIR, PW_HEADER_NAME, PW_HEADER_VALUE, TARGET_URL.
How do I install playwright-skill?
Run: npx -y skills add https://github.com/sickn33/antigravity-awesome-skills --skill playwright-skill --agent claude-code — the source lives at github.com/sickn33/antigravity-awesome-skills.
Maintain playwright-skill?
Let people know it's listed here — add the badge (live metrics, light/dark aware) or a plain link to your README or docs.
[playwright-skill on getagentictools](https://getagentictools.com/skills/sickn33-antigravity-awesome-skills-playwright-skill?ref=badge) npx agentictools info skills/sickn33-antigravity-awesome-skills-playwright-skill The second line is the CLI lookup for this page — handy in READMEs and docs.