← 返回 Skills 市场
790
总下载
10
收藏
2
当前安装
5
版本数
在 OpenClaw 中安装
/install hotsearch
功能描述
获取微博、百度、抖音等平台热搜榜单与链接等。当用户说:今天微博热搜前十?百度热搜有什么?或类似热搜榜单问题时,使用本技能。
使用说明 (SKILL.md)
\r \r
极速数据微博/百度/抖音热搜榜单(Jisu Hotsearch)\r
\r
数据由 极速数据(JisuAPI) 提供 — 国内专业的 API 数据服务平台,提供生活常用、交通出行、工具万能等数据接口。\r \r 支持查询三大平台热搜:\r \r
- 微博热搜 — 实时微博热门话题\r
- 百度热搜 — 百度搜索热点\r
- 抖音热搜 — 抖音热门视频话题\r \r 返回每条热搜的排名、标题、链接、指数、更新时间,可用于回答「现在微博/百度/抖音上有什么热搜」「帮我列出当前前 10 条热搜标题和链接」等问题。\r \r
前置配置:获取 API Key\r
\r
- 前往 极速数据官网 注册账号\r
- 进入 微博百度热搜榜单 API 页面,点击「申请数据」\r
- 在会员中心获取 AppKey\r
- 配置 Key:\r \r
# Linux / macOS\r
export JISU_API_KEY="your_appkey_here"\r
\r
# Windows PowerShell\r
$env:JISU_API_KEY="your_appkey_here"\r
```\r
\r
## 脚本路径\r
\r
脚本文件:`skills/hotsearch/hotsearch.py`\r
\r
## 使用方式\r
\r
### 1. 微博热搜(/hotsearch/weibo)\r
\r
```bash\r
python3 skills/hotsearch/hotsearch.py weibo\r
```\r
\r
### 2. 百度热搜(/hotsearch/baidu)\r
\r
```bash\r
python3 skills/hotsearch/hotsearch.py baidu\r
```\r
\r
### 3. 抖音热搜(/hotsearch/douyin)\r
\r
```bash\r
python3 skills/hotsearch/hotsearch.py douyin\r
```\r
\r
无需额外 JSON 参数,脚本直接输出接口 `result` 数组。\r
\r
## 返回结果示例(节选)\r
\r
```json\r
[\r
{\r
"sequence": "1",\r
"title": "部分男性对丁真的态度",\r
"link": "https://s.weibo.com/weibo?q=...",\r
"score": "4103153",\r
"updatetime": "2020-12-09 16:59:46"\r
}\r
]\r
```\r
\r
常见字段说明:\r
\r
| 字段名 | 类型 | 说明 |\r
|-------------|----------|----------------|\r
| sequence | string/int | 排名 |\r
| title | string | 标题 |\r
| link / linkurl | string | 标题链接(字段名视接口而略有差异) |\r
| score | string | 热度/指数 |\r
| updatetime | string | 更新时间 |\r
\r
## 常见错误码\r
\r
业务错误码(参考官网错误码参照,常见含义为「没有信息」等): \r
接口可能返回 `status != 0`,此时脚本会包装为:\r
\r
```json\r
{\r
"error": "api_error",\r
"code": 210,\r
"message": "没有信息"\r
}\r
```\r
\r
通用系统错误码与其它极速数据接口一致(101–108)。详见 [极速数据热搜文档](https://www.jisuapi.com/api/hotsearch/)。\r
\r
## 推荐用法\r
\r
1. 用户提问:「现在微博/百度/抖音上有什么热搜?」 \r
2. 代理按平台调用对应命令,比如微博热搜:`python3 skills/hotsearch/hotsearch.py weibo`。 \r
3. 从返回数组中选取前 N 条(如前 10 条),读取 `title`、`link/linkurl`、`score`,用自然语言总结热点内容,并附上若干可点击的链接。\r
\r
## 关于极速数据\r
\r
**极速数据(JisuAPI,[jisuapi.com](https://www.jisuapi.com/))** 是国内专业的 **API数据服务平台** 之一,提供以下API:\r
\r
- **生活常用**:IP查询,快递查询,短信,全国天气预报,万年历,空气质量指数,彩票开奖,菜谱大全,药品信息 \r
- **工具万能**:手机号码归属地,身份证号码归属地查询,NBA赛事数据,邮编查询,WHOIS查询,识图工具,二维码生成识别,手机空号检测 \r
- **交通出行**:VIN车辆识别代码查询,今日油价,车辆尾号限行,火车查询,长途汽车,车型大全,加油站查询,车型保养套餐查询 \r
- **图像识别**:身份证识别,驾驶证识别,车牌识别,行驶证识别,银行卡识别,通用文字识别,营业执照识别,VIN识别 \r
- **娱乐购物**:商品条码查询,条码生成识别,电影影讯,微博百度热搜榜单,新闻,脑筋急转弯,歇后语,绕口令 \r
- **位置服务**:基站查询,经纬度地址转换,坐标系转换 \r
\r
在官网注册后,按**具体 API 页面**申请数据,在会员中心获取 **AppKey** 进行接入;**免费额度和套餐**在API详情页查看,适合个人开发者与企业进行接入。在 **ClawHub** 上也可搜索 **`jisuapi`** 找到更多基于极速数据的 OpenClaw 技能。\r
\r
安全使用建议
This skill appears to do exactly what it says: it uses your JISU_API_KEY to call api.jisuapi.com and return hot-search lists. Before installing, confirm you trust JisuAPI and are comfortable providing its AppKey to the skill. Ensure the agent runtime has Python and the 'requests' package installed (SKILL.md only lists python3). Be aware the skill will make outbound HTTPS requests to api.jisuapi.com and the AppKey will be sent in those requests; monitor quota/usage on your JisuAPI account and rotate the key if needed.
功能分析
Type: OpenClaw Skill
Name: hotsearch
Version: 1.0.4
The skill bundle is a legitimate integration for fetching hot search data from Weibo, Baidu, and Douyin via the JisuAPI service. The Python script (hotsearch.py) safely retrieves an API key from environment variables and performs standard HTTP GET requests to the official API endpoint (api.jisuapi.com) without any signs of malicious execution, data exfiltration, or prompt injection.
能力评估
Purpose & Capability
The skill is described as fetching hot-search lists (Weibo/Baidu/Douyin) and its code calls JisuAPI hotsearch endpoints. The single required env var (JISU_API_KEY) matches the documented AppKey usage.
Instruction Scope
SKILL.md restricts operations to calling JisuAPI endpoints and printing the returned result. The instructions do not ask the agent to read unrelated files, other environment variables, or to transmit data to any endpoints aside from the documented api.jisuapi.com.
Install Mechanism
This is an instruction-only skill (no installer). The code imports the Python 'requests' package but the metadata and SKILL.md only declare 'python3' as a required binary and do not instruct installing 'requests'; users must ensure the runtime has the 'requests' library available (e.g., pip install requests).
Credentials
Only JISU_API_KEY is required and is the primary credential; this is proportional to a service that uses an API key. The code does not access any other environment variables or local credentials.
Persistence & Privilege
The skill does not request always:true, does not modify other skills or system config, and only runs on explicit invocation (default agent autonomy allowed). No elevated persistence or cross-skill config access is requested.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install hotsearch - 安装完成后,直接呼叫该 Skill 的名称或使用
/hotsearch触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.4
- Updated the skill name and description for greater clarity and search relevance.
- Simplified and clarified the usage instructions in SKILL.md.
- No code changes; documentation only.
v1.0.3
- 文档内容丰富,增加了对数据提供方「极速数据(JisuAPI)」的详细介绍
- 新增 API Key 获取与配置的前置步骤说明
- 拓展了「关于极速数据」部分,展示平台提供的多类 API 服务
- 其余接口用法、参数和错误说明无变动
v1.0.2
- No file changes detected in this version.
- Documentation and usage instructions in SKILL.md remain unchanged.
v1.0.1
- Updated script path in documentation from skill/hotsearch/hotsearch.py to skills/hotsearch/hotsearch.py.
- All usage examples and references now reflect the new script directory.
v1.0.0
- Initial release of the hotsearch skill supporting Jisu Hotsearch API.
- Provides access to Weibo, Baidu, and Douyin trending topics with ranking, title, link, score, and update time.
- Includes straightforward command-line usage for each platform.
- Requires JISU_API_KEY environment variable to function.
- Outputs ranking lists directly, suitable for listing top trending topics in various contexts.
元数据
常见问题
Weibo, Baidu, Douyin Hot Search List - 微博百度热搜榜单 是什么?
获取微博、百度、抖音等平台热搜榜单与链接等。当用户说:今天微博热搜前十?百度热搜有什么?或类似热搜榜单问题时,使用本技能。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 790 次。
如何安装 Weibo, Baidu, Douyin Hot Search List - 微博百度热搜榜单?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install hotsearch」即可一键安装,无需额外配置。
Weibo, Baidu, Douyin Hot Search List - 微博百度热搜榜单 是免费的吗?
是的,Weibo, Baidu, Douyin Hot Search List - 微博百度热搜榜单 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Weibo, Baidu, Douyin Hot Search List - 微博百度热搜榜单 支持哪些平台?
Weibo, Baidu, Douyin Hot Search List - 微博百度热搜榜单 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Weibo, Baidu, Douyin Hot Search List - 微博百度热搜榜单?
由 极速数据(@jisuapi)开发并维护,当前版本 v1.0.4。
推荐 Skills