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.
npx agentmods add skills/obra/superpowers-chrome/browsingnpx skills add obra/superpowers-chrome --skill browsinggit clone --depth 1 https://github.com/obra/superpowers-chromeWrote 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.
[](https://agentmods.dev/skills/obra/superpowers-chrome/browsing)<a href="https://agentmods.dev/skills/obra/superpowers-chrome/browsing"><img src="https://agentmods.dev/badge/skills/obra/superpowers-chrome/browsing.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00038 | $0.05039 |
| Opus 5 | $0.00019 | $0.02520 |
| Sonnet 5 | $0.00008 | $0.01008 |
| Haiku 4.5 | $0.00004 | $0.00504 |
Grade A, and why
browsing 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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 479 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Browsing with Chrome Direct
Overview
Control Chrome via DevTools Protocol using the use_browser MCP tool. Single unified interface with auto-starting Chrome.
Announce: "I'm using the browsing skill to control Chrome."
When to Use
Use this when:
- Controlling authenticated sessions
- Managing multiple tabs in running browser
- Playwright MCP unavailable or excessive
Use Playwright MCP when:
- Need fresh browser instances
- Generating screenshots/PDFs
- Prefer higher-level abstractions
Auto-Capture
Every DOM action (navigate, click, type, select, eval, keyboard_press, hover, drag_drop, double_click, right_click, file_upload) automatically saves:
{prefix}.png— viewport screenshot{prefix}.md— page content as structured markdown{prefix}.html— full rendered DOM{prefix}-console.txt— browser console messages
Files are saved to the session directory with sequential prefixes (001-navigate, 002-click, etc.). You must check these before using extract or screenshot actions.
The use_browser Tool
Single MCP tool with action-based interface. Chrome auto-starts on first use.
Parameters:
action(required): Operation to performselector(optional): CSS or XPath selector for element operationspayload(optional): Action-specific data (string or object)timeout(optional): Timeout in ms for await operations (default: 5000)
Active tab: Every action operates on the current activeTab. Use switch_tab to change it.
Actions Reference
Navigation
-
navigate: Navigate to URL
payload: URL string- Example:
{action: "navigate", payload: "https://example.com"}
-
await_element: Wait for element to appear
selector: CSS selectortimeout: Max wait time in ms- Example:
{action: "await_element", selector: ".loaded", timeout: 10000}
-
await_text: Wait for text to appear
payload: Text to wait for- Example:
{action: "await_text", payload: "Welcome"}
Interaction
- click: Click element
selector: CSS selector- Example:
{action: "click", selector: "button.submit"}
What ships with it
50 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.
- .gitignore 95 B
- chrome-ws 30 KB
- chrome-ws-lib.js 17 KB runs code
- COMMANDLINE-USAGE.md 14 KB
- EXAMPLES.md 20 KB
- host-override.js 3.2 KB runs code
- lib/browser-bridge.js 6.8 KB runs code
- lib/browser-session.js 5.1 KB runs code
- lib/capture.js 19 KB runs code
- lib/cdp-router.js 2.5 KB runs code
- lib/cdp-utils.js 764 B runs code
- lib/chrome-launcher-helpers.js 13 KB runs code
- lib/chrome-process.js 17 KB runs code
- lib/console-logging.js 2.6 KB runs code
- lib/cookies.js 582 B runs code
- lib/dialogs-render.js 5.2 KB runs code
- lib/dialogs-router.js 5.1 KB runs code
- lib/dialogs.js 9.2 KB runs code
- lib/element-selector.js 3.8 KB runs code
- lib/evaluation.js 2.8 KB runs code
- lib/extraction.js 2.0 KB runs code
- lib/file-upload.js 1.8 KB runs code
- lib/html-diff.js 3.3 KB runs code
- lib/key-definitions.js 4.7 KB runs code
- lib/keyboard-input.js 10 KB runs code
- lib/mouse.js 15 KB runs code
- lib/navigation.js 9.9 KB runs code
- lib/page-scripts/dom-summary.js 1.7 KB runs code
- lib/page-scripts/markdown.js 3.1 KB runs code
- lib/page-scripts/permission-shim.js 3.0 KB runs code
- lib/page-session.js 3.8 KB runs code
- lib/profile-lock.js 6.3 KB runs code
- lib/screenshot.js 6.3 KB runs code
- lib/select-option.js 3.5 KB runs code
- lib/session-state.js 2.5 KB runs code
- lib/tabs.js 5.8 KB runs code
- lib/viewport.js 4.1 KB runs code
- lib/websocket-client.js 4.3 KB runs code
- package.json 249 B
- README.md 1.5 KB
- test-chrome-args.js 3.2 KB runs code
- test-cookies.js 525 B runs code
- test-e2e.sh 1.1 KB runs code
- test-extract.sh 399 B runs code
- test-interact.sh 304 B runs code
- test-navigate.sh 243 B runs code
- test-raw.sh 361 B runs code
- test-tabs.sh 336 B runs code
- test-viewport.js 750 B runs code
- test-wait.sh 233 B runs code
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.
- 4d ago First seen · 479 lines · 38 tokens per session scan A 0540fee22dbb
browsing is a skill published in the GitHub repository obra/superpowers-chrome (347 stars, last pushed 27d ago), licensed MIT. It adds 38 tokens to every session and 5,039 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.
Other skills, from other repositories
use-agent-browser-for-airi
Test AIRI display-model imports with agent-browser across stage-tamagotchi Electron, stage-web, and stage-pocket mobile web layouts. Use when uploading and verifying contributor-supplied Live2D ZIP, VRM, or MMD ZIP/PMX/PMD files through AIRI's model selector, including onboarding bypass, format-specific import…
opencli-sitemap-author
Use when creating or maintaining OpenCLI site sitemaps: agent-facing navigation, page-state, action, workflow, API-reference, pitfall, and fallback knowledge for a website. Use after browser exploration discovers durable site context, when a sitemap is stale, or when promoting local site knowledge into the repo.
interactive-login
How to complete browser/interactive logins (aws / gh / glab / gcloud). The platform backgrounds the login poller so it survives the human's browser round-trip — and when that does NOT work.
pinchtab-mcp
Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.
google-safe-browsing
Prevent and fix Google Safe Browsing "Dangerous site" flags. Use when launching a public web app, buying/picking a domain, building a login or signup page, or when any site shows a red "Dangerous site" / "Deceptive site" warning in Chrome, Brave, Safari, Firefox, or Edge. Triggers on "dangerous site", "deceptive…
web-browser
Automate and interact with web pages through Chrome or Chromium using the Chrome DevTools Protocol (CDP): navigate, click, fill forms, inspect content, take screenshots, and debug console or network activity. Use when an agent needs a real browser. Prefer headless Chrome unless visible browser interaction is required.