首页龙虾技能列表 › Cn Hot Trends — 技能工具

Cn Hot Trends — 技能工具

v1.0.0

聚合中国主流平台热点榜单,获取实时热搜、热议、科技、财经、影视、音乐等多维度热点内容。 当用户询问"今天热搜是什么"、"微博热搜"、"知乎热榜"、"B站热门"、"抖音热点"、 "今日热点"、"热点新闻"、"热门话题"、"各平台热榜"、"热点聚合"等时使用此 skill。 支持按平台查询(微博/百度/知乎/抖音/B...

0· 217·0 当前·0 累计
by @sungang-pine (SunGang-pine)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/17
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
该 skill 的描述、运行指令与所需权限一致——它是一个基于抓取公开页面/接口汇总中国各平台热搜的说明文档,不请求额外凭据或安装组件。
评估建议
What to consider before installing/running: 1) Privacy/credentials: Do NOT supply login cookies, account tokens, or sensitive credentials unless you explicitly trust the skill and understand the consequences. The SKILL.md says some sites can use cookies but does not request them — avoid giving cookies that grant account access. 2) Network context: The skill performs web requests. Those requests will run under whatever network and cookie context the agent uses; run it in an environment where a...
详细分析 ▾
用途与能力
Name/description match the instructions: SKILL.md outlines scraping of many Chinese hot-list pages and JSON endpoints (Weibo, Baidu, Zhihu, B站等). No unrelated binaries, env vars, or installs are requested.
指令范围
Instructions describe performing HTTP requests, parsing HTML/JSON, and include PowerShell examples. They note that some platforms may require cookies or specific User-Agent headers. The instructions do not tell the agent to read local browser cookies or other unrelated files, nor to transmit data to third parties, but running the requests will use whatever network/cookie context the agent/environment has.
安装机制
No install specification and no code files are present (instruction-only). This minimizes disk write/installation risk.
凭证需求
The skill requests no environment variables, credentials, or config paths. It mentions optional cookies for some sites but does not require or request them.
持久化与权限
always is false and the skill is user-invocable; it does not request permanent/always-on privileges or to modify other skills or system settings.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/3/16

Initial release — 聚合中国主流平台实时热点榜单。 - 支持微博、百度、知乎、抖音、B站等多平台热搜榜单内容抓取 - 可按平台(如“微博热搜”)及分类(如“科技热榜”)查询热点 - 默认简报合并微博、百度、知乎热榜内容,去重汇总热点关键词和话题 - 输出格式化热点榜单简报,含平台分榜和关键词摘要 - 支持影视、音乐、财经、技术社区等热点维度 - 自动处理部分平台 Cookie、User-Agent 等访问限制

● 无害

安装命令 点击复制

官方npx clawhub@latest install cn-hot-trends
镜像加速npx clawhub@latest install cn-hot-trends --registry https://cn.clawhub-mirror.com

技能文档

从国内主流平台抓取实时热点,汇总成简报。

核心平台(优先抓取)

🔥 热搜榜

平台URL抓取方式
微博热搜https://weibo.com/ajax/side/hotSearchJSON API
百度热搜https://top.baidu.com/board?tab=realtime抓取 .c-single-text-ellipsis
抖音热点https://www.douyin.com/hot抓取热榜列表
知乎热榜https://www.zhihu.com/billboard抓取 .HotItem-content
贴吧热议http://c.tieba.baidu.com/hottopic/browse/topicList?res_type=1JSON API

📱 社区热议

平台URL
虎扑热帖https://bbs.hupu.com/topic-daily-hot
豆瓣热门讨论https://www.douban.com/group/explore
掘金热榜https://juejin.cn/hot/articles
观察者热评https://user.guancha.cn/main/index?click=24-hot-list

💼 科技财经

平台URL
36Kr热榜https://36kr.com/hot-list/catalog
虎嗅热文https://www.huxiu.com/article/
钛媒体热文https://www.tmtpost.com/hot
雪球财经https://xueqiu.com/

🎬 影视娱乐

平台URL
B站热门视频https://www.bilibili.com/v/popular/rank/all
电影票房榜https://piaofang.maoyan.com/dashboard
豆瓣电影榜https://movie.douban.com/chart
爱奇艺风云榜https://www.iqiyi.com/trending/

🎵 音乐榜

平台URL
QQ音乐流行榜https://y.qq.com/n/yqq/toplist/4.html
网易云飙升榜https://music.163.com/#/discover/toplist

抓取工作流

通用热搜简报(默认)

  • 并发抓取微博热搜 + 百度热搜 + 知乎热榜
  • 每个平台取 Top 10
  • 去重合并,按热度排序
  • 输出格式化简报
# 微博热搜(JSON API,无需登录)
$wb = Invoke-WebRequest -Uri "https://weibo.com/ajax/side/hotSearch" -UseBasicParsing
$data = ($wb.Content | ConvertFrom-Json).data.realtime
$data | Select-Object -First 10 | ForEach-Object { "🔥 $($_.word) [$($_.num)]" }
# 百度实时热搜
$bd = Invoke-WebRequest -Uri "https://top.baidu.com/board?tab=realtime" -UseBasicParsing
# 解析 data-click 属性中的 title 字段
# 知乎热榜(需 User-Agent)
$headers = @{ "User-Agent" = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" }
$zh = Invoke-WebRequest -Uri "https://www.zhihu.com/billboard" -Headers $headers -UseBasicParsing

按分类查询

  • 热搜类:微博 + 百度 + 360 + 搜狗
  • 科技类:36Kr + 虎嗅 + 钛媒体 + 掘金 + CSDN
  • 财经类:雪球 + 36Kr财经 + 凤凰科技
  • 影视类:猫眼票房 + 豆瓣电影 + B站热门
  • 音乐类:QQ音乐 + 网易云 + 酷狗TOP500

输出格式

🔥 热点简报 · [日期 时间]

━━━ 微博热搜 TOP5 ━━━

  • [话题] 🔥[热度]
  • [话题]
...

━━━ 百度热搜 TOP5 ━━━

  • [关键词]
...

━━━ 知乎热榜 TOP5 ━━━

  • [问题标题]
...

📊 今日热点关键词:[词云摘要]

注意事项

  • 部分平台(抖音、微博)需要 Cookie 才能获取完整数据;无 Cookie 时降级抓取公开页面
  • 知乎需要设置 User-Agent,否则返回 403
  • 百度热搜可直接访问 https://top.baidu.com/board?tab=realtime,HTML 中含结构化数据
  • 若某平台抓取失败,跳过并继续其他平台,不中断整体流程
  • 建议每次聚合 3-5 个平台,避免响应过慢
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务