influencer-analyzer

分析抖音/小红书/B站博主的主页、内容风格、爆款规律。可根据链接、博主名、主题三种方式触发。输出结构化的博主画像和内容风格报告,为内容创作者提供可复制的对标参考。触发词:分析博主、分析网红、对标博主、博主风格、起号分析、博主推荐。

33 stars

Best use case

influencer-analyzer is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

分析抖音/小红书/B站博主的主页、内容风格、爆款规律。可根据链接、博主名、主题三种方式触发。输出结构化的博主画像和内容风格报告,为内容创作者提供可复制的对标参考。触发词:分析博主、分析网红、对标博主、博主风格、起号分析、博主推荐。

Teams using influencer-analyzer 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

$curl -o ~/.claude/skills/influencer-analyzer/SKILL.md --create-dirs "https://raw.githubusercontent.com/aAAaqwq/AGI-Super-Team/main/skills/influencer-analyzer/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/influencer-analyzer/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How influencer-analyzer Compares

Feature / Agentinfluencer-analyzerStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

分析抖音/小红书/B站博主的主页、内容风格、爆款规律。可根据链接、博主名、主题三种方式触发。输出结构化的博主画像和内容风格报告,为内容创作者提供可复制的对标参考。触发词:分析博主、分析网红、对标博主、博主风格、起号分析、博主推荐。

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.

SKILL.md Source

# Influencer Analyzer — 博主起号分析器

> 分析抖音/小红书/B站博主的主页风格、内容规律、爆款元素,为内容创作者提供可复制的对标参考。

## 何时用

- 用户说"分析这个博主"并提供链接
- 用户说"帮我找几个对标博主"并说明领域
- 用户说"我想做X领域的账号,参考一下"
- 内容创作前需要学习对标账号的风格
- 需要了解某平台的热门内容趋势

## 三种触发方式

### 方式一:链接分析(最精准)

提供博主主页链接或视频链接:

```
请分析这个博主:
https://www.douyin.com/user/MS4wLjABAAAAxxx
https://www.xiaohongshu.com/user/profile/xxx
https://space.bilibili.com/xxx
```

### 方式二:名字搜索

提供博主名字:

```
请搜索并分析"博主名字"这个抖音博主
帮我找小红书上做AI内容比较火的博主
B站上有哪些做量化交易不错的UP主
```

### 方式三:主题推荐

描述想做的方向:

```
我打算做AI创业方向的内容,帮我推荐几个对标博主
大学生AI学习这个主题,有什么值得参考的博主
```

---

## 输入

```yaml
输入:
  mode: link | search | recommend   # 三种模式
  platform: douyin | xiaohongshu | bilibili | all
  identifier: string                  # 链接/名字/主题
  top_n: 5                          # 推荐模式时返回的数量
```

---

## 输出

```yaml
输出:
  status: ok | error
  platform: string
  blogger:
    name: string
    avatar: string (url)
    followers: string          # "10.2万粉"
    following: string
    likes: string              # 总获赞
    bio: string
    profile_url: string
  content_patterns:
    - category: string         # "AI工具测评"
      frequency: string        # "每周3更"
      style: string            # "短平快/深度/教程"
      avg_duration: string     # "30秒/5分钟"
      hook_style: string       # 开头钩子类型
  recent_top_videos:
    - title: string
      likes: string
      views: string
      date: string
      url: string
  style_analysis:
    visual_style: string        # 画面风格描述
    color_palette: string      # 主色调
    editing_rhythm: string     # 剪辑节奏
    voice_style: string        # 配音/字幕风格
    persona: string            # 博主人设定位
  takeaways:
    - 可复制的元素
    - 爆款规律
    - 差异化点
  recommendations:
    - 针对创作者的差异化建议
```

---

## 工具链

| 工具 | 用途 |
|------|------|
| browser | 抓取主页/视频页面 |
| yt-dlp | 下载视频/提取信息 |
| ffmpeg | 关键帧提取 |
| image | AI分析封面风格 |

---

## 平台特点速查

| 平台 | 主页URL格式 | 关键指标 | 内容形式 |
|------|------------|---------|---------|
| 抖音 | douyin.com/user/XXX | 粉丝/点赞/收藏 | 15-60秒竖视频 |
| 小红书 | xiaohongshu.com/user/profile/XXX | 粉丝/点赞/收藏 | 图文/短视频 |
| B站 | space.bilibili.com/XXX | 粉丝/播放/点赞 | 1-30分钟横视频 |

---

## 工作流程

### Link 模式(URL分析)

```
解析URL → 判断平台 → 打开主页
→ 抓取博主信息(头像/粉丝/简介)
→ 抓取最近10-20个视频/帖子
→ 分析封面风格
→ AI综合分析
→ 输出报告
```

### Search 模式(名字搜索)

```
拼接搜索URL → 搜索结果页
→ 找到目标博主
→ 切换到Link模式继续
```

### Recommend 模式(主题推荐)

```
按平台搜索主题关键词
→ 排序找出粉丝多/点赞高的博主
→ 列出Top N供选择
→ 用户指定后切换到Link模式
```

---

## 关键 Selector(Browser 抓取)

### 抖音
```
博主名:   .author-title .name
粉丝数:   .author-follow .count
简介:     .author-description
视频列表: .video-card .cover
点赞:     .video-card .like-count
```

