agent-browser

agent-browser is a skill for Claude Code from majiayu000/claude-skill-registry. It costs 120 tokens per session (1,734 once invoked), scanned A, original, MIT.

A browser automation tool for AI agents that can navigate pages, inspect controls, fill forms, click buttons, and take screenshots.

In plain words
What is it for?
Navigating URLs, using page snapshots to find controls, submitting forms, checking page state, taking screenshots, and testing websites.
Why use it?
It lets an agent carry out multi-step website tasks through a repeatable workflow instead of relying on manual interaction.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Navigating URLs, using page snapshots to find controls, submitting forms, checking page state, taking screenshots, and testing websites.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/majiayu000/claude-skill-registry/agent-browser-chachamaru127-claude-code-harness-4
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 majiayu000/claude-skill-registry --skill agent-browser-chachamaru127-claude-code-harness-4
Clone the repo
git clone --depth 1 https://github.com/majiayu000/claude-skill-registry

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/majiayu000/claude-skill-registry/agent-browser-chachamaru127-claude-code-harness-4/github.svg)](https://agentmods.dev/skills/majiayu000/claude-skill-registry/agent-browser-chachamaru127-claude-code-harness-4)
Your own site
<a href="https://agentmods.dev/skills/majiayu000/claude-skill-registry/agent-browser-chachamaru127-claude-code-harness-4"><img src="https://agentmods.dev/badge/skills/majiayu000/claude-skill-registry/agent-browser-chachamaru127-claude-code-harness-4/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 agent-browser

Your own site · 80×15
<a href="https://agentmods.dev/skills/majiayu000/claude-skill-registry/agent-browser-chachamaru127-claude-code-harness-4"><img src="https://agentmods.dev/badge/skills/majiayu000/claude-skill-registry/agent-browser-chachamaru127-claude-code-harness-4.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 120 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,734 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. 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.00120 $0.01734
Opus 5 $0.00060 $0.00867
Sonnet 5 $0.00024 $0.00347
Haiku 4.5 $0.00012 $0.00173

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

Security

Grade A, and why

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

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/agent/agent-browser-chachamaru127-claude-code-harness-4/SKILL.md · 187 lines

How it starts

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

Agent Browser Skill

ブラウザ自動化を行うスキル。agent-browser CLI を使用して、UI デバッグ・検証・自動操作を実行します。


トリガーフレーズ

このスキルは以下のフレーズで自動起動します:

  • 「ページを開いて」「URLを確認して」
  • 「クリックして」「入力して」「フォームに」
  • 「スクリーンショットを撮って」
  • 「UIを確認して」「画面をテストして」
  • "open this page", "click on", "fill the form", "screenshot"

機能詳細

機能 詳細
ブラウザ自動化 See references/browser-automation.md
AI スナップショットワークフロー See references/ai-snapshot-workflow.md

実行手順

Step 0: agent-browser の確認

# インストール確認
which agent-browser

# 未インストールの場合
npm install -g agent-browser
agent-browser install

Step 1: ユーザーのリクエストを分類

リクエストタイプ 対応アクション
URL を開く agent-browser open <url>
要素をクリック スナップショット → agent-browser click @ref
フォーム入力 スナップショット → agent-browser fill @ref "text"
状態確認 agent-browser snapshot -i -c
スクリーンショット agent-browser screenshot <path>
デバッグ agent-browser --headed open <url>

Step 2: AI スナップショットワークフロー(推奨)

ほとんどの操作で、まずスナップショットを取得してから要素参照で操作します:

# 1. ページを開く
agent-browser open https://example.com

# 2. スナップショット取得(AI 向け、インタラクティブ要素のみ)
agent-browser snapshot -i -c

# 出力例:
# - link "Home" [ref=e1]
# - button "Login" [ref=e2]
# - input "Email" [ref=e3]
# - input "Password" [ref=e4]
# - button "Submit" [ref=e5]

# 3. 要素参照で操作
agent-browser click @e2           # Login ボタンをクリック
agent-browser fill @e3 "[email protected]"
agent-browser fill @e4 "password123"
agent-browser click @e5           # Submit

Step 3: 結果の確認

# 現在の状態をスナップショットで確認
agent-browser snapshot -i -c

# または URL を確認
agent-browser get url

# スクリーンショットを取得
agent-browser screenshot result.png

クイックリファレンス

基本操作

コマンド 説明
open <url> URL を開く
snapshot -i -c AI 向けスナップショット
click @e1 要素をクリック
fill @e1 "text" フォームに入力
type @e1 "text" テキストを入力
press Enter キーを押す
screenshot [path] スクリーンショット
close ブラウザを閉じる

Read the full file on GitHub · 187 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. 8d ago First seen · 187 lines · 120 tokens per session scan A 81fcb79558c2

Subscribe to this mod's changes

agent-browser is a skill published in the GitHub repository majiayu000/claude-skill-registry (604 stars, last pushed today), licensed MIT. It adds 120 tokens to every session and 1,734 once invoked, about $0.0006 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-09-03.

Related

Other skills, from other repositories

ui-test-cypress

Use this skill when you need to design Cypress e2e and component testing plans with commands, fixtures, network stubbing, and CI reporting; triggers include Cypress UI testing, UI automation testing, and ui-test-cypress.

naodeng/awesome-qa-skills · 50 tokens

ui-test-playwright

Use this skill when you need to design Playwright Test suites with fixtures, projects, traces, screenshots, API plus UI coverage, and CI reporting; triggers include Playwright UI testing, UI automation testing, and ui-test-playwright.

naodeng/awesome-qa-skills · 52 tokens

ui-test-puppeteer

Use this skill when you need to design Puppeteer automation for Chromium-driven checks, screenshots, PDFs, network interception, and CDP use cases; triggers include Puppeteer UI testing, UI automation testing, and ui-test-puppeteer.

naodeng/awesome-qa-skills · 53 tokens

ui-test-selenium

Use this skill when you need to design Selenium WebDriver UI automation plans with stable locators, waits, Page Objects, Grid, and CI execution; triggers include Selenium UI testing, UI automation testing, and ui-test-selenium.

naodeng/awesome-qa-skills · 51 tokens

ui-test-testcafe

Use this skill when you need to design TestCafe UI automation with fixtures, selectors, roles, browser matrix execution, and reports; triggers include TestCafe UI testing, UI automation testing, and ui-test-testcafe.

naodeng/awesome-qa-skills · 50 tokens

ui-test-webdriverio

Use this skill when you need to design WebdriverIO suites with config, services, runner behavior, Page Objects, capabilities, and reporters; triggers include WebdriverIO UI testing, UI automation testing, and ui-test-webdriverio.

naodeng/awesome-qa-skills · 53 tokens