ac-qa-browser

ac-qa-browser is a skill for Claude Code from WaterplanAI/agentic-config. It costs 47 tokens per session (491 once invoked), scanned A, original, MIT.

A browser-control command for opening a website and interacting with it through Playwright, a browser-testing tool.

In plain words
What is it for?
Use it to open URLs, check page details, click controls, fill fields, type text, and take screenshots.
Why use it?
It gives you a repeatable way to inspect a page and perform browser tests from the command line.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

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

Good fit Use it to open URLs, check page details, click controls, fill fields, type text, and take screenshots.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/waterplanai/agentic-config/ac-qa-browser
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.

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

Made for: Claude Code.

Or install agentic-config, the plugin that ships this one along with the rest of its 49 skills, 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-browser

README.md
[![agentmods](https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-qa-browser.svg)](https://agentmods.dev/skills/waterplanai/agentic-config/ac-qa-browser)
Your own site
<a href="https://agentmods.dev/skills/waterplanai/agentic-config/ac-qa-browser"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-qa-browser.svg" alt="Measured on agentmods" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 491 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00047 $0.00491
Opus 5 $0.00023 $0.00246
Sonnet 5 $0.00009 $0.00098
Haiku 4.5 $0.00005 $0.00049

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

Security

Grade A, and why

ac-qa-browser 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 8d 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-browser/SKILL.md · 60 lines

What it actually says

Browser Command

Open browser for E2E testing using playwright-cli.

Target URL: $ARGUMENTS

If no URL provided, default to: http://localhost:${DEFAULT_PORT:-5173}/

Pre-Flight Checks

  1. Verify playwright-cli Installed
    • Run: playwright-cli --help
    • If not available: STOP with error "playwright-cli not installed. Run: npm install -g @playwright/cli@latest && playwright-cli install-browser"

Execution

  1. Navigate to URL

    playwright-cli open "${URL:-http://localhost:${DEFAULT_PORT:-5173}/}"
    
  2. Verify Page Load

    playwright-cli snapshot
    

    Report page title and URL from snapshot output.

  3. Report Status

    • Confirm browser is open and ready
    • Display current page title
    • Display current URL

Available CLI Commands

After opening browser, these commands are available via Bash:

  • playwright-cli goto <url> - Navigate to URL
  • playwright-cli snapshot - Capture accessibility snapshot
  • playwright-cli click "<selector>" - Click element
  • playwright-cli fill "<selector>" "<text>" - Fill input field
  • playwright-cli type "<text>" - Type text
  • playwright-cli screenshot - Take PNG screenshot
  • playwright-cli close - Close browser session
  • playwright-cli video-start / video-stop - Record video

Notes

  • Video recording is explicit: use playwright-cli video-start before the flow and video-stop after
  • Configure output via playwright-cli.json in project root
  • Use --headed flag for visible browser window: playwright-cli --headed open <url>
  • Port can be configured via DEFAULT_PORT environment variable
  • Sessions persist across commands: use playwright-cli -s=<name> for named sessions
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. 8d ago First seen · 60 lines · 47 tokens per session scan A c4736f6f3f4d

Subscribe to this mod's changes

ac-qa-browser is a skill published in the GitHub repository WaterplanAI/agentic-config (30 stars, last pushed 1mo ago), licensed MIT. It adds 47 tokens to every session and 491 once invoked, about $0.0002 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

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

e2e-testing-patterns

Master end-to-end testing with Playwright and Cypress to build reliable test suites that catch bugs, improve confidence, and enable fast deployment. Use when implementing E2E tests, debugging flaky tests, or establishing testing standards.

wshobson/agents · 51 tokens

browser-testing-with-devtools

Tests in real browsers via Chrome DevTools MCP. Use when building or debugging anything that runs in a browser. Use when you need to inspect the DOM, capture console errors, analyze network requests, profile performance, or verify visual output with real runtime data. Requires the chrome-devtools MCP server to be…

addyosmani/agent-skills · 68 tokens

playwright-cli

A command-line tool for controlling Chromium, Firefox, and WebKit browsers, including navigation, page interaction, screenshots, PDFs, and recorded actions.

UnicomAI/wanwu · 76 tokens