Multi Search Engine
一个面向 Research 场景的 Agent 技能。原始说明:Multi search engine integration with 16 engines (7 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and Wolfra...
name: google-trending
description: "Fetch and display the top trending Google searches in the last 24 hours for any country. Use when the user asks for Google trending topics, trending searches, what people are googling, or top searches today."
metadata:
{
"openclaw":
{
"emoji": "🔥",
"requires": { "bins": ["python3"] },
"install":
[
{
"id": "python3",
"kind": "system",
"bins": ["python3"],
"label": "Python 3 (stdlib only, no pip required)",
},
],
},
}
Fetch the top trending Google searches in the last 24 hours via the Google Trends daily RSS feed. No API key required.
# Top 20 trending searches in the US (default)
python3 scripts/fetch-google-trending.py
# Specific country (ISO 3166-1 alpha-2 code)
python3 scripts/fetch-google-trending.py FR
python3 scripts/fetch-google-trending.py GB
python3 scripts/fetch-google-trending.py JP
# Custom result count
python3 scripts/fetch-google-trending.py US 10
| Position | Default | Description |
|----------|---------|--------------------------------------|
| 1 | US | Country code (ISO 3166-1 alpha-2) |
| 2 | 20 | Number of trending topics to show |
For each trending topic: rank, search term, approximate search volume, publication time, up to 2 related news headlines with source, and a link to the Google Trends page.
https://trends.google.com/trending/rss?geo={GEO}urllib, xml.etree)python3 scripts/fetch-google-trending.py [GEO] [COUNT]