mcpbeat Sign in

Algo Social Influence Agent Skill

Measure social media influence using engagement-weighted metrics beyond follower count. Use this skill when the user needs to evaluate influencer effectiveness, compare influence across accounts, or build an influence scoring system — even if they say 'who is more influential', 'influencer ranking', or 'measure social impact'.

8k tokens
context cost
the whole folder, loaded on every use
4
files
instructions only
0
copies elsewhere
how many repositories repackaged it
223
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/asgard-ai-platform/skills --skill algo-social-influence

What comes with it

26 093 bytes besides the instruction
examples/sample_scenario.md
references/authenticity-detection.md
references/influencer-roi.md

The instruction itself

14 sections, as written by the author

Social Influence Measurement

Overview

Influence scoring evaluates an account's ability to drive actions (engagement, sharing, conversions) beyond mere reach. Combines reach, resonance (engagement depth), and relevance (topical authority). Computes as weighted composite score.

When to Use

Trigger conditions:

  • Evaluating and comparing influencers for marketing campaigns
  • Building an influence scoring or ranking system
  • Assessing brand ambassador effectiveness

When NOT to use:

  • When measuring content virality dynamics (use viral spread models)
  • When computing basic engagement rates (use engagement rate calculator)

Algorithm

IRON LAW: Follower Count ≠ Influence
Influence requires ENGAGEMENT. An account with 1M followers and
0.01% engagement rate has less influence than one with 10K followers
and 5% engagement. Measure: reach × engagement rate × relevance.

Phase 1: Input Validation

Collect per account: follower count, avg likes/comments/shares per post, posting frequency, audience demographics, topic categories.

Gate: Minimum 20 recent posts for stable metrics.

Phase 2: Core Algorithm

  • Reach score: Normalize follower count to log scale (diminishing returns)
  • Engagement score: (avg engagements / followers) × 100, weighted by type (share > comment > like)
  • Relevance score: Topic overlap between influencer content and target campaign
  • Composite: Influence = w₁×Reach + w₂×Engagement + w₃×Relevance (weights tuned per campaign goal)
  • Adjust for: audience authenticity (bot follower %), post frequency consistency

Phase 3: Verification

Spot-check: do high-scoring accounts actually drive actions? Cross-reference with historical campaign performance data if available.

Gate: Top-ranked accounts have demonstrable engagement history.

Phase 4: Output

Return ranked influence scores with component breakdown.

Output Format

{
  "rankings": [{"account": "@handle", "influence_score": 82, "reach": 75, "engagement": 90, "relevance": 85}],
  "metadata": {"accounts_analyzed": 50, "weights": {"reach": 0.2, "engagement": 0.5, "relevance": 0.3}}
}

Examples

Sample I/O

Input: Account A: 500K followers, 0.5% engagement. Account B: 50K followers, 4.2% engagement. Same relevance.

Expected: B scores higher due to engagement dominance in weighting.

Edge Cases

| Input | Expected | Why |

|-------|----------|-----|

| Viral one-hit account | High recent engagement, low stability | Need temporal consistency check |

| Celebrity with low engagement | High reach, low influence per dollar | Reach-only strategy, expensive |

| Micro-influencer niche | High relevance + engagement | Best ROI for targeted campaigns |

Gotchas

  • Fake engagement: Bot likes/comments inflate metrics. Use authenticity tools (HypeAuditor, etc.) to detect.
  • Platform differences: 2% engagement on Instagram is average; 2% on Twitter/X is excellent. Normalize by platform benchmarks.
  • Engagement pods: Groups of influencers artificially engaging with each other's content. Check if engagement comes from diverse sources.
  • Influence ≠ conversion: High engagement doesn't guarantee purchase intent. Track downstream metrics (link clicks, promo code usage) for campaign ROI.
  • Temporal decay: Influence changes. Quarterly reassessment is minimum; monthly is better for fast-moving categories.

References

  • For audience authenticity detection methods, see references/authenticity-detection.md
  • For influencer ROI measurement framework, see references/influencer-roi.md

Other skills for the same job

different authors, same section of the catalogue
Deeptools
by christophacham
×3

NGS analysis toolkit. BAM to bigWig conversion, QC (correlation, PCA, fingerprints), heatmaps/profiles (TSS, peaks), for ChIP-seq, RNA-seq, ATAC-seq visualization.

21k tokens scripts
Customer io Automation
by christophacham
×2

Automate customer engagement workflows including broadcast triggers, message analytics, segment management, and newsletter tracking through Customer.io via Composio

2k tokens needs MCP
Deeptools
by K-Dense-AI
×1

NGS analysis toolkit. BAM to bigWig conversion, QC (correlation, PCA, fingerprints), heatmaps/profiles (TSS, peaks), for ChIP-seq, RNA-seq, ATAC-seq visualization.

23k tokens scripts
Pathogen Variant Surveillance
by K-Dense-AI
×1

Query live pathogen genomic surveillance data through the GenSpectrum LAPIS API to find which viral lineages are circulating now, how fast they are growing, and what mutations they carry. Use whenever a question depends on the current state of a pathogen population rather than on remembered facts - which SARS-CoV-2 variant is dominant, whether a Pango lineage is still designated or has been withdrawn, what clade or genotype of H5N1 is in a host or region, whether a PCR primer or assay target still matches circulating sequence, or how a lineage's prevalence has moved week to week. Triggers include "variant surveillance", "genomic surveillance", "what variant is circulating", "dominant variant", "Pango lineage", "lineage prevalence", "growth advantage", "SARS-CoV-2 variant", "XFG", "clade 2.3.4.4b", "H5N1 genotype", "influenza clade", "RSV/mpox/measles/dengue lineage", "CoV-Spectrum", "LAPIS", "Nextclade", "pango-designation", and any request to report what a pathogen population looks like today.

26k tokens scripts
Deeptools
by ComeOnOliver
×1

NGS analysis toolkit. BAM to bigWig conversion, QC (correlation, PCA, fingerprints), heatmaps/profiles (TSS, peaks), for ChIP-seq, RNA-seq, ATAC-seq visualization.

24k tokens scripts
Product Strategy
by phuryn

Create a comprehensive product strategy using the 9-section Product Strategy Canvas — vision, segments, costs, value propositions, trade-offs, metrics, growth, capabilities, and defensibility. Use when building a product strategy, creating a strategic plan, or defining product direction.

1k tokens
Performance Report
by anthropics
vendor

Build a marketing performance report with key metrics, trend analysis, wins and misses, and prioritized optimization recommendations. Use when wrapping a campaign, when preparing weekly, monthly, or quarterly channel summaries for stakeholders, or when you need data translated into an executive summary with next-period priorities.

5k tokens
Saas Revenue Growth Metrics
by deanpeters

Calculate SaaS revenue, retention, and growth metrics. Use when diagnosing momentum, churn, expansion, or product-market-fit signals.

9k tokens

How to use it

Copy the folder

Take asgard-ai-platform/algo-social-influence from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.