Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/waterplanai/agentic-config/ac-qa-playwright-clinpx skills add WaterplanAI/agentic-config --skill ac-qa-playwright-cligit clone --depth 1 https://github.com/WaterplanAI/agentic-configWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/waterplanai/agentic-config/ac-qa-playwright-cli)<a href="https://agentmods.dev/skills/waterplanai/agentic-config/ac-qa-playwright-cli"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-qa-playwright-cli.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00072 | $0.01286 |
| Opus 5 | $0.00036 | $0.00643 |
| Sonnet 5 | $0.00014 | $0.00257 |
| Haiku 4.5 | $0.00007 | $0.00129 |
Grade A, and why
ac-qa-playwright-cli scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Playwright CLI Browser Automation
Browser automation using playwright-cli - a token-efficient CLI alternative to Playwright MCP.
Prerequisites
- Node.js >= 18
- Global install:
npm install -g @playwright/cli@latest - Browser:
playwright-cli install-browser
Quick Reference
Navigation
playwright-cli open https://example.com # Open URL (creates default session)
playwright-cli -s=mytest open https://example.com # Named session
playwright-cli goto https://example.com/page # Navigate within session
playwright-cli go-back # Browser back
playwright-cli go-forward # Browser forward
playwright-cli reload # Reload page
playwright-cli close # Close session
Page Inspection
playwright-cli snapshot # Accessibility snapshot (like browser_snapshot)
playwright-cli screenshot # Take PNG screenshot
playwright-cli screenshot --output ./out.png # Save to specific path
playwright-cli pdf --output ./page.pdf # Save page as PDF
Interaction
playwright-cli click "Button Text" # Click by text
playwright-cli click "#submit-btn" # Click by selector
playwright-cli fill "#email" "[email protected]" # Fill input field
playwright-cli type "Hello world" # Type text into focused element
playwright-cli select "#dropdown" "option1" # Select dropdown option
playwright-cli hover "#menu-item" # Hover over element
playwright-cli check "#checkbox" # Check a checkbox
playwright-cli uncheck "#checkbox" # Uncheck a checkbox
playwright-cli dblclick "#element" # Double-click
playwright-cli upload "#file-input" ./file.txt # Upload file
Keyboard & Mouse
playwright-cli press Enter # Press key
playwright-cli press Control+a # Key combination
playwright-cli keydown Shift # Hold key
playwright-cli keyup Shift # Release key
What ships with it
7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 184 lines · 72 tokens per session scan A 8e81e2220b3a
ac-qa-playwright-cli is a skill published in the GitHub repository WaterplanAI/agentic-config (30 stars, last pushed 1mo ago), licensed MIT. It adds 72 tokens to every session and 1,286 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
fixtures
Playwright fixture conventions for the Playwright scaffold — dependency-injection pattern, the single import point from fixtures/pom/test-options.ts (merged via mergeTests), the three fixture categories (page objects in fixtures/pom/, API request in fixtures/api/, lifecycle setup/teardown in fixtures/helper/), and the…
selectors
Selector strategy, exploration-first workflow, locator priority order (getByRole then getByLabel then getByPlaceholder then getByText then getByTestId), and feedback/validation-message selector rules for Playwright page objects. Use when creating page objects, writing or updating locators, generating UI tests, or…
vindicate
Use when the user wants to write, add, fix, stabilize (flaky), refactor, run, or audit Playwright browser tests, draft requirements/stories from a recording (no tests), find test-coverage gaps, scaffold a Playwright project, or set up Playwright CI. Vindicate's guided workflow for grounded, conformant Playwright test…
playwright-browser-automation
Run automated headless browser testing, scrape dynamic SPAs, capture high-resolution full-page screenshots, and perform visual regression testing with Playwright.
playwright-cli
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
write-manual-browser-test
Author or update Markdown browser checklists under tests/manual using TEMPLATE.md. Use when UI, shell, or MCP-only paths need a human/agent procedure—not for Vitest.