Trend Radar
Real-time trending topics radar — 7 platforms, zero API keys, zero dependencies.
Trigger Rules
Use this skill when the user's message matches ANY of the following:
| Pattern | Example |
|---|
Contains trend / INLINECODE1 | "show me trends", "trend pulse" |
Contains trending / INLINECODE3 |
"what's trending today" |
| Contains
热点 /
热搜 /
热榜 | "今天有什么热点", "看看热搜" |
| Asks about a specific platform's hot topics | "reddit hot", "微博热搜", "HN top", "知乎热榜", "B站热门" |
| Asks about current events broadly | "what's happening", "最近有什么新闻" |
Do NOT fall back to web_search or Brave Search. This skill fetches live data directly from 7 platform APIs.
Interaction Flow (Progressive Disclosure)
Turn 1 — Overview (ALWAYS start here)
CODEBLOCK0
This fetches the #1 topic from each platform concurrently (~5s). Present the result and append:
"Which platform would you like to expand? Say the name (e.g. 'reddit', '微博', 'hackernews') or 'all' for everything."
Do NOT expand all platforms in Turn 1. When presenting expanded results, always preserve the Markdown links [title](url) from the output — users need clickable links.
Turn 2 — Expand on demand
When user picks a platform:
CODEBLOCK1
Source IDs: twitter, reddit, google, hackernews, zhihu, bilibili, INLINECODE14
Multiple platforms:
CODEBLOCK2
Expand all:
CODEBLOCK3
Turn 3+ — Deep dive (optional)
If user wants details on a specific topic, use your LLM knowledge or web_search on that specific topic.
Additional Options
Region filter (twitter & google only)
CODEBLOCK4
JSON output
CODEBLOCK5
Scheduled daily briefing
CODEBLOCK6
Platforms
| ID | Platform | Content | Lang |
|---|
| INLINECODE15 | X/Twitter | Hashtags & topics | Global |
| INLINECODE16 |
Reddit | Hot posts | EN |
|
google | Google Trends | Search trends | Global |
|
hackernews | Hacker News | Tech news | EN |
|
zhihu | 知乎 | Hot Q&A | ZH |
|
bilibili | Bilibili | Hot videos | ZH |
|
weibo | 微博 | Hot search | ZH |
趋势雷达
实时热门话题雷达 — 覆盖7个平台,无需API密钥,零依赖。
触发规则
当用户消息匹配以下任意条件时使用此技能:
| 模式 | 示例 |
|---|
| 包含 trend / trends | show me trends, trend pulse |
| 包含 trending / whats hot |
whats trending today |
| 包含 热点 / 热搜 / 热榜 | 今天有什么热点, 看看热搜 |
| 询问特定平台的热门话题 | reddit hot, 微博热搜, HN top, 知乎热榜, B站热门 |
| 广泛询问当前事件 | whats happening, 最近有什么新闻 |
不要回退到web_search或Brave Search。 此技能直接从7个平台API获取实时数据。
交互流程(渐进式信息展示)
第一轮 — 概览(始终从此处开始)
bash
python3 {baseDir}/scripts/trends.py --mode overview
此命令并发获取每个平台排名第一的话题(约5秒)。展示结果并附加:
您想展开哪个平台?说出名称(例如 reddit、微博、hackernews)或输入 all 查看全部。
不要在首轮展开所有平台。 展示展开结果时,始终保留输出中的Markdown链接 标题 —— 用户需要可点击的链接。
第二轮 — 按需展开
当用户选择平台时:
bash
python3 {baseDir}/scripts/trends.py --source --top 10
来源ID:twitter、reddit、google、hackernews、zhihu、bilibili、weibo
多个平台:
bash
python3 {baseDir}/scripts/trends.py --source zhihu,weibo,bilibili --top 5
展开全部:
bash
python3 {baseDir}/scripts/trends.py --mode all --top 5
第三轮及以后 — 深入探索(可选)
如果用户想了解某个具体话题的详细信息,请使用您的LLM知识或对该特定话题进行web_search。
附加选项
地区筛选(仅限twitter和google)
bash
python3 {baseDir}/scripts/trends.py --source twitter --region japan --top 10
python3 {baseDir}/scripts/trends.py --source google --region CN --top 10
JSON输出
bash
python3 {baseDir}/scripts/trends.py --mode overview --json
定时每日简报
bash
python3 {baseDir}/scripts/scheduler.py --set 0 11
*
python3 {baseDir}/scripts/scheduler.py --list
python3 {baseDir}/scripts/scheduler.py --remove
平台
| ID | 平台 | 内容 | 语言 |
|---|
| twitter | X/Twitter | 话题标签与话题 | 全球 |
| reddit |
Reddit | 热门帖子 | 英文 |
| google | Google Trends | 搜索趋势 | 全球 |
| hackernews | Hacker News | 科技新闻 | 英文 |
| zhihu | 知乎 | 热门问答 | 中文 |
| bilibili | Bilibili | 热门视频 | 中文 |
| weibo | 微博 | 热搜 | 中文 |