google-trends by jstarfilms/vibecode-protocol-suite
npx skills add https://github.com/jstarfilms/vibecode-protocol-suite --skill google-trends无需浏览器即可自动化 Google Trends 研究。查询任何关键词在 YouTube、网页、图片或新闻中的相关主题、热门查询和随时间变化的兴趣度。
需要 Node.js 18+ 和 PNPM。
# 检查 Node
node --version
# 安装依赖项(仅首次需要)
cd .agent/skills/google-trends/scripts
pnpm install
# 基本搜索(YouTube,过去 7 天,科技类别)
node .agent/skills/google-trends/scripts/search.js -k "Claude AI"
# 搜索网页而非 YouTube
node .agent/skills/google-trends/scripts/search.js -k "AI agents" -p web
# 扩展时间范围(1 个月)
node .agent/skills/google-trends/scripts/search.js -k "VibeCoding" -t "now 1-m"
# 输出为 JSON 格式以便管道处理
node .agent/skills/google-trends/scripts/search.js -k "Cursor IDE" -o json
Usage: search.js [options]
Options:
-k, --keyword <string> 要搜索的主题(必需)
-p, --property <string> youtube | web | images | news | froogle (默认: youtube)
-t, --time <string> now 7-d | now 1-m | today 3-m | today 12-m (默认: now 7-d)
-c, --category <number> Google Trends 类别 ID (默认: 5 = 科技)
-o, --output <string> table | json | markdown (默认: table)
-f, --file <path> 将输出保存到文件(可选)
--interest 包含随时间变化的兴趣度数据 (默认: false)
-h, --help 显示帮助
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
| 值 | 搜索内容 |
|---|---|
youtube | YouTube 搜索趋势 |
web | 谷歌网页搜索趋势 |
images | 谷歌图片趋势 |
news | 谷歌新闻趋势 |
froogle | 谷歌购物趋势 |
| 值 | 时间段 |
|---|---|
now 7-d | 过去 7 天 |
now 1-m | 过去 30 天 |
today 3-m | 过去 90 天 |
today 12-m | 过去 12 个月 |
| ID | 类别 |
|---|---|
| 5 | 计算机与电子产品(科技) |
| 13 | 艺术与娱乐 |
| 174 | 体育 |
| 3 | 商业与工业 |
完整列表:Google Trends 类别
在 /youtube-phase1-strategy 期间使用此技能来验证主题:
# 检查 "Claude Cowork" 是否在 YouTube 上热度上升
node .agent/skills/google-trends/scripts/search.js -k "Claude Cowork" -p youtube -t "now 7-d"
信号: 在相关查询中寻找 BREAKOUT 或值 > 100 的情况。
# "RAG" 在 AI 领域是否仍在流行?
node .agent/skills/google-trends/scripts/search.js -k "RAG AI" -p web -t "today 3-m" --interest
信号: 检查兴趣度随时间变化是正在增加还是已达到峰值。
[TrendProbe] 正在搜索: "Claude AI" 在 YouTube 上(过去 7 天)
--- 相关查询(热门) ---
1. claude ai assistant (100)
2. anthropic claude (81)
3. claude vs chatgpt (45)
--- 相关查询(上升) ---
1. anthropic (BREAKOUT)
2. claude code (450%)
{
"keyword": "Claude AI",
"property": "youtube",
"time": "now 7-d",
"top": [...],
"rising": [...]
}
## Claude AI (YouTube, 7 天)
### 热门查询
1. claude ai assistant (100)
...
-c 参数可获得更广泛的趋势。每周安装次数
81
仓库
GitHub 星标数
18
首次出现
2026年2月5日
安全审计
安装于
codex76
opencode76
gemini-cli74
github-copilot74
kimi-cli71
amp71
Automate Google Trends research without a browser. Query related topics, rising queries, and interest over time for any keyword across YouTube, Web, Images, or News.
Node.js 18+ and PNPM required.
# Check Node
node --version
# Install dependencies (first-time only)
cd .agent/skills/google-trends/scripts
pnpm install
# Basic search (YouTube, Last 7 Days, Tech category)
node .agent/skills/google-trends/scripts/search.js -k "Claude AI"
# Search Web instead of YouTube
node .agent/skills/google-trends/scripts/search.js -k "AI agents" -p web
# Extended time range (1 month)
node .agent/skills/google-trends/scripts/search.js -k "VibeCoding" -t "now 1-m"
# Output as JSON for piping
node .agent/skills/google-trends/scripts/search.js -k "Cursor IDE" -o json
Usage: search.js [options]
Options:
-k, --keyword <string> Topic to search (required)
-p, --property <string> youtube | web | images | news | froogle (default: youtube)
-t, --time <string> now 7-d | now 1-m | today 3-m | today 12-m (default: now 7-d)
-c, --category <number> Google Trends category ID (default: 5 = Tech)
-o, --output <string> table | json | markdown (default: table)
-f, --file <path> Save output to file (optional)
--interest Include interest-over-time data (default: false)
-h, --help Show help
| Value | What It Searches |
|---|---|
youtube | YouTube Search trends |
web | Google Web Search trends |
images | Google Images trends |
news | Google News trends |
froogle | Google Shopping trends |
| Value | Period |
|---|---|
now 7-d | Last 7 days |
now 1-m | Last 30 days |
today 3-m | Last 90 days |
today 12-m | Last 12 months |
| ID | Category |
|---|---|
| 5 | Computers & Electronics (Tech) |
| 13 | Arts & Entertainment |
| 174 | Sports |
| 3 | Business & Industrial |
Full list: Google Trends Categories
Use this skill during /youtube-phase1-strategy to validate topics:
# Check if "Claude Cowork" is rising on YouTube
node .agent/skills/google-trends/scripts/search.js -k "Claude Cowork" -p youtube -t "now 7-d"
Signal: Look for BREAKOUT or values > 100 in related queries.
# Is "RAG" still trending in AI?
node .agent/skills/google-trends/scripts/search.js -k "RAG AI" -p web -t "today 3-m" --interest
Signal: Check if interest-over-time is increasing or peaked.
[TrendProbe] Searching: "Claude AI" on YouTube (Last 7 days)
--- Related Queries (Top) ---
1. claude ai assistant (100)
2. anthropic claude (81)
3. claude vs chatgpt (45)
--- Related Queries (Rising) ---
1. anthropic (BREAKOUT)
2. claude code (450%)
{
"keyword": "Claude AI",
"property": "youtube",
"time": "now 7-d",
"top": [...],
"rising": [...]
}
## Claude AI (YouTube, 7 days)
### Top Queries
1. claude ai assistant (100)
...
-c for broader trends.Weekly Installs
81
Repository
GitHub Stars
18
First Seen
Feb 5, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
codex76
opencode76
gemini-cli74
github-copilot74
kimi-cli71
amp71
Python PDF处理教程:合并拆分、提取文本表格、创建PDF文件
65,000 周安装