browser-control

browser-control is a skill for Claude Code, Codex from samttoo22-MewCat/OpenSoul. It costs 91 tokens per session (583 once invoked), scanned A, original, MIT.

A browser-automation guide using SeleniumBase's undetected Chrome mode. It is intended for websites that need interaction, JavaScript rendering, login steps, screenshots, or protection such as Cloudflare.

In plain words
What is it for?
Opening rendered pages, entering text, clicking controls, scrolling, signing in when permitted, and taking screenshots of interactive websites.
Why use it?
Simple page fetching cannot handle every website. Browser automation can reproduce user actions and inspect pages after they have fully loaded.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Opening rendered pages, entering text, clicking controls, scrolling, signing in when permitted, and taking screenshots of interactive websites.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/samttoo22-mewcat/opensoul/browser-control
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 samttoo22-MewCat/OpenSoul --skill browser-control
Clone the repo
git clone --depth 1 https://github.com/samttoo22-MewCat/OpenSoul

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/samttoo22-mewcat/opensoul/browser-control/github.svg)](https://agentmods.dev/skills/samttoo22-mewcat/opensoul/browser-control)
Your own site
<a href="https://agentmods.dev/skills/samttoo22-mewcat/opensoul/browser-control"><img src="https://agentmods.dev/badge/skills/samttoo22-mewcat/opensoul/browser-control/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-control

Your own site · 80×15
<a href="https://agentmods.dev/skills/samttoo22-mewcat/opensoul/browser-control"><img src="https://agentmods.dev/badge/skills/samttoo22-mewcat/opensoul/browser-control.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 91 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 583 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.00091 $0.00583
Opus 5 $0.00046 $0.00292
Sonnet 5 $0.00018 $0.00117
Haiku 4.5 $0.00009 $0.00058

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

Security

Grade A, and why

browser-control 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/browser_controller.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

openclaw/skills/browser-control/SKILL.md · 42 lines

What it actually says

注意:單純讀取網頁內容請優先使用 web-research skill(--action fetch),速度更快且不需啟動瀏覽器。僅在需要互動操作(點擊、輸入、截圖)時才使用本 skill。

Browser Control (SeleniumBase UC Mode)

此技能允許 ARIA 使用具備反偵測能力的瀏覽器來存取網頁。這在處理需要 JavaScript 渲染、Cloudflare 防護或複雜互動的網站時非常有用。

核心功能

  1. 繞過偵測:使用 uc=True 模式,模擬真實使用者行為。
  2. 網頁截圖:獲取頁面視覺狀態。
  3. 動態內容:讀取完整渲染後的 HTML。
  4. 互動操作:支援點擊、輸入、捲動等。

使用方法

透過執行 scripts/browser_controller.py 來操作。

1. 獲取網頁內容 (Rendered HTML/Markdown)

python scripts/browser_controller.py --action fetch --url "https://example.com"

2. 獲取網頁截圖

python scripts/browser_controller.py --action screenshot --url "https://example.com"

3. 執行複雜互動 (範例:登入或搜尋)

python scripts/browser_controller.py --action interact --url "https://google.com" --steps '[{"type": "type", "selector": "input[name=q]", "text": "openSOUL AI"}, {"type": "click", "selector": "input[name=btnK]"}]'

注意事項

  • 視窗顯示:在 Windows 環境下會彈出實體 Chrome 視窗。
  • 中文支援:原生支援中文輸入與顯示。
  • 性能:啟動瀏覽器較慢(約 5-10 秒),僅在必要時使用。
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. 8d ago First seen · 42 lines · 91 tokens per session scan A ccde66603d42

Subscribe to this mod's changes

browser-control is a skill published in the GitHub repository samttoo22-MewCat/OpenSoul (19 stars, last pushed 5mo ago), licensed MIT. It adds 91 tokens to every session and 583 once invoked, about $0.0005 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

cross-validated-search

OpenClaw skill for source-backed web search, page reading, and evidence-aware claim checking. Use it to verify factual answers with live search results and explicit source handling.

InternLM/WildClawBench · 39 tokens

x-integration

X (Twitter) integration for ClaudeClaw. Post tweets, like, reply, retweet, and quote. Use for setup, testing, or troubleshooting X functionality. Triggers on "setup x", "x integration", "twitter", "post tweet", "tweet".

sbusso/claudeclaw · 59 tokens

pm-preview

A tool that previews Markdown product documents in a web browser and refreshes the view when the documents change. Markdown is a plain-text format commonly used for project documentation.

konglong87/superPM · 77 tokens

xhs-auto-publisher

A cloud-server workflow for preparing and publishing image-and-text posts on Xiaohongshu, a Chinese social-media platform. It uses browser automation while allowing a person to scan a login QR code.

DjangoPeng/agentic-ai · 74 tokens

scrapling

A Python framework for collecting information from websites, including pages whose content is created by JavaScript. It provides CSS and XPath selectors for extracting text, links, and other page data, and includes browser-based fetching for sites with anti-bot checks.

KCNyu/clawock · 0 tokens

agent-browser

Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a…

RTGS2017/NagaAgent · 108 tokens