google-trends
Original:🇺🇸 English
Translated
1 scripts
Automated Google Trends research via Node.js CLI. Search YouTube, Web, Images, News for rising/breakout queries. Use for Phase 1 Strategy research or any topic validation.
4installs
Added on
NPX Install
npx skill4agent add jstarfilms/vibecode-protocol-suite google-trendsTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Google Trends Skill
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.
Prerequisites
Node.js 18+ and PNPM required.
powershell
# Check Node
node --version
# Install dependencies (first-time only)
cd ~/.gemini/antigravity/skills/google-trends/scripts
pnpm installQuick Start
powershell
# Basic search (YouTube, Last 7 Days, Tech category)
node ~/.gemini/antigravity/skills/google-trends/scripts/search.js -k "Claude AI"
# Search Web instead of YouTube
node ~/.gemini/antigravity/skills/google-trends/scripts/search.js -k "AI agents" -p web
# Extended time range (1 month)
node ~/.gemini/antigravity/skills/google-trends/scripts/search.js -k "VibeCoding" -t "now 1-m"
# Output as JSON for piping
node ~/.gemini/antigravity/skills/google-trends/scripts/search.js -k "Cursor IDE" -o jsonCLI Reference
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 helpProperty Options
| Value | What It Searches |
|---|---|
| YouTube Search trends |
| Google Web Search trends |
| Google Images trends |
| Google News trends |
| Google Shopping trends |
Time Options
| Value | Period |
|---|---|
| Last 7 days |
| Last 30 days |
| Last 90 days |
| Last 12 months |
Category IDs (Common)
| ID | Category |
|---|---|
| 5 | Computers & Electronics (Tech) |
| 13 | Arts & Entertainment |
| 174 | Sports |
| 3 | Business & Industrial |
Full list: Google Trends Categories
Example Workflows
YouTube Phase 1 Research
Use this skill during to validate topics:
/youtube-phase1-strategypowershell
# Check if "Claude Cowork" is rising on YouTube
node ~/.gemini/antigravity/skills/google-trends/scripts/search.js -k "Claude Cowork" -p youtube -t "now 7-d"Signal: Look for or values > 100 in related queries.
BREAKOUTGeneral Topic Validation
powershell
# Is "RAG" still trending in AI?
node ~/.gemini/antigravity/skills/google-trends/scripts/search.js -k "RAG AI" -p web -t "today 3-m" --interestSignal: Check if interest-over-time is increasing or peaked.
Output Formats
Table (Default)
[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%)JSON
json
{
"keyword": "Claude AI",
"property": "youtube",
"time": "now 7-d",
"top": [...],
"rising": [...]
}Markdown
markdown
## Claude AI (YouTube, 7 days)
### Top Queries
1. claude ai assistant (100)
...Tips
- BREAKOUT = Gold. A "BREAKOUT" query has grown > 5000% — this is a proven opportunity.
- Cross-validate. Use with YouTube Studio Trends and Competitor VidIQ for 3-source validation.
- Try multiple keywords. "Claude AI" vs "Claude Cowork" vs "Anthropic Claude" may reveal different signals.
- Category matters. Category 5 (Tech) gives tech-focused results; omit for broader trends.
-c