Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

creator-insights创作者见解

Agent Skill

creator-insights 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

494

周安装

21

GitHub Stars

9

下载量

173
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:creator-insights(创作者见解)
来源仓库:https://github.com/starchild-ai-agent/official-skills
仓库路径:skills/creator-insights
安装命令:
npx skills add https://github.com/starchild-ai-agent/official-skills --skill creator-insights
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/starchild-ai-agent/official-skills --skill creator-insights

简介

用于分析 Twitter/X 账号表现、趋势内容和竞争对比,提供可操作的创作者的见解。

  • 支持账户分析、病毒内容发现和 AI 驱动的内容推荐,帮助优化发布策略。
  • 使用时需结合具体账号数据和目标受众,避免泛化建议;涉及外部数据时需核对授权边界。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • creator-insights 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Twitter Creator Insights

This skill provides Twitter/X content creators with actionable intelligence about their account performance, trending topics in their niche, and competitive analysis. Includes account analytics, viral content discovery, thread/follower intelligence, and AI-powered content generation.

When to Use This Skill

Invoke this skill when:

  • A creator requests analysis of their Twitter account or another account
  • User asks about trending content or viral tweets in a specific niche
  • User wants to understand what content performs well in their space
  • User needs recommendations for improving their Twitter strategy
  • User asks about competitor or similar account activity
  • User wants to find influential accounts in a niche
  • User wants to identify VIP followers or "hidden gem" accounts (NEW)
  • User asks which threads attracted high-value engagement (NEW)
  • User needs help drafting tweets or analyzing viral patterns with AI (NEW)
  • User wants to optimize an existing tweet before posting (NEW)

Core Workflow

The skill follows a fetch → analyze → score → recommend pipeline:

1. Account Analysis Phase

Objective: Deep-dive into a Twitter account's performance and content patterns.

Process:

  1. Run python scripts/twitter_analyzer.py --username [handle] --tweets 100
  2. The system fetches:

- User profile (followers, bio, verification status) - Recent tweets (up to 100) - Engagement metrics (likes, RTs, replies, quotes, views)

  1. Calculates:

- Engagement rate (weighted by follower count) - Content patterns (hashtag usage, thread frequency, tweet types) - Posting schedule optimization - Viral content identification (outliers >2σ above mean)

Key Metrics:

  • Engagement Rate: (likes + RTs + replies) / followers × 100
  • Like/RT Ratio: Indicates passive vs. active engagement
  • Thread Performance: Threads vs. standalone tweet comparison
  • Viral Multiplier: How many times above average a tweet performed

Output Structure:

TWITTER ANALYSIS: @username
├── Profile metrics (followers, tweets, verification)
├── Engagement metrics (rates, averages, ratios)
├── Viral content (top 5 tweets with multiplier)
├── Thread analysis (performance comparison)
├── Hashtag performance (which hashtags drive engagement)
├── Posting schedule (best times based on data)
└── Recommendations (7 actionable insights)

2. Niche Detection Phase

Objective: Identify a creator's content niche and posting style.

Process:

  1. Run python scripts/profile_analyzer.py --profile @username
  2. Analyzes last 30 tweets for:

- Keyword frequency across 14 predefined niches - Content themes (most common topics) - Tone analysis (professional, casual, educational, entertaining) - Posting cadence and consistency

Niche Categories:

  • Tech, AI/ML, Crypto/Web3, Business, Marketing
  • Gaming, Fitness, Beauty, Food, Travel
  • Comedy, Education, Music, Art

Scoring Method:

niche_score = Σ(keyword_matches) for niche in all_niches
primary_niche = max(niche_scores)
secondary_niches = scores > (primary_score × 0.5)

3. Trend Discovery Phase

Objective: Find viral content and trending topics in a specific niche.

Process:

  1. Run python scripts/trend_aggregator.py --niche "[topic]" --viral-examples --limit 10
  2. Search for tweets matching: "{niche}" min_faves:1000 -is:retweet
  3. Rank by total engagement: likes + (retweets × 2) + (replies × 1.5)
  4. Analyze viral factors:

- Hashtag usage patterns - Tweet length optimization - Thread vs. single tweet - Question-based engagement - Quote tweet ratio (conversation starter indicator)

Viral Factor Detection:

if len(hashtags) > 0: "used {n} hashtags"
if '?' in text: "engaged audience with question"
if len(text) > 200: "detailed/thorough content"
elif len(text) < 100: "concise and punchy"
if quotes > retweets/2: "sparked conversation"

4. Competitive Intelligence Phase

