返回顶部
g

google-trends谷歌趋势监控

Monitor Google Trends - get trending searches, compare keywords, and track interest over time. Use for market research, content planning, and trend analysis.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
2,496
下载量
免费
免费
1
收藏
概述
安装方式
版本历史

google-trends

Google Trends 监控

监控和分析Google趋势数据,用于市场调研、内容规划和趋势追踪。

功能

  1. 1. 每日热门搜索 - 任何国家今日的热门趋势
  2. 关键词随时间变化的热度 - 关键词的历史趋势数据
  3. 关键词对比 - 比较多个关键词
  4. 相关话题和查询 - 发现相关搜索
  5. 地区热度 - 查看关键词在哪些地区最受欢迎

使用方法

获取热门搜索(今日)

使用web_fetch获取Google趋势RSS:

bash

美国每日趋势


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趋势网站:

bash

在浏览器中打开


open https://trends.google.com/trends/explore?q=bitcoin&geo=US

或通过web_fetch获取基础数据

web_fetch https://trends.google.com/trends/explore?q=bitcoin

比较关键词

bash

比较多个词条(用逗号分隔)


open https://trends.google.com/trends/explore?q=bitcoin,ethereum,solana&geo=US

脚本

trends-daily.sh

获取今日热门搜索:

bash
#!/bin/bash

用法:./trends-daily.sh [国家代码]


示例:./trends-daily.sh LT

GEO=${1:-US}
curl -s https://trends.google.com/trending/rss?geo=$GEO | \
grep -o [^<]* | \
sed s/<[^>]*>//g | \
tail -n +2 | \
head -20

trends-compare.sh

生成对比链接:

bash
#!/bin/bash

用法:./trends-compare.sh 关键词1 关键词2 关键词3


示例:./trends-compare.sh bitcoin ethereum solana

KEYWORDS=$(echo $@ | tr ,)
echo https://trends.google.com/trends/explore?q=$KEYWORDS

示例工作流程

晨间市场调研

  1. 1. 获取美国热门搜索
  2. 获取立陶宛热门搜索
  3. 检查是否有与我们业务相关的趋势
  4. 报告有趣的发现

内容规划

  1. 1. 比较潜在的博客主题
  2. 找出搜索热度更高的主题
  3. 检查季节性模式
  4. 确定内容重点

竞争对手监控

  1. 1. 比较品牌名称
  2. 追踪随时间变化的关注度
  3. 识别竞争对手热度飙升的时间点
  4. 调查原因

定时任务集成

设置自动化的趋势监控:

javascript
// 每日趋势报告的定时任务示例
{
name: 每日趋势报告,
schedule: { kind: cron, expr: 0 9 * },
payload: {
kind: agentTurn,
message: 获取美国和立陶宛今日的Google趋势。分别总结前10大趋势。突出显示任何科技/商业相关的趋势。
}
}

国家/地区

常用国家代码:

  • - US - 美国
  • LT - 立陶宛
  • DE - 德国
  • GB - 英国
  • FR - 法国
  • JP - 日本
  • (空) - 全球

局限性

  • - Google趋势不提供官方API
  • 大量使用可能受到频率限制
  • 数据是相对的(非绝对数值)
  • 详细视图的历史数据限制在约5年内

提示

  1. 1. 使用具体词条 - 使用iPhone 15 Pro而非仅iPhone
  2. 检查季节性 - 某些趋势具有周期性
  3. 与基准对比 - 使用稳定词条作为参考
  4. 查看相关查询 - 发现新的机会
  5. 监控竞争对手 - 追踪品牌随时间的热度变化

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 google-trends-1776420049 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 google-trends-1776420049 技能

通过命令行安装

skillhub install google-trends-1776420049

下载

⬇ 下载 google-trends v1.0.0(免费)

文件大小: 2.63 KB | 发布时间: 2026-4-17 18:17

v1.0.0 最新 2026-4-17 18:17
Initial ClawHub publish - Google Trends monitoring skill

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部