
Google Search Browser Use
- 1.9k installs
- 3 repo stars
- Updated January 23, 2026
- grasseed/google-search-browser-use
google-search-browser-use is an agent skill that Use browser-use to perform Google searches, open results, and extract key information from live pages. Use when the user.
About
Run Google searches with browser use prefer real browser mode open results and extract the relevant snippets or page content This skill leverages the user s existing browser session to reduce CAPTCHAs Before running the search ensure the environment is ready 1 Check Installation Verify if browser use is available in the current PATH bash which browser use 2 Install if Missing If not found install it using pip bash python3 m pip install user browser use 3 Locate Binary If the command is still not found after installation it is likely in the user s local bin directory Retrieve the path dynamically bash python3 m site user base The binary is typically at USER_BASE bin browser use The google search browser use agent skill provides documented workflows prerequisites triggers and safety guidance from its SKILL md source Agents load it when user requests match the description and follow step by step instructions without inventing capabilities It integrates with standard agent tooling for the tasks inputs outputs and failure modes
- description: Use browser-use to perform Google searches, open results, and extract key information from live pages. Use
- Run Google searches with `browser-use` (prefer real browser mode), open results, and extract the relevant snippets or pa
- Before running the search, ensure the environment is ready:
- Follow google-search-browser-use SKILL.md steps and documented constraints.
- Follow google-search-browser-use SKILL.md steps and documented constraints.
Google Search Browser Use by the numbers
- 1,859 all-time installs (skills.sh)
- +2 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #691 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
google-search-browser-use capabilities & compatibility
- Capabilities
- description: use browser use to perform google s · run google searches with `browser use` (prefer r · before running the search, ensure the environmen · follow google search browser use skill.md steps
- Use cases
- orchestration
What google-search-browser-use says it does
description: Use browser-use to perform Google searches, open results, and extract key information from live pages. Use when the user asks to "search Google", "look this up on Google", or needs curren
Run Google searches with `browser-use` (prefer real browser mode), open results, and extract the relevant snippets or page content. This skill leverages the user's existing browser session to reduce C
Before running the search, ensure the environment is ready:
npx skills add https://github.com/grasseed/google-search-browser-use --skill google-search-browser-useAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1.9k |
|---|---|
| repo stars | ★ 3 |
| Security audit | 0 / 3 scanners passed |
| Last updated | January 23, 2026 |
| Repository | grasseed/google-search-browser-use ↗ |
When should an agent use google-search-browser-use and what problem does it solve?
Use browser-use to perform Google searches, open results, and extract key information from live pages. Use when the user asks to "search Google", "look this up on Google", or needs current web results
Who is it for?
Developers invoking google-search-browser-use as documented in the skill source.
Skip if: Skip when requirements fall outside google-search-browser-use documented scope.
When should I use this skill?
Use browser-use to perform Google searches, open results, and extract key information from live pages. Use when the user asks to "search Google", "look this up on Google", or needs current web results
What you get
Outputs aligned with the google-search-browser-use SKILL.md workflow and stated deliverables.
- extracted page snippets
- search result summaries
Files
Google Search Browser Use
Overview
Run Google searches with browser-use (prefer real browser mode), open results, and extract the relevant snippets or page content. This skill leverages the user's existing browser session to reduce CAPTCHAs.
Prerequisites
Before running the search, ensure the environment is ready:
1. Check Installation: Verify if browser-use is available in the current PATH.
which browser-use2. Install if Missing: If not found, install it using pip.
python3 -m pip install --user browser-use3. Locate Binary: If the command is still not found after installation, it is likely in the user's local bin directory. Retrieve the path dynamically:
python3 -m site --user-base
# The binary is typically at <USER_BASE>/bin/browser-useWorkflow
1) Launch a Google search (Real Browser Mode)
Use the real browser to reuse the user’s logged-in session.
Option A: Standard Execution
browser-use --browser real open "https://www.google.com/search?q=YOUR+QUERY"Option B: Explicit Path Execution If Option A fails (command not found), use the full path found in Prerequisites:
# Example (adjust based on 'python3 -m site --user-base' output):
${HOME}/Library/Python/3.14/bin/browser-use --browser real open "https://www.google.com/search?q=YOUR+QUERY"(Note: Replace `3.14` with your current Python version if different)
2) Inspect results and parse
Once the browser is open:
# Check current page state
browser-use --browser real state
# Click on a search result (use index from state output)
browser-use --browser real click <index>3) Extract or Summarize
- Goal: Provide a short summary (3-6 bullets) with source citations.
- Fallback: If
browser-usestruggles with parsing, usecurlwith Jina AI for a text-friendly version:
curl -L "https://r.jina.ai/https://example.com"4) Close the Session
browser-use closeTroubleshooting
- CAPTCHAs: If encountered, solve them manually in the open browser window.
- Path Issues: If
browser-usecannot be called directly, always prefer finding the path viapython3 -m site --user-baserather than guessing. - Connection: Ensure no VPN/Proxy is blocking Google results if timeouts occur.
Related skills
How it compares
Pick google-search-browser-use over plain web-search skills when Google specifically blocks headless requests and you need an authenticated browser session.
FAQ
What is google-search-browser-use?
Use browser-use to perform Google searches, open results, and extract key information from live pages. Use when the user asks to "search Google", "look this up on Google", or needs
When should I use google-search-browser-use?
Use browser-use to perform Google searches, open results, and extract key information from live pages. Use when the user asks to "search Google", "look this up on Google", or needs
Is google-search-browser-use safe to install?
Review the Security Audits panel on this page before production use.