browser-execution

A skill for completing tasks directly in a web browser, including interaction with a known website and recovery when access is blocked. It reports the result of the browser task and uses a browser session for the work.

In plain words
What is it for?
Use it to carry out a specific browser task on a known target website and return whether the task succeeded, failed, or was blocked.
Why use it?
It handles jobs that require browser state, clicking, or visual inspection rather than just reading public pages. It also defines how to proceed when a site blocks the task or when saved login access is needed.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/merit-systems/openinstinct/browser-execution
Any agent
npx skills add Merit-Systems/OpenInstinct --skill browser-execution
Clone the repo
git clone --depth 1 https://github.com/Merit-Systems/OpenInstinct

Made for: Claude Code, Codex.

Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,696 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00021 $0.01696
Opus 5 $0.00010 $0.00848
Sonnet 5 $0.00004 $0.00339
Haiku 4.5 $0.00002 $0.00170

Measured 2d ago against content hash 0c5ff624296a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

browser-execution 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 2d 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.

agent/subagents/worker/skills/browser-execution/SKILL.md · 27 lines

How it starts

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

Browser execution

  • Source of truth: use Kernel's current documentation directly for browser sessions, Playwright execution, computer controls, stealth and CAPTCHA solving, and live view. Do not infer a Kernel API shape from memory.
  • Browser execution is not web search. Never open a general search engine or browse search-result pages. Begin only with a known target site and an outcome that requires interaction, browser state, or visual inspection. If preliminary public discovery is missing, stop before creating a browser and return that routing blocker so the coordinator can use web_search.
  • Start work immediately. For a fresh assignment, create a browser directly instead of listing old sessions first, and pass the known target URL as start_url to avoid a separate initial navigation. Reuse the returned session ID for the rest of the assignment. Call get_browser_live_view only when the user explicitly asks for browser access.
  • Create one read-only browser and reuse it for the full job. Multiple read-only sessions can safely share the workspace profile. Immediately before a saved login is needed, note the current URL, delete that task browser, and create a replacement at the same URL with save_changes: true. Only one writable session can exist for the workspace; delete it as soon as authentication succeeds so Kernel saves the new login state. Prefer Playwright for navigation, inspection, extraction, and deterministic interaction. Use computer_action with a final screenshot when visual reasoning or coordinate-level input is more reliable.
  • A computer_action screenshot is temporary inspection data. Use capture_browser_image only for a screenshot or page image the parent may send to the user. When the assignment asks for a photo, pic, or image of a specific item, product, dish, or listing, prefer source: "image_resource" on the matching visible image element so the user receives the original page image. Use a viewport, full-page, or rendered-element screenshot only when the assignment explicitly requests screen or page context, no suitable image element exists, or original-resource capture falls back automatically. Use durable capture when the user requested an image or one image materially improves the final result, never for routine debugging. Keep every returned image descriptor for final_output.images; do not invent artifact ids or URLs.
  • Choose the smallest useful visual set. Return one image for a single result, or two to four distinct images only when a compact gallery materially helps the user compare visually differentiated options or verify an outcome. Useful cases include clothing, food, or product choices and a purchased item or safe, non-sensitive confirmation state. Every image must add distinct value; skip decorative, repetitive, text-only, or sensitive content.
  • Treat 90 seconds and six browser tool calls as the fast-path budget for an uncomplicated task. Each Playwright call should normally inspect the current state, perform all related safe actions, verify the resulting state, and return one compact object. Re-enter the model only for a meaningful page transition, an unknown state, approval, or recovery. If the task exceeds that budget, either finish the single verified next step or stop with the exact blocker; never leave an open-ended loop running.
  • Use names, email addresses, phone numbers, mailing addresses, and other non-credential form values directly when the coordinator provides them in the task. Do not require those values to be saved in the vault first.
  • When a page needs a saved login, payment card, or address, call list_vault, choose the correct opaque handle, focus one visible control in the intended form, then pass only its handle and the browser session ID to fill_from_vault. Login fill is restricted to the saved origin and focused login form; on a multi-step login, advance the page and call fill_from_vault again for the next visible credential field. Never pass vault fields, selectors, origins, or secret values. After vault fill, do not inspect filled values or take a screenshot that could expose them; continue with targets identified before injection.
  • If secure fill fails, report the exact tool error and last verified page state. Never infer a cross-origin or provider limitation solely from the page layout.
  • Never invent vault kinds or handles. The coordinator owns vault setup. If an item is missing, return the supported kind (login, payment, address, or contact) and safe setup metadata. For a login, include a descriptive label, the observed identifier type (email, phone, or username), and exact current origin, but never the actual identifier.
  • Navigate with domcontentloaded or wait for the specific locator, URL, response, or visible state needed next. Never wait for networkidle, add a fixed multi-second sleep, or poll without an explicit deadline and terminal condition. Keep locator waits at or below five seconds, except for the single managed CAPTCHA wait below, and computer-action sleeps at or below two seconds.
  • Kernel stealth sessions include its managed automatic CAPTCHA solver. When a CAPTCHA, Cloudflare challenge, or similar test appears, leave it untouched and use one bounded wait of at most 20 seconds for the challenge to clear or the expected page content to appear. Do not click the challenge or refuse the task merely because it appeared. Inspect once after the wait and continue when the page is ready. If it remains blocked, preserve the browser and return the takeover blocker and live-view URL to the coordinator. Do not bypass authentication, paywalls, or other access controls.
  • A Playwright call has a fixed 25-second ceiling and returns as soon as its program completes. Keep ordinary locator waits at or below five seconds; the longer ceiling accommodates a single managed CAPTCHA wait of at most 20 seconds. If the call times out, inspect the page once and change tactics; do not replay the same code or selector.
  • Treat a blocked page as a tactic failure. Try at most two materially different relevant approaches, such as a direct provider URL, Playwright versus computer actions, or a fresh tab. Do not bypass authentication, CAPTCHAs, paywalls, or access controls. After two failed approaches, report the verified state and exact blocker.
  • Preserve the browser when approval or a human action is the only remaining blocker. Otherwise delete it when the task is complete or fails.
  • For a transaction, proceed only when the coordinator's assignment contains approval for the exact merchant, item, quantity, option, fees, and total. Approval remains valid for that payload at the quoted total or lower. After approval, fill from the vault and submit in the same run; do not stop at the merchant review screen. If approval is absent, the total increases, or a material term changes, return the exact decision payload and live-view URL to the coordinator. Personal authentication challenges do not require another price approval. Ask the coordinator for an OTP as described below; 3-D Secure, passkey or push approval, and similar non-textual challenges may require live view. Use Kernel's managed solver flow for CAPTCHAs first.
  • When required human input blocks progress, preserve the browser and call Eve's native final_output with failure and a concise message beginning Needs user input:. For an OTP, ask the coordinator to send the one-time code requested by the site without requiring live view. The coordinator will surface the question and resume this worker with the user's reply. Enter the OTP once, never echo, vault, or reuse it, and continue the task.
  • Finish each browser assignment by calling Eve's native final_output tool exactly once with the required { status, message, images } result. Include at most four descriptors returned by capture_browser_image, or an empty array. Use success only for an achieved and verified outcome; use failure for an approval, setup, authentication, takeover, cancellation, incomplete, or failed outcome. End the turn immediately without returning the object as prose or JSON text.

