ac-qa-playwright-cli

ac-qa-playwright-cli is a skill for Claude Code, Codex from WaterplanAI/agentic-config. It costs 72 tokens per session (1,286 once invoked), scanned A, original, MIT.

A command-line tool guide for controlling a web browser with Playwright, including opening pages, inspecting them, interacting with controls, and capturing screenshots or PDFs.

In plain words
What is it for?
Use it for browser navigation, clicking, typing, page inspection, screenshots, PDFs, videos, and session management.
Why use it?
It provides a lightweight way to automate and inspect browser sessions without using Playwright's larger tool interface.

Skill for Claude CodeCodex

Part of the agentic-config plugin — 49 skills, 2 agents, 1 plugin shipped together

Install

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.

agentmods
npx agentmods add skills/waterplanai/agentic-config/ac-qa-playwright-cli
Any agent
npx skills add WaterplanAI/agentic-config --skill ac-qa-playwright-cli
Clone the repo
git clone --depth 1 https://github.com/WaterplanAI/agentic-config

Made for: Claude Code, Codex.

Or install agentic-config, the plugin that ships this one along with the rest of its 49 skills, 2 agents, 1 plugin.

Wrote 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.

agentmods badge for ac-qa-playwright-cli

README.md
[![agentmods](https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-qa-playwright-cli.svg)](https://agentmods.dev/skills/waterplanai/agentic-config/ac-qa-playwright-cli)
Your own site
<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>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,286 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 5d ago against content hash 8e81e2220b3a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

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.

packages/pi-ac-qa/skills/ac-qa-playwright-cli/SKILL.md · 184 lines

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

Read the full file on GitHub · 184 lines

Files

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.

Changes

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.

  1. 5d ago First seen · 184 lines · 72 tokens per session scan A 8e81e2220b3a

Subscribe to this mod's changes

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.

Related

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…

idavidov13/agentic-playwright · 156 tokens

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…

idavidov13/agentic-playwright · 136 tokens

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…

OpenEvident/vindicate · 77 tokens

playwright-browser-automation

Run automated headless browser testing, scrape dynamic SPAs, capture high-resolution full-page screenshots, and perform visual regression testing with Playwright.

pedroiff0/awesome-skills · 34 tokens

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.

idavidov13/agentic-playwright · 52 tokens

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.

hlalljie/agent-workflow-presets · 41 tokens