browser-automation-expert

browser-automation-expert is a skill for Claude Code from personamanagmentlayer/pcl. It costs 94 tokens per session (2,562 once invoked), scanned A, original, Apache-2.0.

A guide for using a real web browser as a client to visit other people's websites, collect information, or complete website flows when no suitable API exists. It also covers checking permission, site rules, privacy, copyright, and load before automating access.

In plain words
What is it for?
Use it for permitted scraping, crawling, login flows, dynamic pages, and anti-bot handling on third-party sites without an API.
Why use it?
It helps avoid treating website automation as only a technical task when access may be restricted or legally sensitive. It also distinguishes data collection from browser testing of your own application.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it for permitted scraping, crawling, login flows, dynamic pages, and anti-bot handling on third-party sites without an API.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/personamanagmentlayer/pcl/browser-automation-expert
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 personamanagmentlayer/pcl --skill browser-automation-expert
Clone the repo
git clone --depth 1 https://github.com/personamanagmentlayer/pcl

Made for: Claude Code.

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 browser-automation-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/browser-automation-expert/github.svg)](https://agentmods.dev/skills/personamanagmentlayer/pcl/browser-automation-expert)
Your own site
<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/browser-automation-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/browser-automation-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for browser-automation-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/browser-automation-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/browser-automation-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,562 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00094 $0.02562
Opus 5 $0.00047 $0.01281
Sonnet 5 $0.00019 $0.00512
Haiku 4.5 $0.00009 $0.00256

Measured 7d ago against content hash 0c6ec35da545, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

browser-automation-expert scanned grade A with 1 finding 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 7d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

import asyncio, urllib.robotparser
stdlib/tools/browser-automation-expert/SKILL.md · 309 lines

How it starts

The opening of the file, as written. The whole thing — 309 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Browser Automation Expert

Driving a browser to obtain data or complete a flow that has no API. Distinct from playwright-expert, which covers browsers as a testing tool against your own application; this skill covers browsers as a client against someone else's.

Before Automating: Is It Allowed?

Automation of a third-party site is a legal and ethical question before it is a technical one. Check, and record the answer:

  • Is there an API? Use it. It is faster, more stable and unambiguously permitted.
  • Terms of service — automated access is often restricted. Read them.
  • robots.txt — not legally binding everywhere, but ignoring it is a deliberate act you should be able to justify.
  • Personal data — scraping triggers GDPR obligations regardless of the data being public. There must be a lawful basis, and data subjects have rights over what you collected.
  • Copyright and database rights — publicly readable is not freely reusable.
  • Load — your throughput is someone else's cost.

If the answer to any of these is unclear, escalate rather than proceeding. This skill will not help evade access controls, defeat CAPTCHAs on a site that has refused you, or scrape behind an authentication wall you are not entitled to cross.

Core Concepts

Choose the Lightest Tool

Need Tool
Static HTML httpx + selectolax/BeautifulSoup — no browser
Data present in a JSON endpoint the page calls Call that endpoint directly
JavaScript-rendered content Headless browser
Interaction: login, upload, multi-step flow Headless browser

Open the network tab before writing a scraper. Most "JavaScript-heavy" sites fetch their data from a JSON endpoint you can call directly — a hundred times cheaper and far more stable than driving a browser.

Read the full file on GitHub · 309 lines

Files

What ships with it

1 file 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. 7d ago First seen · 309 lines · 94 tokens per session scan A 0c6ec35da545

Subscribe to this mod's changes

browser-automation-expert is a skill published in the GitHub repository personamanagmentlayer/pcl (40 stars, last pushed 2d ago), licensed Apache-2.0. It adds 94 tokens to every session and 2,562 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

scrapling-official

Scrape web pages using Scrapling with anti-bot bypass (like Cloudflare Turnstile), stealth headless browsing, spiders framework, adaptive scraping, and JavaScript rendering. Use when asked to scrape, crawl, or extract data from websites; webfetch fails; the site has anti-bot protections; write Python code to…

D4Vinci/Scrapling · 80 tokens

unbrowser

Cheap first-pass web discovery without launching Chrome — fetch SSR pages, run bounded JS, find routes/forms/API endpoints, extract structured data, and detect bot-wall or browser-only escalation points.

protostatis/unbrowser · 40 tokens

Browser Automation

Automate web browser interactions, scraping, testing, and workflow automation with Puppeteer/Playwright.

claude-office-skills/skills · 22 tokens

fortress-stealth-browser

Use when a web fetch is blocked — Cloudflare, DataDome, PerimeterX, Akamai, a 403/429, a CAPTCHA/"Press & Hold", "Access denied", an empty JavaScript shell, or a page whose data only appears after client-side rendering. Drives a real recompiled-Chromium stealth engine (Fortress) via the Fortress MCP to fetch, extract…

tiliondev/fortress · 130 tokens

air-sdk

Collective web intelligence for browser agents. Discover site capabilities, get CSS selectors, extract structured data, and report outcomes. When one agent learns how to use a website, every agent benefits.

ArcedeDev/air-sdk · 41 tokens

browser-automation-agent

A browser-automation skill for controlling web pages with Playwright or Puppeteer, tools that simulate actions in a browser.

SKY-lv/browser-automation-agent · 56 tokens