### 小红书
```
博主名:   .user-info .name
粉丝数:   .user-info .fans
简介:     .user-info .desc
笔记列表: .note-item .cover
点赞:     .note-item .like
```

### B站
```
博主名:   .h-pinoco .name
粉丝数:   .n-num .fans
播放量:   .n-num .view
视频列表: .video-card .cover
```

---

## 封面风格分析维度

| 维度 | 说明 |
|------|------|
| 画面构图 | 远景/特写/第一人称/屏幕录制 |
| 主色调 | 冷色/暖色/高饱和/低饱和 |
| 文字封面 | 有字/无字/大字/小字 |
| 人物出场 | 真人出镜/动画/屏幕/无人物 |
| 情绪调性 | 专业/轻松/焦虑/治愈 |

---

## 分析报告模板

```markdown
# 🎯 博主分析报告

**博主**: [名字]
**平台**: [抖音/小红书/B站]
**链接**: [主页链接]
**粉丝**: [X万]
**总赞**: [X万]

---

## 📊 基础画像

- **内容定位**:
- **目标人群**:
- **博主人设**:
- **更新频率**:

---

## 🎬 最近爆款

| 标题 | 点赞 | 播放/阅读 | 日期 |
|------|------|---------|------|
| ... | ... | ... | ... |

---

## 🖼️ 封面风格分析

- **画面构图**: [描述]
- **主色调**: [描述]
- **文字处理**: [描述]
- **人物出场**: [描述]

---

## 🎙️ 内容风格

- **视频节奏**: [描述]
- **配音/字幕**: [描述]
- **开头钩子**: [描述]
- **互动设计**: [描述]

---

## 💡 可复制元素

1. [元素1]
2. [元素2]
3. [元素3]

---

## 🎯 对创作者的建议

[结合目标账号定位的差异化建议,包括:可复制的元素、需避免的坑、差异化方向]
```

---

## 依赖

```
yt-dlp (pip install yt-dlp)
ffmpeg (视频处理)
OpenClaw browser (抓取页面)
```

---

## 示例对话

**User**: 分析这个抖音博主 https://www.douyin.com/user/MS4wLjABAAAAxxx

**Assistant**: 正在分析博主...
→ 抓取主页数据 ✓
→ 分析最近10个视频 ✓
→ 提取封面风格 ✓
→ AI综合分析 ✓

**输出**: [完整博主分析报告]

---

*Author: Ives·CCO | v1.0.0 | 2026-04-14*

Related Skills

video-content-analyzer

33
from aAAaqwq/AGI-Super-Team

下载视频并用AI分析内容 - 支持B站/抖音/YouTube等平台,提取语音内容并分析视频结构

meeting-insights-analyzer

33
from aAAaqwq/AGI-Super-Team

Analyzes meeting transcripts and recordings to uncover behavioral patterns, communication insights, and actionable feedback. Identifies when you avoid conflict, use filler words, dominate conversations, or miss opportunities to listen. Perfect for professionals seeking to improve their communication and leadership skills.

ecommerce-competitor-analyzer

33
from aAAaqwq/AGI-Super-Team

Multi-platform e-commerce competitor analysis skill that automatically scrapes product data from Amazon, Temu, Shopee and generates comprehensive analysis reports using AI. Use when you need to analyze competitor products, extract product insights, or batch analyze multiple product listings. Supports bulk processing with structured outputs including title, price, rating, reviews, and strategic analysis.

company-analyzer

33
from aAAaqwq/AGI-Super-Team

> 企业深度分析引擎——多框架 LLM 分析,带缓存、成本追踪、速率限制

commit-analyzer

33
from aAAaqwq/AGI-Super-Team

Analyze git commit frequency, categories, and timing patterns to diagnose autonomous agent activity and operational health.

wemp-operator

33
from aAAaqwq/AGI-Super-Team

> 微信公众号全功能运营——草稿/发布/评论/用户/素材/群发/统计/菜单/二维码 API 封装

Content & Documentation

zsxq-smart-publish

33
from aAAaqwq/AGI-Super-Team

Publish and manage content on 知识星球 (zsxq.com). Supports talk posts, Q&A, long articles, file sharing, digest/bookmark, homework tasks, and tag management. Use when publishing content to 知识星球, creating/editing posts, uploading files/images/audio, managing digests, batch publishing, or formatting content for 知识星球.

zoom-automation

33
from aAAaqwq/AGI-Super-Team

Automate Zoom meeting creation, management, recordings, webinars, and participant tracking via Rube MCP (Composio). Always search tools first for current schemas.

zoho-crm-automation

33
from aAAaqwq/AGI-Super-Team

Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, search contacts, manage leads, and convert leads. Always search tools first for current schemas.

ziliu-publisher

33
from aAAaqwq/AGI-Super-Team

字流(Ziliu) - AI驱动的多平台内容分发工具。用于一次创作、智能适配排版、一键分发到16+平台(公众号/知乎/小红书/B站/抖音/微博/X等)。当用户需要多平台发布、内容排版、格式适配时使用。触发词:字流、ziliu、多平台发布、一键分发、内容分发、排版发布。

zhihu-post-skill

33
from aAAaqwq/AGI-Super-Team

> 知乎文章发布——知乎平台内容创作与发布自动化

zendesk-automation

33
from aAAaqwq/AGI-Super-Team

Automate Zendesk tasks via Rube MCP (Composio): tickets, users, organizations, replies. Always search tools first for current schemas.