← Back to Skills Marketplace
allinherog-star

快手评论分析

by allinherog-star · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
126
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install kuaishou-sentiment-dashboard
Description
快手视频评论情感分析。分析快手评论区是正评多还是负评多,观众对视频的态度是喜欢还是讨厌,整体口碑和舆情如何。提供情感倾向、正负面比例、情绪关键词和受众洞察。
README (SKILL.md)

kuaishou-sentiment-dashboard

概述

对快手短视频评论区进行 AI 情感分析,生成舆情洞察报告。

工作流(三步)

Step 1 — 解析链接(公开,无需认证)

curl -X POST https://ai-skills.ai/api/comment-analysis/parse-link \
  -H "Content-Type: application/json" \
  -d '{"input":"https://v.kuaishou.com/xxxxx"}'

Step 2 — 创建分析任务

curl -X POST https://ai-skills.ai/api/comment-analysis/tasks \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $AISKILLS_API_KEY" \
  -H "X-Tenant-Id: default" \
  -d '{"platform":"kuaishou","contentId":"$CONTENT_ID"}'

Step 3 — 轮询任务状态

curl https://ai-skills.ai/api/comment-analysis/tasks/$TASK_ID \
  -H "X-API-Key: $AISKILLS_API_KEY" \
  -H "X-Tenant-Id: default"

一键脚本

#!/bin/bash
LINK="https://v.kuaishou.com/xxxxx"

CONTENT_ID=$(curl -s -X POST https://ai-skills.ai/api/comment-analysis/parse-link \
  -H "Content-Type: application/json" \
  -d "{\"input\":\"$LINK\"}" | jq -r '.data.contentId')

TASK=$(curl -s -X POST https://ai-skills.ai/api/comment-analysis/tasks \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $AISKILLS_API_KEY" \
  -H "X-Tenant-Id: default" \
  -d "{\"platform\":\"kuaishou\",\"contentId\":\"$CONTENT_ID\"}")
TASK_ID=$(echo $TASK | jq -r '.data.taskId')

while true; do
  STATUS=$(curl -s https://ai-skills.ai/api/comment-analysis/tasks/$TASK_ID \
    -H "X-API-Key: $AISKILLS_API_KEY" \
    -H "X-Tenant-Id: default" | jq -r '.data.status')
  [ "$STATUS" = "completed" ] && break
  sleep 3
done

curl -s https://ai-skills.ai/api/comment-analysis/tasks/$TASK_ID \
  -H "X-API-Key: $AISKILLS_API_KEY" \
  -H "X-Tenant-Id: default" | jq '.data.result'

分析结果结构

{
  "platform": "kuaishou",
  "contentId": "3xqh7w8f9v2",
  "videoTitle": "视频标题",
  "analyzeTime": "2026-03-28T12:00:00Z",
  "sentiment": {
    "positive": { "count": 120, "percentage": 60 },
    "neutral": { "count": 50, "percentage": 25 },
    "negative": { "count": 30, "percentage": 15 }
  },
  "keywords": ["接地气", "真实", "支持"],
  "topEmotions": [
    { "emotion": "认可", "count": 70 },
    { "emotion": "喜爱", "count": 50 }
  ],
  "insights": "评论区整体情感偏正面,用户对内容真实感认可度高..."
}

配额说明

Step 2 和 Step 3 使用认证接口,若返回配额不足错误,告知用户:

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

输出格式

将分析结果以结构化表格形式呈现:

  • 情感分布:表格列:情感类别 | 评论数 | 占比;正面用绿色标识,负面用红色标识
  • 情绪关键词:列表展示 keywords,按热度/频次排列
  • Top 情绪:表格列:情绪词 | 出现次数
  • 舆情洞察insights 以段落文字呈现,综合评价视频口碑
  • 整体情感判断:偏正面 / 偏负面 / 中性,给出简要总结
Usage Guidance
This skill delegates analysis to a third-party service (ai-skills.ai) and will send the user-supplied video link and your AISKILLS_API_KEY to that domain. Before installing: (1) Confirm you trust ai-skills.ai (privacy policy, data retention, and security practices). (2) Fix or confirm the registry metadata mismatch — SKILL.md requires AISKILLS_API_KEY even though metadata omitted it. (3) Use a revocable / limited-scope API key and monitor its usage; consider creating a dedicated key/account for this skill. (4) Do not send private or sensitive video URLs (or any PII) unless you’re sure the third party’s policies and controls meet your needs. (5) If you see unexpected network activity or charges, revoke the API key immediately. If you need stronger assurance, request the skill author to provide official homepage, contact, and independent audits for ai-skills.ai before use.
Capability Analysis
Type: OpenClaw Skill Name: kuaishou-sentiment-dashboard Version: 1.0.0 The skill provides sentiment analysis for Kuaishou videos via a third-party API (ai-skills.ai). While the functionality is transparently documented, the bash script provided in SKILL.md contains a shell injection vulnerability; it embeds variables like $CONTENT_ID and $TASK_ID (retrieved from the API) directly into subsequent curl commands using double quotes. If the remote API returns a malicious payload (e.g., containing shell metacharacters or command substitution), it could lead to arbitrary command execution on the agent's host.
Capability Assessment
Purpose & Capability
Skill name and description (Kuaishou comment sentiment analysis) match the runtime instructions: it calls ai-skills.ai endpoints to parse a Kuaishou link and run an analysis task. However, the registry metadata provided with the skill lists no required environment variables or primary credential, while SKILL.md clearly declares and uses AISKILLS_API_KEY. This metadata mismatch is an administrative inconsistency you should resolve before trusting the package metadata.
Instruction Scope
SKILL.md instructs the agent to POST the user-supplied video link to ai-skills.ai (parse-link) and to create/poll analysis tasks using X-API-Key. All network calls are limited to ai-skills.ai and are consistent with the advertised functionality. The instructions do explicitly transmit the user's video URL and the API key to a third party — there are no other file reads, arbitrary shell execution, or references to unrelated system paths.
Install Mechanism
This is an instruction-only skill with no install spec and no code files. That minimizes risk from arbitrary code installs or extracted archives.
Credentials
The skill requires a single third-party API key (AISKILLS_API_KEY) which is exactly what the described HTTP calls need. However, the registry metadata did not declare this required credential (contradiction). Also note the API key will be sent in requests to ai-skills.ai (SKILL.md documents this). Requiring one API key is proportionate, but sending user data and a credential to a third party is a privacy/credential-exposure concern you must accept explicitly.
Persistence & Privilege
The skill does not request always:true, does not install persistent components, and does not modify other skills or system-wide configs. It runs only via HTTP calls described in SKILL.md.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install kuaishou-sentiment-dashboard
  3. After installation, invoke the skill by name or use /kuaishou-sentiment-dashboard
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
快手视频评论情感分析。分析快手评论区是正评多还是负评多,观众对视频的态度是喜欢还是讨厌,整体口碑和舆情如何。提供情感倾向、正负面比例、情绪关键词和受众洞察。
Metadata
Slug kuaishou-sentiment-dashboard
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 126 downloads so far.

How do I install 快手评论分析?

Run "/install kuaishou-sentiment-dashboard" 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