en un clic
browser-automation
// Web browser automation for tasks requiring UI interaction, login-protected pages, or human-like browsing when APIs are insufficient.
// Web browser automation for tasks requiring UI interaction, login-protected pages, or human-like browsing when APIs are insufficient.
Deep research with structured reports and charts. ONLY use when the user explicitly requests research/analysis, or needs data visualization with charts, or quantitative/comparative analysis across multiple sources. Do NOT use for simple questions or quick lookups.
Search the web and fetch content from URLs for current information, news, and research topics.
Autonomous coding agent. Delegate any task that involves understanding, writing, or running code — from a GitHub issue, a bug report, or a user request. It explores, implements, and verifies on its own.
Create hand-drawn style diagrams and flowcharts using Excalidraw
Create, modify, and manage Excel spreadsheets.
Manage GitHub issues, PRs, branches, and repositories via OAuth (3LO). For reading issues or PR details, not for deep code analysis — delegate that to code-agent.
| name | browser-automation |
| description | Web browser automation for tasks requiring UI interaction, login-protected pages, or human-like browsing when APIs are insufficient. |
starting_url to navigate to a page and act in a single call.url to navigate first; text=True for full text, tables=True for table data, links=True for all links.Use browser automation when the task genuinely requires it:
Prefer web search or url_fetcher for general information lookup, news, or publicly accessible pages — browser automation is slower and heavier. Reserve it for tasks where simpler tools are insufficient.
browser_act: UI interactions (click, type, scroll, form fill). Use starting_url to open a page and act in one call.browser_get_page_info: Fast page structure check and optional content extraction (<300ms). Use url to navigate first.browser_manage_tabs: Switch/close/create tabs (view tabs via get_page_info)browser_save_screenshot: Save milestone screenshots (search results, confirmations, key data)starting_url when opening a fresh page: browser_act(instruction='Search for laptops', starting_url='https://amazon.com')url to navigate and inspect in one call: browser_get_page_info(url='https://example.com', tables=True)text=True to get full page text content (useful for reading article text)tables=True to extract structured table data from the pagelinks=True to get all links on the page (up to 200)Tool Selection:
browser_act Best Practice:
browser_get_page_info Best Practice: