Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计提醒

instagram-analyzer-wulongchaInstagram 分析器 wulongcha

Agent Skill

instagram-analyzer-wulongcha 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,835

周安装

78

GitHub Stars

公开资料未说明

下载量

643
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:instagram-analyzer-wulongcha(Instagram 分析器 wulongcha)
来源仓库:https://github.com/wulooongcha/instagram-analyzer-wulongcha
安装命令:
openclaw skills install instagram-analyzer-wulongcha
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install instagram-analyzer-wulongcha

简介

通过详细的参与度指标、观看者与关注者比率以及以 Reels 为中心的分析(包括 JSON/CSV 导出)来分析 Instagram 个人资料和帖子。

SKILL.md

Instagram Analyzer

A comprehensive Instagram profile and post analysis tool with engagement metrics, view tracking, and Reels-focused analytics.


name: instagram-analyzer-wulongcha description: "Analyze Instagram profiles and posts with engagement metrics, view counts, follower ratios, and Reels analytics. Use when: user wants to analyze Instagram data, check engagement rates, or extract Reels information." homepage: https://clawhub.com metadata: { "openclaw": { "emoji": "📊", "requires": { "bins": ["python3", "chromium"] } } }


🎯 Features

📊 Single Post Analysis

  • ✅ Like count
  • ✅ Comment count
  • ✅ Save count
  • ✅ View count (Reels)
  • ✅ Follower count
  • View-to-Follower ratio (%)
  • ✅ Time posted (hours/days ago)

👤 Profile Analysis

  • ✅ Minimum 60 posts analyzed
  • Reels-focused analytics
  • ✅ All Reels links extraction
  • ✅ Engagement rate calculations
  • ✅ JSON/CSV export

🔧 Technical

  • 🌐 Browser simulation with Playwright
  • 🛡️ Stealth mode (human behavior)
  • 📁 Structured JSON/CSV output
  • ⚡ Batch processing support

🚀 Usage

Profile Analysis (Default: Reels Only! 🎯)

# Full profile analysis - REELS FOCUS (default behavior)
analyze-profile "username"

# With custom post count
analyze-profile "username" --posts 60

# All posts (including regular posts)
analyze-profile "username" --include-posts

Single Post Analysis

# Analyze a Reel/post URL
analyze-post "https://www.instagram.com/reel/ABC123xyz/"

# With JSON output
analyze-post "https://www.instagram.com/reel/ABC123xyz/" --output json

📊 Output Examples

Single Post Response

{
  "post_type": "reel",
  "url": "https://www.instagram.com/reel/ABC123xyz/",
  "username": "example_user",
  "metrics": {
    "views": 125000,
    "likes": 8542,
    "comments": 312,
    "saves": 892,
    "followers": 125000,
    "shares": 156
  },
  "ratios": {
    "view_to_follower_percent": 100.0,
    "like_to_view_percent": 6.83,
    "comment_to_view_percent": 0.25,
    "save_to_view_percent": 0.71
  },
  "timing": {
    "posted_at": "2026-02-11T14:30:00",
    "time_ago": "6 hours ago",
    "age_hours": 6
  }
}

Profile Analysis Response

{
  "profile": {
    "username": "example_user",
    "full_name": "Example User",
    "followers": 125000,
    "following": 1500,
    "posts_count": 450,
    "is_verified": false
  },
  "analysis_summary": {
    "total_posts_analyzed": 60,
    "reels_analyzed": 45,
    "analysis_mode": "reels_only",
    "total_views": 5420000,
    "average_views": 120444,
    "average_engagement_rate": 8.2,
    "top_reels": [...],
    "reels_links": [
      "https://www.instagram.com/reel/ABC123/",
      "https://www.instagram.com/reel/DEF456/",
      ...
    ]
  },
  "engagement_breakdown": {
    "avg_likes": 8542,
    "avg_comments": 312,
    "avg_saves": 892,
    "engagement_rate": 7.8
  }
}

📈 Engagement Metrics Explained

MetricFormulaInterpretation
View Rate(Views / Followers) × 100How many followers actually watched
Engagement Rate((Likes + Comments + Saves) / Views) × 100Overall audience interaction
Like Rate(Likes / Views) × 100Content appreciation
Save Rate(Saves / Views) × 100Content value indicator

⚙️ Configuration

Edit config/analyzer_config.json:

{
  "scraper": {
    "headless": false,
    "min_followers": 1000,
    "posts_to_analyze": 60,
    "scroll_pause": 2,
    "timeout": 30000
  },
  "browser": {
    "stealth_mode": true,
    "human_behavior": true,
    "user_agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X)"
  },
  "output": {
    "default_format": "json",
    "save_reels_links": true,
    "export_csv": true
  }
}

📁 File Outputs

  • Profile data: data/profiles/{username}.json
  • Post analysis: data/posts/{post_id}.json
  • Batch results: data/output/batch_{timestamp}.json
  • Reels links: data/output/{username}_reels.txt

🔧 Troubleshooting

Login Required

  • Some metrics require login (view count, saves)
  • Configure Instagram credentials in .env

Rate Limiting

  • Increase scroll_pause in config
  • Reduce batch size
  • Use multiple accounts

Missing Data

  • Check if account is private
  • Verify post exists and is accessible
  • Instagram may hide some metrics

📝 Requirements

  • Python 3.8+
  • Playwright
  • Chromium browser
  • BeautifulSoup4
  • lxml parser

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.81%
按下载量换算616

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills