Install
openclaw skills install @brasco05/keyword-research1Multi-source keyword intelligence and autocomplete research. Fetches real-time suggestions from Google, YouTube, Amazon, and DuckDuckGo — no API key required. Use when: (1) doing SEO or content keyword research, (2) finding what users search for on a topic, (3) competitor or niche research, (4) expanding a seed keyword into hundreds of related terms, (5) building keyword lists for ads or content. Triggers on: keyword research, what do people search for, autocomplete, keyword ideas, SEO keywords, search suggestions, keyword list.
openclaw skills install @brasco05/keyword-research1Multi-source autocomplete fetcher — no API keys needed. Pulls real-time suggestions from Google, YouTube, Amazon, and DuckDuckGo.
# All sources, default language (de)
python3 scripts/fetch_suggestions.py "keyword"
# Specific sources
python3 scripts/fetch_suggestions.py "keyword" --sources google,youtube
# English / US region
python3 scripts/fetch_suggestions.py "keyword" --lang en --region us
# Expand mode: fetch suggestions of suggestions (10x more keywords)
python3 scripts/fetch_suggestions.py "keyword" --sources google --expand
# JSON output (for piping or further processing)
python3 scripts/fetch_suggestions.py "keyword" --json
| Flag | Default | Description |
|---|---|---|
--sources | all | all or comma-separated: google, youtube, amazon, ddg |
--lang | de | Language code: de, en, tr, fr, es, ... |
--region | de | Region: de, us, tr, gb, ... |
--expand | off | Fetches 2nd-level suggestions from Google (base keywords → ~10x results) |
--json | off | Outputs JSON instead of formatted text |
--sources all--expand on the most promising source for deeper research--json to process or display the results--expand only works on Google (most reliable for 2nd-level fetching)