Objective: Identify top performers and rising accounts in a niche.

Process:

  1. Run python scripts/trend_aggregator.py --niche "[topic]" --find-accounts --limit 10
  2. Aggregate top 50 viral tweets in niche
  3. Group by author and calculate:

- Total engagement across all tweets - Average engagement per tweet - Follower count

  1. Sort by engagement/follower ratio (efficiency metric)

Account Scoring:

account_score = (total_engagement / follower_count) × tweet_frequency
# Identifies accounts that punch above their weight

5. Thread Intelligence Phase NEW

Objective: Identify high-performing threads and track engagement from influential accounts.

Process:

  1. Run python scripts/thread_intelligence.py --username [handle] --tweets 50 --threshold 10000
  2. Fetches user's timeline and identifies multi-tweet threads
  3. For each thread:

- Gets full thread context - Fetches all replies - Identifies high-value repliers (accounts with >10K followers by default) - Tracks engagement patterns

  1. Ranks threads by number of high-value replies

Influence Threshold:

high_value_account = follower_count >= threshold  # Default: 10,000
# Configurable via --threshold parameter

Output Structure:

THREAD INTELLIGENCE: @username
├── Thread Statistics (total, high-value reply count, engagement rate)
├── Top Threads (ranked by high-value replies)
│   ├── Thread text preview
│   ├── Tweet count in thread
│   ├── Total replies vs high-value replies
│   └── Reply engagement score
├── Top Thread Details (deep-dive on #1 thread)
│   ├── Full text preview
│   ├── High-value repliers list
│   └── Follower counts
└── Most Engaged High-Value Accounts (across all threads)
    ├── Reply count per account
    └── Number of threads engaged with

Comparison Mode:

python scripts/thread_intelligence.py --username [handle] --compare --tweets 50

Compares thread performance vs standalone tweets to determine optimal content format.

6. Follower Intelligence Phase NEW

Objective: Discover VIP followers using combined influence scoring and engagement tracking.

Process:

  1. Run python scripts/follower_intelligence.py --username [handle] --tweets 20 --max-followers 500
  2. Fetches user's followers (newest first, up to 500)
  3. Tracks engagement across recent tweets:

- Who retweeted (via get_tweet_retweeters endpoint) - Who replied (via get_tweet_replies endpoint)

  1. Calculates influence score for each follower: influence_score = (followers × 0.7) + (engagement_count × 1000 × 0.3)
  2. Identifies special segments:

- VIP Followers: Top 50 by influence score - Hidden Gems: <5K followers but ≥2 interactions - Top Engagers: Most interactions regardless of follower count

Influence Score Formula:

# Balanced scoring: audience size (70%) + actual engagement (30%)
influence = (follower_count × 0.7) + (total_interactions × 1000 × 0.3)

# Example:
# Account A: 100K followers, 0 interactions = 70,000 influence
# Account B: 10K followers, 5 interactions = 8,500 influence
# Account C: 2K followers, 10 interactions = 4,400 influence (hidden gem!)

Output Structure:

VIP FOLLOWERS: @username
├── Engagement Statistics
│   ├── Total followers analyzed
│   ├── Engaged followers (who interacted)
│   └── Engagement rate %
├── Top VIP Followers (by influence score)
│   ├── Username, follower count, verified status
│   ├── Engagement breakdown (RTs, replies)
│   └── Influence score
├── Hidden Gems (high engagement, low followers)
│   └── Rising creators to nurture
└── Top Engagers (most interactions)
    └── Your biggest supporters

Growth Analysis Mode:

python scripts/follower_intelligence.py --username [handle] --growth --max-followers 200

Analyzes follower quality distribution (micro, small, medium, large, mega).

7. AI Content Generation Phase NEW

Objective: Use AI to analyze viral patterns, draft tweets, and optimize content using Claude 3.5 Sonnet.

Three AI Actions:

A. Viral Pattern Analysis

python scripts/content_generator.py --action analyze --username [top_creator] --tweets 50 --min-engagement 100

Process:

  1. Fetches high-engagement tweets (>100 engagement by default)
  2. Filters for viral content
  3. Sends top 5 tweets to AI with prompt:

- "Analyze content themes that perform best" - "Identify tweet structure patterns" - "Determine optimal posting times" - "Evaluate hashtag strategy" - "Understand engagement patterns"

Output: AI-generated multi-section analysis with actionable insights.

B. Tweet Drafting

python scripts/content_generator.py --action draft --topic "Your topic here" --username [style_reference] --variations 5

Process:

  1. Optionally analyzes reference account's style (if --username provided)
  2. Sends topic + style context to AI
  3. AI generates 3-5 variations with:

- Different angles/hooks per variation - Character count (ensures ≤280) - Strategy explanation - Predicted engagement level

Output: JSON array of tweet variations with metadata.

C. Tweet Optimization

python scripts/content_generator.py --action optimize --text "Your tweet draft" --goal engagement

Goals: engagement, reach, replies, clarity

Process:

  1. Sends original tweet + optimization goal to AI
  2. AI provides:

- Optimized version - 2-3 alternative approaches - Explanation of improvements - Posting strategy tips

Output: Enhanced tweet with detailed optimization rationale.

8. Enhanced Viral Analysis IMPROVED

The viral factor detection has been significantly enhanced with multi-dimensional pattern analysis:

Previous (Simple):

if len(hashtags) > 0: "used hashtags"
if '?' in text: "question"

New (Sophisticated):

# 1. FORMAT DETECTION
- Thread detection (🧵, "thread", "1/")
- Question count (single vs multiple)
- List/numbered format (1. 2. 3.)
- Emotional hooks (amazing, shocking, breaking)
- Call-to-action (let me know, check out, reply with)

# 2. MEDIA DETECTION
- Visual content presence (images/videos)

# 3. LENGTH OPTIMIZATION
- Comprehensive (>240 chars)
- Concise (<80 chars)
- Optimal range (120-180 chars)

# 4. HASHTAG STRATEGY
- Strategic use (3+ hashtags)
- Focused single hashtag

# 5. ENGAGEMENT PATTERN ANALYSIS
- High reply ratio (>25% = discussion starter)
- High retweet ratio (>20% = shareable)
- Viral coefficient (quotes+RTs >30%)

# 6. TEMPORAL ANALYSIS
- Peak posting window (9-11 AM, 1-3 PM)
- Low-competition hours (9 PM - 6 AM)
- Weekend timing advantage

# 7. ADVANCED PATTERNS
- Data-driven credibility (study, research, analysis)
- Storytelling hooks (story, remember when)
- Controversy/debate (unpopular opinion, hot take)

Example Enhanced Output:

🔥 Why viral: Question encouraging replies; emotional hook driving curiosity;
comprehensive detail (long-form); highly shareable content

Returns top 4 most relevant factors for each viral tweet.

Engagement Scoring Framework

Following head-of-content methodology, we use weighted engagement metrics:

WEIGHTS = {
    'bookmarks': 4.0,  # Strongest intent signal
    'replies': 2.0,    # Direct conversation
    'retweets': 1.5,   # Amplification
    'quotes': 2.5,     # Conversation + amplification
    'likes': 1.0,      # Baseline engagement
    'views': 0.01      # Reach indicator
}

engagement_score = Σ(metric × weight)

Outlier Detection: Content scoring above mean + (2.0 × standard_deviation) is flagged as viral.

Output Formats

Text Output (default)

Human-readable reports with:

  • Section headers and dividers
  • Bullet points for key insights
  • Numerical rankings
  • Actionable recommendations

JSON Output

Machine-readable data for:

  • Integration with other tools
  • Historical tracking
  • Custom dashboard creation
  • Multi-account comparison

Example:

python scripts/twitter_analyzer.py --username handle --output json > analysis.json

Configuration

Config File (config.yaml - optional):

# AI content generation settings
openrouter:
  default_model: "anthropic/claude-3.5-sonnet"
  temperature: 0.7
  max_tokens: 2000

# Influence scoring for follower/thread intelligence
influence:
  follower_weight: 0.7           # 70% weight on follower count
  engagement_weight: 0.3         # 30% weight on engagement
  high_value_threshold: 10000    # 10K+ followers = high-value
  hidden_gem_threshold: 5000     # <5K followers = potential gem
  min_engagement_interactions: 2 # Minimum interactions to count

# Viral analysis thresholds
viral:
  min_engagement: 100            # Minimum total engagement
  min_likes: 500                 # For trending searches
  high_reply_ratio: 0.25         # >25% replies = discussion
  high_retweet_ratio: 0.20       # >20% RTs = shareable
  viral_coefficient: 0.30        # >30% quotes+RTs = viral

# Tweet generation defaults
generation:
  num_variations: 5              # Default tweet variations
  max_length: 280                # Twitter character limit
  style_sample_size: 10          # Tweets to analyze for style

settings:
  rate_limit: 100                # Requests per minute
  default_timeframe: "30d"       # Analytics window
  cache_duration: 15             # Minutes to cache trends

Error Handling

Rate Limiting:

  • Automatic backoff when hitting API limits
  • 60-second cooldown before retry
  • Progress maintained across retries

Authentication Failures:

  • If authentication errors occur, check platform configuration

Network Timeouts:

  • 10-second timeout per request
  • Automatic retry with exponential backoff
  • Graceful degradation (returns partial results)

Invalid Usernames:

Could not fetch info for @username

→ Verify account exists and is not suspended

Advanced Usage

Batch Analysis

Analyze multiple accounts:

for account in account1 account2 account3; do
    python scripts/twitter_analyzer.py --username $account --output json > ${account}_analysis.json
done

Automated Monitoring

Daily trend tracking:

# Add to crontab
0 9 * * * cd /path/to/skill && python scripts/trend_aggregator.py --niche "AI" --viral-examples --limit 10 >> daily_trends.log

Comparative Analysis

Compare two accounts:

python scripts/twitter_analyzer.py --username account1 --output json > a1.json
python scripts/twitter_analyzer.py --username account2 --output json > a2.json
# Then compare engagement_rate, viral_multiplier, etc.

Related Scripts

Core Analytics:

  • scripts/twitter_analyzer.py - Comprehensive account analysis
  • scripts/profile_analyzer.py - Niche detection and content classification
  • scripts/trend_aggregator.py - Viral content and account discovery (enhanced)
  • scripts/analytics_calculator.py - Historical performance metrics

Advanced Intelligence (NEW):

  • scripts/thread_intelligence.py - Thread analysis and high-value engagement tracking
  • scripts/follower_intelligence.py - VIP follower discovery with influence scoring
  • scripts/content_generator.py - AI-powered viral analysis and tweet generation

Infrastructure:

  • scripts/api_client.py - Core Twitter API wrapper (enhanced with 10+ endpoints)
  • scripts/ascii_formatter.py - Beautiful terminal dashboard formatting
  • scripts/test_new_features.py - Test suite for validation
  • scripts/setup_config.py - Interactive configuration wizard

Integration with Other Skills

This skill complements:

  • Content planning skills: Use viral patterns to inform content strategy
  • Copywriting skills: Analyze successful tweet structures
  • Marketing skills: Understand audience engagement patterns

Metrics Glossary

  • Engagement Rate: % of followers who interact with content
  • Viral Multiplier: How many standard deviations above average
  • Like/RT Ratio: Passive (likes) vs. active (RTs) engagement
  • Thread Performance: Avg engagement on threaded vs. single tweets
  • Consistency Score: Regularity of posting (0-10 scale)
  • Quote Rate: Replies with quotes (conversation quality indicator)

Best Practices

  1. Run weekly analysis on your account to track trends
  2. Compare to competitors in your niche for benchmarking
  3. Act on viral patterns - replicate what works
  4. Monitor recommended posting times based on your data
  5. Track hashtag performance and iterate
  6. Experiment with threads if data shows they outperform
  7. Focus on engagement rate over vanity metrics

Troubleshooting

"Rate limit exceeded" → Wait 60 seconds and retry

"Request timed out" → Reduce --tweets parameter or try again (network issue)

Empty results → Try broader niche keywords or lower min_faves threshold

Proxy connection issues → Check that sc-proxy is running and configured correctly in Star Child

What's New in v2.0:

  • Thread Intelligence: Identify high-value engagement in threads (10K+ followers)
  • Follower Intelligence: VIP follower discovery with influence score algorithm
  • AI Content Generation: OpenRouter integration for viral analysis & tweet drafting
  • Enhanced Viral Analysis: 7-category sophisticated pattern detection
  • API Expansion: 10+ new TwitterAPI.io endpoints (followers, retweeters, replies, threads)
  • ASCII Dashboards: Beautiful terminal visualizations with progress bars
  • Comprehensive Config: Documented settings for all thresholds and parameters

Module Summary:

  1. twitter_analyzer.py - Account analytics (v1.0 feature)
  2. profile_analyzer.py - Niche detection (v1.0 feature)
  3. trend_aggregator.py - Viral discovery (enhanced in v2.0)
  4. thread_intelligence.py - Thread analysis (NEW in v2.0)
  5. follower_intelligence.py - VIP follower tracking (NEW in v2.0)
  6. content_generator.py - AI-powered content (NEW in v2.0)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.2%
按下载量换算59

Claude

29.4%
按下载量换算51

Cursor

18.08%
按下载量换算31

Gemini CLI

9.05%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills