finviz-crawler
持续抓取Finviz财经新闻,本地存储并支持查询与AI摘要。
下载 46
获取全球及地区热搜关键词,支持对比分析与趋势追踪,用于市场研究与内容规划。
openclaw skills install @satnamra/google-trends命令、参数、文件名以原文为准
监控和分析 Google Trends 数据,用于市场研究、内容规划和趋势追踪。
使用 web_fetch 获取 Google Trends RSS 数据:
# 美国每日趋势
curl -s "https://trends.google.com/trending/rss?geo=US" | head -100
# 立陶宛
curl -s "https://trends.google.com/trending/rss?geo=LT" | head -100
# 全球
curl -s "https://trends.google.com/trending/rss?geo=" | head -100进行详细关键词分析时,请使用 Google Trends 官方网站:
# 在浏览器中打开
open "https://trends.google.com/trends/explore?q=bitcoin&geo=US"
# 或通过 web_fetch 获取基础数据
web_fetch "https://trends.google.com/trends/explore?q=bitcoin"# 对比多个关键词(用逗号分隔)
open "https://trends.google.com/trends/explore?q=bitcoin,ethereum,solana&geo=US"获取今日热门搜索:
#!/bin/bash
# 用法:./trends-daily.sh [国家代码]
# 示例:./trends-daily.sh LT
GEO="${1:-US}"
curl -s "https://trends.google.com/trending/rss?geo=$GEO" | \
grep -o '<title>[^<]*</title>' | \
sed 's/<[^>]*>//g' | \
tail -n +2 | \
head -20生成对比链接:
#!/bin/bash
# 用法:./trends-compare.sh keyword1 keyword2 keyword3
# 示例:./trends-compare.sh bitcoin ethereum solana
KEYWORDS=$(echo "$@" | tr ' ' ',')
echo "https://trends.google.com/trends/explore?q=$KEYWORDS"1. 获取美国的热门搜索
2. 获取立陶宛的热门搜索
3. 检查是否有与业务相关的趋势
4. 报告发现的有趣内容1. 对比潜在的博客主题
2. 找出搜索量更高的主题
3. 检查季节性模式
4. 确定内容重点方向1. 对比品牌名称
2. 跟踪兴趣随时间的变化
3. 识别竞争对手热度上升的时间点
4. 调查背后原因设置自动化趋势监测:
// 每日趋势报告的定时任务示例
{
"name": "每日趋势报告",
"schedule": { "kind": "cron", "expr": "0 9 * * *" },
"payload": {
"kind": "agentTurn",
"message": "获取美国和立陶宛今日的 Google Trends 数据。总结每个地区的前 10 个趋势。突出显示任何与科技或商业相关的趋势。"
}
}常见国家代码:
已收录 1 个 Skill