smithery.ai

browser-automation

Reliable, composable browser automation using minimal OpenCode Browser primitives.

First seen Mar 13, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Declared

Skill metadata

Parsed from SKILL.md frontmatter.

LicenseMIT
Compatibilityopencode
Declared agents opencode
More metadata
audience
agents
domain
browser

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,618 B
  • docs SUMMARY.md 108 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 31 installs

SKILL.md

What I do

  • Provide a safe, composable workflow for browsing tasks
  • Use browser_query list and index selection to click reliably
  • Confirm state changes after each action

Best-practice workflow

  1. Inspect tabs with browsergettabs
  2. Open new tabs with browseropentab when needed
  3. Navigate with browser_navigate if needed
  4. Wait for UI using browser_query with timeoutMs
  5. Discover candidates using browser_query with mode=list
  6. Click, type, or select using index
  7. Confirm using browserquery or browsersnapshot

Selecting options

  • Use browser_select for native <select> elements
  • Prefer value or label; use optionIndex when needed
  • Example: browser_select({ selector: "select", value: "plugin" })

Query modes

  • text: read visible text from a matched element
  • value: read input values
  • list: list many matches with text/metadata
  • exists: check presence and count
  • page_text: extract visible page text

Opening tabs

  • Use browseropentab to create a new tab, optionally with url and active
  • Example: browseropentab({ url: "https://example.com";, active: false })

Troubleshooting

  • If a selector fails, run browserquery with mode=pagetext to confirm the content exists
  • Use mode=list on broad selectors (button, a, *[role="button"]) and choose by index
  • Confirm results after each action