account-research
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
\"Calculate and benchmark social media engagement rates across platforms and variants. Use this skill when the user needs to compute engagement metrics, compare performance across accounts or posts, or set engagement benchmarks — even if they say 'what is my engagement rate',
$ npx -y skills add charlieviettq/awesome-agent-skill --skill algo-social-engagement --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/algo-social-engagementContext preview
The summary Claude sees to decide when to auto-load this skill.
\"Calculate and benchmark social media engagement rates across platforms and variants. Use this skill when the user needs to compute engagement metrics, compare performance across accounts or posts, or set engagement benchmarks — even if they say 'what is my engagement rate',
name: "\"algo-social-engagement\"" description: "\"Calculate and benchmark social media engagement rates across platforms and variants. Use this skill when the user needs to compute engagement metrics, compare performance across accounts or posts, or set engagement benchmarks — even if they say 'what is my engagement rate', 'benchmark engagement', or 'social media KPIs'.\"." allowed-tools: Read, Glob, Grep
Engagement rate measures audience interaction relative to reach or audience size. Formula: (reactions + comments + shares) / denominator × 100%. The denominator choice (reach, impressions, followers) significantly affects the result. Computes in O(n) per post set.
**Trigger conditions:**
**When NOT to use:**
IRON LAW: Engagement Rate Denominator MATTERS By reach, by impressions, and by followers produce DIFFERENT numbers: - ER by Reach = engagements / reach × 100% (most accurate, requires analytics access) - ER by Impressions = engagements / impressions × 100% (always lower than by reach) - ER by Followers = engagements / followers × 100% (public data, but inflated by non-reaching followers) ALWAYS specify which variant when reporting or comparing.
Collect per post: likes, comments, shares/retweets, saves (platform-specific), reach or impressions or follower count. **Gate:** Consistent denominator across all posts being compared.
1. Sum engagements per post: likes + comments + shares (+ saves, clicks if available) 2. Weight engagements if desired: share=3×, comment=2×, like=1× (shares indicate higher commitment) 3. Divide by chosen denominator (reach preferred, followers as fallback) 4. Compute: per-post ER, average ER across posts, median ER, ER trend over time
Compare against platform benchmarks. Flag anomalies (ER > 20% likely data error or viral outlier). **Gate:** Results within plausible range for platform.
Return engagement metrics with benchmarking context.
{
"metrics": {"avg_er_by_reach": 3.2, "avg_er_by_followers": 1.8, "median_er": 2.9, "top_post_er": 8.5},
"benchmark": {"platform": "instagram", "industry": "fashion", "benchmark_er": 2.5, "percentile": 72},
"metadata": {"posts_analyzed": 30, "period": "2025-Q1", "denominator": "reach"}
}**Input:** Post: 150 likes, 20 comments, 5 shares, reach=5000 **Expected:** ER by reach = (150+20+5)/5000 × 100% = 3.5%
| Input | Expected | Why | |-------|----------|-----| | Reach = 0 | Undefined, skip post | Can't divide by zero | | Boosted/paid post | Separate from organic | Paid reach inflates denominator, deflates ER | | Viral outlier (10x avg) | Flag, analyze separately | Skews averages |
Curated skill pack for LLM agents in engineer and science workflow (Cursor & Claude ready).
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
Evaluate LLM agents and tool-using workflows—task success, tool accuracy, latency/cost, safety, and regression suites. Use when shipping agent features,…
Design agent tools and CLI surfaces—schemas, naming, errors, idempotency, and discoverability for LLM callers. Use when defining tools for agents, SDKs, or…
\"Implement and select ad bidding strategies from manual CPC to automated target-CPA and target-ROAS. Use this skill when the user needs to choose a bidding…
\"Optimize advertising budget allocation across campaigns using marginal returns analysis. Use this skill when the user needs to distribute budget across…
\"Build CTR prediction models for estimating ad click-through rates from features. Use this skill when the user needs to predict click probability, build an ad…