Install
openclaw skills install google-alertsMonitor keywords via free web search. Use when: (1) Tracking brand or product mentions, (2) Monitoring industry keywords, (3) Researching competitors and market trends, (4) Daily competitive intel reports. Creates Hootsuite-style formatted output from search results.
openclaw skills install google-alertsKeyword monitoring with Hootsuite-style output. Free, no API keys required.
What this skill does NOT do: It does not save files, schedule cron jobs, or post to chat. Those integrations are handled by your agent prompt or external automation.
Edit references/keywords.md with your own keywords. One per line.
# Set your Google Alert feed ID (see setup-guide.md)
export GOOGLE_ALERT_FEED_ID="your_feed_id_here"
# Search a keyword
bash scripts/search.sh "your keyword" 10
Output: JSON array of results (title, link, description, published date)
Takes JSON results and formats them into Hootsuite-style cards:
bash scripts/search.sh "your keyword" 10 \
| python3 scripts/format-results.py --term "your keyword" --source google --count 10
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📊 YOUR KEYWORD — GOOGLE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
👤 Result Title · 3h ago
"Description text preview truncated to 280 chars..."
↗️ https://example.com/link
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
GOOGLE_ALERT_FEED_ID in your environment or edit scripts/search.shreferences/setup-guide.md for detailsscripts/search.sh — Fetch Google Alerts RSS, output JSONscripts/format-results.py — Format JSON results as Hootsuite-style cardsreferences/keywords.md — Keyword definitionsreferences/setup-guide.md — Detailed setup instructions