Read the full file on GitHub · 27 lines

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. 2d ago First seen · 27 lines · 21 tokens per session scan A 0c5ff624296a

Subscribe to this mod's changes

browser-execution is a skill published in the GitHub repository Merit-Systems/OpenInstinct (208 stars, last pushed 4d ago), licensed MIT. It adds 21 tokens to every session and 1,696 once invoked, about $0.0001 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

dingtalk_channel_connect

Use a headed browser to automatically complete DingTalk channel integration for QwenPaw. Applicable when the user mentions DingTalk, developer console, Client ID, Client Secret, bot, Stream mode, binding or configuring a channel. Supports pausing when a login page is detected and resuming after the user logs in.

agentscope-ai/QwenPaw · 69 tokens

browser_cdp

当用户明确希望连接到已运行的 Chrome 浏览器、扫描本地 CDP 端口、显式指定 cdpport,或让多个 agent / 工具共享同一个浏览器时,使用本 skill。browser 默认不开放调试端口;仅当用户明确希望其他本地工具附加时才显式传入 cdpport。.

agentscope-ai/QwenPaw · 85 tokens

browser_visible

当用户需要控制 browser 的浏览器启动方式时,使用本 skill。browser 默认由 Playwright 直接管理、不开放调试端口(需让其他本地工具附加时显式传 cdpport);headed 控制是否显示窗口,privatemode 保留用于兼容、不再改变默认行为,browserargs 传入额外的 Chromium 启动参数,executablepath 指定自定义浏览器可执行文件路径。.

agentscope-ai/QwenPaw · 108 tokens

browser_visible

Use this skill when the user needs to control the browser launch mode for browser. By default browser is managed by Playwright and opens no debugging port (pass an explicit cdpport to let another local tool attach); headed controls whether the window is visible, and privatemode is kept for backward compatibility and…

agentscope-ai/QwenPaw · 75 tokens

browser

Drive a live browser with async Python against QwenPaw's builtin Browser SDK. The full reference is below; re-load this browser skill after context compaction.

agentscope-ai/QwenPaw · 35 tokens

agent-browser

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.

vercel-labs/open-agents · 51 tokens