Install
openclaw skills install stealthy-google-searchGoogle search via Scrapling’s StealthyFetcher/StealthySession. Use to run Google queries and return clean top-result titles + links (plain text or JSON). Includes a deterministic install script that sets up a local venv and installs Scrapling fetchers + browsers.
openclaw skills install stealthy-google-searchThis skill provides one job: do Google searches reliably and return the top result titles + URLs.
It ships two scripts:
{baseDir}/scripts/install.sh → installs dependencies into a local venv (recommended).{baseDir}/scripts/google_search.py → runs the search and prints results.Run:
bash {baseDir}/scripts/install.sh
What it does:
{baseDir}/.venvscrapling[fetchers]scrapling install (downloads Playwright browsers + system deps){baseDir}/.venv/bin/python {baseDir}/scripts/google_search.py \
--query "Top Indian universities" \
--top 10 \
--hl en \
--gl in
{baseDir}/.venv/bin/python {baseDir}/scripts/google_search.py \
--query "Top Indian universities" \
--top 10 \
--hl en \
--gl in \
--json
sudo for Playwright system dependencies. The installer will attempt sudo if available.