Query trending topics across 54 Chinese platforms including Weibo, Zhihu, Bilibili, and Douyin.
Works with
Supports 54 hot-topic sources spanning social media, news, video platforms, gaming, and tech communities
Automatically saves daily trending data locally with historical record retrieval and statistics
Includes scheduled push notifications to Feishu and configurable cache TTL and result limits
Managed via PM2 for stable background service operation on port 6688
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiondaily-hot-newsExecute the skills CLI command in your project's root directory to begin installation:
Fetches daily-hot-news from one-box-u/openclaw-daily-hot-news and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate daily-hot-news. Access via /daily-hot-news in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
2
total installs
2
this week
8
GitHub stars
0
upvotes
Run in your terminal
2
installs
2
this week
8
stars
提供 54 个热榜源 的本地化查询服务,基于 DailyHotApi 项目。
核心功能:
用户请求 → DailyHotApi Skill → 本地 DailyHotApi 服务 → 返回格式化结果
| 组件 | 职责 |
|---|---|
| DailyHotApi 服务 | 独立运行,抓取/聚合热榜数据 |
| DailyHotApi Skill | OpenClaw 插件,处理用户请求 |
| 接口 | 名称 |
|---|---|
| bilibili | 哔哩哔哩 |
| acfun | AcFun |
| douyin | 抖音 |
| kuaishou | 快手 |
| coolapk | 酷安 |
| 接口 | 名称 |
|---|---|
| 微博 | |
| zhihu | 知乎 |
| zhihu-daily | 知乎日报 |
| tieba | 百度贴吧 |
| douban-group | 豆瓣讨论小组 |
| v2ex | V2EX |
| ngabbs | NGA |
| hupu | 虎扑 |
| 接口 | 名称 |
|---|---|
| baidu | 百度热搜 |
| thepaper | 澎湃新闻 |
| toutiao | 今日头条 |
| 36kr | 36氪 |
| qq-news | 腾讯新闻 |
| sina | 新浪网 |
| sina-news | 新浪新闻 |
| netease-news | 网易新闻 |
| huxiu | 虎嗅 |
| ifanr | 爱范儿 |
| 接口 | 名称 |
|---|---|
| ithome | IT之家 |
| ithome-xijiayi | IT之家「喜加一」 |
| sspai | 少数派 |
| csdn | CSDN |
| juejin | 稀土掘金 |
| 51cto | 51CTO |
| nodeseek | NodeSeek |
| hellogithub | HelloGitHub |
| 接口 | 名称 |
|---|---|
| genshin | 原神 |
| miyoushe | 米游社 |
| honkai | 崩坏3 |
| starrail | 崩坏:星穹铁道 |
| lol | 英雄联盟 |
| 接口 | 名称 |
|---|---|
| jianshu | 简书 |
| guokr | 果壳 |
| weread | 微信读书 |
| douban-movie | 豆瓣电影 |
| 接口 | 名称 |
|---|---|
| 52pojie | 吾爱破解 |
| hostloc | 全球主机交流 |
| weatheralarm | 中央气象台 |
| earthquake | 中国地震台 |
| history | 历史上的今天 |
DailyHotApi 服务使用 PM2 管理,确保稳定运行。
cd /root/.openclaw/workspace/skills/daily-hot-api
# 部署并启动服务
./deploy.sh
# 查看状态
./deploy.sh status
# 重启服务
./deploy.sh restart
# 停止服务
./deploy.sh stop
# 查看日志
./deploy.sh logs
服务地址: http://localhost:6688
export DAILY_HOT_API_URL=http://localhost:6688
cd /root/.openclaw/workspace/skills/daily-hot-news
pip install requests aiohttp
用户: 微博热搜
Skill: 调用 /weibo → 返回 Top 10 热榜
用户: 有什么热榜
Skill: 返回 54 个热榜源列表
用户: 微博历史
Skill: 显示之前保存的微博热榜记录
用户: 已保存了哪些数据
Skill: 返回所有已保存的热榜数据统计
用户: 每天早上8点推送B站热门
Skill: 设置 cron 任务 → 每日调用 /bilibili → 推送到飞书
所有热榜数据保存在:
/root/.openclaw/workspace/skills/daily-hot-news/data/
data/
├── weibo/
│ ├── 2026-02-05.json
│ └── 2026-02-04.json
├── zhihu/
│ └── 2026-02-05.json
└── ...
| 环境变量 | 默认值 | 说明 |
|---|---|---|
DAILY_HOT_DATA_DIR |
data/ | 数据存储目录 |
DAILY_HOT_AUTO_SAVE |
true | 是否自动保存热榜数据 |
# 查看已保存的数据统计
python3 storage.py
# 清理 30 天前的旧数据
python3 storage.py --clear 30
{
"platform": "微博",
"updateTime": "2026-02-05 17:00:00",
"data": [
{
"rank": 1,
"title": "热搜标题",
"hot": "1234万",
"url": "https://..."
}
]
}
| 环境变量 | 默认值 | 说明 |
|---|---|---|
DAILY_HOT_API_URL |
http://localhost:6688 | DailyHotApi 服务地址 |
DAILY_HOT_CACHE_TTL |
3600 | 缓存时间(秒) |
DAILY_HOT_MAX_ITEMS |
20 | 返回最大条数 |
| 组件 | 内存 | CPU |
|---|---|---|
| DailyHotApi 服务 | ~200MB | 极低 |
| DailyHotApi Skill | <10MB | 可忽略 |
总计: <250MB,对服务器无压力
# 检查 PM2 状态
./deploy.sh status
# 查看日志
./deploy.sh logs
# 重启服务
./deploy.sh restart
daily-hot-news/
├── SKILL.md # 本说明书
├── daily_hot_news.py # 核心 Skill 脚本
├── api_client.py # API 客户端封装
├── formatter.py # 响应格式化
├── config.py # 配置管理
├── storage.py # 数据存储模块
├── data/ # 热榜数据存储目录
├── README.md # 快速开始
└── requirements.txt # 依赖列表
v1.1.0 (2026-02-05)
v1.0.0 (2026-02-05)
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
davila7/claude-code-templates
intellectronica/agent-skills
am-will/codex-skills
sickn33/antigravity-awesome-skills
myzy-ai/dokie-ai-ppt
sickn33/antigravity-awesome-skills
Solid pick for teams standardizing on skills: daily-hot-news is focused, and the summary matches what you get after install.
We added daily-hot-news from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
We added daily-hot-news from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
daily-hot-news is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
daily-hot-news fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
daily-hot-news fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
daily-hot-news is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Registry listing for daily-hot-news matched our evaluation — installs cleanly and behaves as described in the markdown.
daily-hot-news fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
daily-hot-news is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 26