← Back to Skills Marketplace
allinherog-star

抖音热点上升榜

by allinherog-star · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
123
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install douyin-realtime-hot-rise
Description
当用户在抖音上寻找正在走红的视频、涨粉最快的话题、实时飙升榜单、新晋爆款内容,或想了解"哪些视频在抖音火起来了"、"最近抖音流行什么"时,使用此技能。此技能专用于抖音内容热度上升趋势分析,不适用于微博热搜、快手热点、达人搜索、视频播放量统计或情感分析等其他场景。
README (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 变化幅度大的热点用 🔥 或 ⚡ 标注
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install douyin-realtime-hot-rise
  3. After installation, invoke the skill by name or use /douyin-realtime-hot-rise
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
当用户在抖音上寻找正在走红的视频、涨粉最快的话题、实时飙升榜单、新晋爆款内容,或想了解"哪些视频在抖音火起来了"、"最近抖音流行什么"时,使用此技能。此技能专用于抖音内容热度上升趋势分析,不适用于微博热搜、快手热点、达人搜索、视频播放量统计或情感分析等其他场景。
Metadata
Slug douyin-realtime-hot-rise
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 抖音热点上升榜?

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

How do I install 抖音热点上升榜?

Run "/install douyin-realtime-hot-rise" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 抖音热点上升榜 free?

Yes, 抖音热点上升榜 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 抖音热点上升榜 support?

抖音热点上升榜 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 抖音热点上升榜?

It is built and maintained by allinherog-star (@allinherog-star); the current version is v1.0.0.

💬 Comments