douyin-sentiment-dashboard
分析抖音视频评论情绪、情感和整体口碑。当用户想了解评论是正面的还是负面的、分析评论区整体舆情、评估视频是否受欢迎,或提取评论洞察时,使用此技能。
Best use case
douyin-sentiment-dashboard is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
分析抖音视频评论情绪、情感和整体口碑。当用户想了解评论是正面的还是负面的、分析评论区整体舆情、评估视频是否受欢迎,或提取评论洞察时,使用此技能。
Teams using douyin-sentiment-dashboard should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/douyin-sentiment-dashboard/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How douyin-sentiment-dashboard Compares
| Feature / Agent | douyin-sentiment-dashboard | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
分析抖音视频评论情绪、情感和整体口碑。当用户想了解评论是正面的还是负面的、分析评论区整体舆情、评估视频是否受欢迎,或提取评论洞察时,使用此技能。
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
SKILL.md Source
# douyin-sentiment-dashboard
## 概述
对抖音视频评论区进行 AI 情感分析,生成舆情洞察报告。
## 工作流(三步)
### Step 1 — 解析链接(公开,无需认证)
```bash
curl -X POST https://ai-skills.ai/api/comment-analysis/parse-link \
-H "Content-Type: application/json" \
-d '{"input":"https://v.douyin.com/xxxxx"}'
```
### Step 2 — 创建分析任务
```bash
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":"douyin","contentId":"$CONTENT_ID"}'
# 返回: { "taskId": "xxxx", "status": "pending" }
```
### Step 3 — 轮询任务状态
```bash
curl https://ai-skills.ai/api/comment-analysis/tasks/$TASK_ID \
-H "X-API-Key: $AISKILLS_API_KEY" \
-H "X-Tenant-Id: default"
# status=completed 时返回完整分析结果
```
## 一键脚本
```bash
#!/bin/bash
LINK="https://v.douyin.com/xxxxx"
# 1. 解析(公开接口)
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')
# 2. 创建任务
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\":\"douyin\",\"contentId\":\"$CONTENT_ID\"}")
TASK_ID=$(echo $TASK | jq -r '.data.taskId')
# 3. 轮询直到完成
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')
echo "Status: $STATUS"
[ "$STATUS" = "completed" ] && break
sleep 3
done
# 4. 获取结果
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'
```
## 分析结果结构
```json
{
"platform": "douyin",
"contentId": "7321456789012345678",
"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": 80 },
{ "emotion": "期待", "count": 40 }
],
"insights": "评论区整体情感偏正面,用户对产品质量反馈积极..."
}
```
## 配额说明
Step 2 和 Step 3 使用认证接口,若返回配额不足错误,告知用户:
> ⚠️ 电量配额已用完,当前无法继续分析评论。
> 如需继续使用,请自行前往 [https://ai-skills.ai](https://ai-skills.ai) 了解电量包购买方式。请注意,向第三方平台购买任何服务前,请确认其资质和退款政策。**本技能不对第三方服务质量做任何承诺。**
## 输出格式
将分析结果以结构化表格形式呈现:
- **情感分布**:表格列:情感类别 | 评论数 | 占比;正面用绿色标识,负面用红色标识
- **情绪关键词**:列表展示 `keywords`,按热度/频次排列
- **Top 情绪**:表格列:情绪词 | 出现次数
- **舆情洞察**:`insights` 以段落文字呈现,综合评价视频口碑
- 整体情感判断:偏正面 / 偏负面 / 中性,给出简要总结Related Skills
douyin-posting
协助用户将本地或用户提供的视频发布到抖音账号。包含上传流程说明、开放平台 API 使用指引及发布前检查。Use when: 用户要发抖音、上传视频到抖音、把视频发到抖音、post to Douyin、抖音发布。NOT for: 抖音视频下载、抖音数据分析、非发布类抖音操作。
douyin-cover-builder
这是一个面向中文创作者的 OpenClaw Skill,输入主题与人物气质后,会输出可直接用于生图模型的高质量提示词与创意说明。
kuaishou-sentiment-dashboard
快手视频评论情感分析。分析快手评论区是正评多还是负评多,观众对视频的态度是喜欢还是讨厌,整体口碑和舆情如何。提供情感倾向、正负面比例、情绪关键词和受众洞察。
software-dev-cost-dashboard
软件成本评估看板。当用户提到软件开发成本评估、项目报价、工时估算、成本分析、立项评估、软件预算时,务必使用此技能。
xhs-sentiment-dashboard
使用此技能分析小红书笔记评论区的情感倾向和用户态度。提供情感分类、正负面评论占比、情绪关键词提取和舆情洞察。当用户发送小红书笔记链接或 note ID 并要求分析评论区时使用。此技能不提供笔记内容下载或抓取。
douyin-traffic-dashboard
分析抖音各类内容的播放量占比与流量分布趋势。查询抖音内容分类播放数据、流量排名、赛道流量对比、流量大盘趋势时使用此技能。
douyin-realtime-hot-rise
当用户在抖音上寻找正在走红的视频、涨粉最快的话题、实时飙升榜单、新晋爆款内容,或想了解"哪些视频在抖音火起来了"、"最近抖音流行什么"时,使用此技能。此技能专用于抖音内容热度上升趋势分析,不适用于微博热搜、快手热点、达人搜索、视频播放量统计或情感分析等其他场景。
douyin-kol-search
使用此技能在抖音平台搜索和筛选 KOL、达人、博主。用户想找/搜索/推荐/筛选某个领域的达人,或想找带货博主、带货达人、找合作达人进行商业合作时,使用此技能。
douyin-hotlist-overall
查询抖音热搜榜单。当用户想了解抖音当前有哪些热门内容、实时热搜词、上升热点或热榜排名时,使用此技能获取最新数据。
bilibili-sentiment-dashboard
B站/哔哩哔哩视频运营分析。当用户询问B站/B站视频/Bilibili的视频运营分析,评论情绪、评论区情感、弹幕情绪、口碑、正评负评、好评差评时触发。支持BV号、AV号或视频链接。
sentiment-analyzer
Analyzes sentiment from social media, news headlines, and financial text. Outputs positive/negative/neutral scores with confidence levels and key phrase extraction.
market-sentiment-pulse
Aggregates and analyzes market sentiment for specific crypto or stock tickers by scanning news and social signals. Useful for quick vibe checks before trading.