Awesome-openclaw-skills serpapi-2
Search Google via SerpAPI (Google Search, Google News, Google Local). Use when you need to search the web, find news articles, or look up local businesses. Supports country/language targeting for region-specific results.
install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/serpapi-2" ~/.claude/skills/sundial-org-awesome-openclaw-skills-serpapi-2 && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/serpapi-2" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-serpapi-2 && rm -rf "$T"
manifest:
skills/serpapi-2/SKILL.mdsource content
SerpAPI Search
Search Google via SerpAPI with country/language targeting.
Quick start
# Google Search {baseDir}/scripts/search.sh "artificial intelligence B2B" --country br --lang pt # Google News {baseDir}/scripts/search.sh "inteligência artificial" --engine google_news --country br --lang pt # Google Local {baseDir}/scripts/search.sh "AI companies" --engine google_local --country us --location "San Francisco, California"
Engines
| Engine | Use case | Key results field |
|---|---|---|
| Web search (default) | |
| News articles | |
| Local businesses/places | |
Options
| Flag | Description | Default |
|---|---|---|
| , , | |
| 2-letter country code (, , , etc.) | |
| Language code (, , , etc.) | |
| Location string (e.g. ) | — |
| Number of results | |
| Raw JSON output | off |
API key
Set
SERPAPI_API_KEY env var, or store it:
mkdir -p ~/.config/serpapi echo "your_key_here" > ~/.config/serpapi/api_key chmod 600 ~/.config/serpapi/api_key
Common country codes
br (Brazil), us (USA), pt (Portugal), de (Germany), fr (France), es (Spain), gb (UK), jp (Japan), in (India).