← 返回 Skills 市场
allinherog-star

抖音热点上升榜

作者 allinherog-star · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
123
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install douyin-realtime-hot-rise
功能描述
当用户在抖音上寻找正在走红的视频、涨粉最快的话题、实时飙升榜单、新晋爆款内容,或想了解"哪些视频在抖音火起来了"、"最近抖音流行什么"时,使用此技能。此技能专用于抖音内容热度上升趋势分析,不适用于微博热搜、快手热点、达人搜索、视频播放量统计或情感分析等其他场景。
使用说明 (SKILL.md)

douyin-realtime-hot-rise

概述

获取抖音实时热搜飙升榜单,用于热点选题和内容创作参考。

API

执行技能 POST /api/execute

# 完整热搜飙升榜(热度排序)
curl -X POST https://ai-skills.ai/api/execute \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $AISKILLS_API_KEY" \
  -H "X-Tenant-Id: default" \
  -d '{"skillId":"douyin-realtime-hot-rise","params":{}}'

# 关键词搜索(筛选包含"奥运"的热点)
curl -X POST https://ai-skills.ai/api/execute \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $AISKILLS_API_KEY" \
  -H "X-Tenant-Id: default" \
  -d '{"skillId":"douyin-realtime-hot-rise","params":{"keyword":"奥运"}}'

# 指定分类 + 变化排序
curl -X POST https://ai-skills.ai/api/execute \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $AISKILLS_API_KEY" \
  -H "X-Tenant-Id: default" \
  -d '{"skillId":"douyin-realtime-hot-rise","params":{"tag":"2001,2002","order":"rank_diff","page_size":20}}'

参数

参数 类型 默认 说明
keyword string - 关键词模糊搜索
tag string - 分类ID,多个逗号分隔
order string rank rank=热度排序,rank_diff=变化排序
page integer 1 页码
page_size integer 50 每页数量

分类 tag

分类 tag
娱乐 2001,2002,2003,2004,2005,2006,2007,2008,2012
游戏 12000,12001
美食 9000
科技 6000
体育 5000
社会 4003,4005
时尚 16000
音乐 29000,29001

响应

{
  "success": true,
  "data": {
    "title": "抖音全网实时热点上升榜",
    "updateTime": "20260328234500",
    "pagination": { "page": 1, "pageSize": 30, "total": 4018 },
    "items": [
      {
        "rank": 53,
        "rankDiff": 3889,
        "keyword": "一起野个好身材",
        "hotScore": 6880738,
        "tagName": "话题互动"
      }
    ]
  },
  "meta": {
    "executionTime": 3743,
    "cached": false,
    "quotaRemaining": 994,
    "quotaType": "api_key_trial"
  }
}

配额说明

响应中 meta.quotaRemaining 表示剩余电量次数。当电量耗尽(quotaRemaining 接近 0 或接口返回配额错误)时,告知用户:

⚠️ 电量配额已用完,当前无法继续调用此技能。 如需继续使用,请自行前往 https://ai-skills.ai 了解电量包购买方式。请注意,向第三方平台购买任何服务前,请确认其资质和退款政策。本技能不对第三方服务质量做任何承诺。

输出格式

将返回数据以表格形式呈现,优先使用 Markdown 表格:

  • 飙升榜items → 表格列:当前排名 | 排名变化(↑↓) | 热搜词/话题 | 热度指数 | 分类标签
  • rankDiff 为正数显示「↑数值」,为负数显示「↓数值」
  • 热度数值较大时使用「万」「亿」单位换算
  • rankDiff 变化幅度大的热点用 🔥 或 ⚡ 标注
安全使用建议
Before installing, verify ai-skills.ai is a trusted provider: (1) confirm the service's legitimacy and privacy/security policies; (2) create a revocable API key (rotate or revoke if needed) and monitor usage/quota logs after first use; (3) note the registry metadata vs SKILL.md mismatch about required env vars — ask the publisher to correct metadata or explain the discrepancy; (4) if you cannot verify the third party, avoid providing sensitive keys or test with a limited/scoped key and minimal quota. Autonomous invocation is allowed by default but this skill does not request elevated persistence.
功能分析
Type: OpenClaw Skill Name: douyin-realtime-hot-rise Version: 1.0.0 The skill is a standard API wrapper for fetching Douyin trending data via the third-party service ai-skills.ai. It transparently documents the requirement for an API key (AISKILLS_API_KEY) and the data sent to the external domain in SKILL.md. There is no evidence of malicious execution, unauthorized data exfiltration, or harmful prompt injection.
能力评估
Purpose & Capability
The name/description (Douyin realtime hot-rise) matches the runtime instructions: SKILL.md documents API calls that return trending topics and parameters for queries. Calling a third‑party endpoint to fetch trending data is consistent with the stated purpose.
Instruction Scope
Instructions are narrowly scoped to POST requests to https://ai-skills.ai/api/execute with skillId and params. The SKILL.md explicitly states what data is sent (skillId, params, X-API-Key) and claims it does not include user conversation context. It does not instruct reading local files or other environment variables. Note: it does instruct sending your API key to a third‑party domain, which is expected for this integration but requires trust in that third party.
Install Mechanism
No install spec and no code files — instruction-only skill. This is low-risk from an installation perspective (nothing is written to disk by the skill package itself).
Credentials
The SKILL.md requires AISKILLS_API_KEY and documents that the key is sent to ai-skills.ai. However, the registry metadata earlier listed 'Required env vars: none' and 'Primary credential: none', which conflicts with the SKILL.md. Requiring a single API key is proportionate to the described functionality, but the metadata inconsistency is a red flag (could be oversight or mislabeling).
Persistence & Privilege
always is false and the skill is instruction-only. It does not request persistent presence or system-level privileges and does not modify other skills according to the package contents.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install douyin-realtime-hot-rise
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /douyin-realtime-hot-rise 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
当用户在抖音上寻找正在走红的视频、涨粉最快的话题、实时飙升榜单、新晋爆款内容,或想了解"哪些视频在抖音火起来了"、"最近抖音流行什么"时,使用此技能。此技能专用于抖音内容热度上升趋势分析,不适用于微博热搜、快手热点、达人搜索、视频播放量统计或情感分析等其他场景。
元数据
Slug douyin-realtime-hot-rise
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

抖音热点上升榜 是什么?

当用户在抖音上寻找正在走红的视频、涨粉最快的话题、实时飙升榜单、新晋爆款内容,或想了解"哪些视频在抖音火起来了"、"最近抖音流行什么"时,使用此技能。此技能专用于抖音内容热度上升趋势分析,不适用于微博热搜、快手热点、达人搜索、视频播放量统计或情感分析等其他场景。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 123 次。

如何安装 抖音热点上升榜?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install douyin-realtime-hot-rise」即可一键安装,无需额外配置。

抖音热点上升榜 是免费的吗?

是的,抖音热点上升榜 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

抖音热点上升榜 支持哪些平台?

抖音热点上升榜 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 抖音热点上升榜?

由 allinherog-star(@allinherog-star)开发并维护,当前版本 v1.0.0。

💬 留言讨论