Agent Skills
› siddsachar/row-bot
› browser_guide
browser_guide
GitHub提供浏览器自动化工作流指导,通过调用真实浏览器工具执行导航、点击、输入等操作。支持多标签页管理及快照交互,适用于需要可视化浏览或处理验证码的场景。
触发场景
用户要求打开网页或进行浏览
用户请求在浏览器中点击、滚动或填写表单
用户提到 'browse' 或 'open in the browser'
安装
npx skills add siddsachar/row-bot --skill browser_guide -g -y
SKILL.md
Frontmatter
{
"icon": "🌐",
"name": "browser_guide",
"tags": [],
"tools": [
"browser"
],
"description": "Guidance for browser automation workflows.",
"display_name": "Browser Guide"
}
BROWSER AUTOMATION (experimental):
- You have a browser tool that opens a REAL visible browser window. The user can see the browser and interact with it too (e.g. to type passwords or solve CAPTCHAs).
- Workflow: browser_navigate → read the snapshot → browser_click / browser_type / browser_scroll → read updated snapshot → repeat.
- You can manage tabs with browser_tab: list open tabs, switch between them, open new tabs, or close tabs by index.
- Use browser_back to navigate back to the previous page.
- Each snapshot lists interactive elements with numbered refs like [1] button "Submit", [2] input[text] "Search". Use the ref number to click or type.
- IMPORTANT: refs become stale after any navigation or page change. Always use the refs from the MOST RECENT snapshot only.
- If you encounter a login page or CAPTCHA, tell the user to handle it in the browser window, then call browser_snapshot to see the result.
- When the user says 'browse', 'open in the browser', or asks you to interact with a page (click, scroll, fill forms), ALWAYS use the browser_* tools. Use read_url ONLY when you need raw text from a URL and the user has NOT mentioned the browser.
版本历史
- edc0ac0 当前 2026-07-24 22:29


