Outlier post finder

Use when the user wants to find posts, videos, reels, shorts, tweets, or social content that overperformed versus a creator, brand, or competitor baseline.

How to use it

  1. Hit Copy the whole skill.
  2. Claude: ⋯ → Download .md, then Customize → Skills → Add → Upload skill.
    ChatGPT: make a Project and paste it into Instructions.
    Neither? Paste it at the top of a new chat — it works for that chat.
  3. Describe your job in plain words. The AI follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit ScrapeCreators/social-media-research-skills/skills/outlier-post-finder#main ~/.claude/skills/outlier-post-finder

For one project only, change the path to .claude/skills/outlier-post-finder.

Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Show the full text151 lines
outlier-post-finder/SKILL.md151 lines6.0 KBpushed 107d agoRawView on GitHub

Outlier Post Finder

Overview

Find social posts that beat an account's normal performance. The goal is not just to sort by views. The goal is to identify posts that performed unusually well for that creator or brand, then explain the repeatable patterns.

Use ScrapeCreators as the data layer. Pull recent public posts, normalize engagement metrics, calculate each account's baseline, and produce an outlier report with source URLs and practical takeaways.

When to Use

Use this skill when the user asks to:

  • find outlier posts, viral posts, top posts, best reels, best shorts, best TikToks, or best tweets
  • analyze why a creator's content is working
  • find competitor posts worth copying or learning from
  • build a swipe file from high-performing social posts
  • compare performance across a creator's recent posts

Do not use this for raw endpoint lookup only. Use scrapecreators-api for direct API routing.

Data Sources

Prefer the platform-specific feed endpoint, then enrich individual posts only when needed.

Platform Feed endpoint Detail/enrichment endpoint
TikTok /v3/tiktok/profile/videos /v2/tiktok/video, /v1/tiktok/video/transcript
Instagram posts /v2/instagram/user/posts /v1/instagram/post, /v2/instagram/media/transcript
Instagram reels /v1/instagram/user/reels /v1/instagram/post, /v2/instagram/media/transcript
YouTube videos /v1/youtube/channel-videos /v1/youtube/video, /v1/youtube/video/transcript
YouTube Shorts /v1/youtube/channel/shorts /v1/youtube/video, /v1/youtube/video/transcript
Facebook /v1/facebook/profile/posts, /v1/facebook/profile/reels /v1/facebook/post, /v1/facebook/post/transcript
LinkedIn /v1/linkedin/company/posts /v1/linkedin/post, /v1/linkedin/post/transcript
X/Twitter /v1/twitter/user-tweets /v1/twitter/tweet, /v1/twitter/tweet/transcript
Threads /v1/threads/user/posts /v1/threads/post
Bluesky /v1/bluesky/user/posts /v1/bluesky/post

Before calling an endpoint, fetch its docs or per-endpoint OpenAPI spec if parameter names or response fields are uncertain.

Workflow

  1. Clarify scope only if needed

    • Platform(s)
    • Handles or URLs
    • Time/post count window
    • Whether to include transcript/comment analysis
  2. Fetch recent posts

    • Pull at least 20 posts when available. More is better for baseline confidence.
    • Paginate if the endpoint supports cursors and the user wants a larger window.
    • Keep source URLs for citations.
  3. Normalize metrics

    • Capture whatever exists: views, plays, likes, comments, shares, reposts, saves.
    • Build a combined engagement score only after preserving raw metrics.
    • For video-first platforms, views/play count is usually the primary metric.
    • For text-first platforms, likes + replies/comments + reposts/shares is usually better.
  4. Calculate the account baseline

    • Use median instead of mean so one viral post does not distort the baseline.
    • Calculate per-platform and per-account baselines separately.
    • If mixed formats exist, split by format when possible: reel vs carousel, short vs long video, text vs video.
  5. Score outliers

    • view_lift = post_views / median_views
    • engagement_lift = post_engagement / median_engagement
    • Label posts as:
      • Huge outlier: 5x+ baseline
      • Strong outlier: 2x-5x baseline
      • Mild outlier: 1.5x-2x baseline
    • If sample size is under 10 posts, call confidence low.
  6. Enrich the winners

    • Fetch post details for top outliers.
    • Fetch transcripts for video posts when useful.
    • Optionally fetch comments to understand audience reaction.
  7. Explain why they worked Look for:

    • hook style
    • topic/category
    • format
    • emotional trigger
    • novelty/timeliness
    • creator proof or authority
    • controversy or debate
    • comments showing confusion, desire, or buying intent

Output Format

# Outlier Posts Report: {creator_or_brand}

## Summary
- Sample: {n} posts from {platforms}
- Window: {window}
- Baseline: median {primary_metric} = {value}
- Confidence: High/Medium/Low

## Biggest Outliers
| Rank | Post | Platform | Date | Primary Metric | Lift | Why it likely worked |
|---:|---|---|---|---:|---:|---|
| 1 | [title/hook](url) | TikTok | 2026-01-01 | 1.2M views | 8.4x | Contrarian hook + clear before/after |

## Repeatable Patterns
1. **Pattern name** — evidence and examples.
2. **Pattern name** — evidence and examples.

## Hooks to Steal
- "Exact hook from caption or transcript"
- "Exact hook from caption or transcript"

## Content Ideas Based on the Outliers
1. ...
2. ...

## Notes and Caveats
- Public data only.
- Small samples are directional, not definitive.

Common Pitfalls

  • Do not call the highest raw-view post the best outlier if a huge account is being compared with a small one. Use lift versus each account's own baseline.
  • Do not average TikTok, Instagram, YouTube, and LinkedIn metrics into one baseline. Score each platform separately.
  • Do not invent transcript quotes. Fetch transcripts or quote only visible captions/text.
  • Do not overstate confidence from fewer than 10 posts.
  • Do not ignore old viral posts if the user asked for recent performance. Respect the requested window.
1---
2name: outlier-post-finder
3description: Use when the user wants to find posts, videos, reels, shorts, tweets, or social content that overperformed versus a creator, brand, or competitor baseline. Finds outliers, explains why they worked, extracts hooks and formats, and produces a practical swipe file.
4allowed-tools: Bash, Read, Write, WebFetch
5 
6version: 1.0.0
7author: ScrapeCreators
8license: MIT
9homepage: https://scrapecreators.com
10repository: https://github.com/ScrapeCreators/social-media-research-skills
11metadata:
12 openclaw:
13 requires:
14 env:
15 - SCRAPECREATORS_API_KEY
16 primaryEnv: SCRAPECREATORS_API_KEY
17 homepage: https://scrapecreators.com
18 tags:
19 - social-media
20 - research
21 - scrapecreators
22---
23 
24# Outlier Post Finder
25 
26## Overview
27 
28Find social posts that beat an account's normal performance. The goal is not just to sort by views. The goal is to identify posts that performed unusually well for that creator or brand, then explain the repeatable patterns.
29 
30Use ScrapeCreators as the data layer. Pull recent public posts, normalize engagement metrics, calculate each account's baseline, and produce an outlier report with source URLs and practical takeaways.
31 
32## When to Use
33 
34Use this skill when the user asks to:
35 
36- find outlier posts, viral posts, top posts, best reels, best shorts, best TikToks, or best tweets
37- analyze why a creator's content is working
38- find competitor posts worth copying or learning from
39- build a swipe file from high-performing social posts
40- compare performance across a creator's recent posts
41 
42Do not use this for raw endpoint lookup only. Use `scrapecreators-api` for direct API routing.
43 
44## Data Sources
45 
46Prefer the platform-specific feed endpoint, then enrich individual posts only when needed.
47 
48| Platform | Feed endpoint | Detail/enrichment endpoint |
49|---|---|---|
50| TikTok | `/v3/tiktok/profile/videos` | `/v2/tiktok/video`, `/v1/tiktok/video/transcript` |
51| Instagram posts | `/v2/instagram/user/posts` | `/v1/instagram/post`, `/v2/instagram/media/transcript` |
52| Instagram reels | `/v1/instagram/user/reels` | `/v1/instagram/post`, `/v2/instagram/media/transcript` |
53| YouTube videos | `/v1/youtube/channel-videos` | `/v1/youtube/video`, `/v1/youtube/video/transcript` |
54| YouTube Shorts | `/v1/youtube/channel/shorts` | `/v1/youtube/video`, `/v1/youtube/video/transcript` |
55| Facebook | `/v1/facebook/profile/posts`, `/v1/facebook/profile/reels` | `/v1/facebook/post`, `/v1/facebook/post/transcript` |
56| LinkedIn | `/v1/linkedin/company/posts` | `/v1/linkedin/post`, `/v1/linkedin/post/transcript` |
57| X/Twitter | `/v1/twitter/user-tweets` | `/v1/twitter/tweet`, `/v1/twitter/tweet/transcript` |
58| Threads | `/v1/threads/user/posts` | `/v1/threads/post` |
59| Bluesky | `/v1/bluesky/user/posts` | `/v1/bluesky/post` |
60 
61Before calling an endpoint, fetch its docs or per-endpoint OpenAPI spec if parameter names or response fields are uncertain.
62 
63## Workflow
64 
651. **Clarify scope only if needed**
66 - Platform(s)
67 - Handles or URLs
68 - Time/post count window
69 - Whether to include transcript/comment analysis
70 
712. **Fetch recent posts**
72 - Pull at least 20 posts when available. More is better for baseline confidence.
73 - Paginate if the endpoint supports cursors and the user wants a larger window.
74 - Keep source URLs for citations.
75 
763. **Normalize metrics**
77 - Capture whatever exists: views, plays, likes, comments, shares, reposts, saves.
78 - Build a combined engagement score only after preserving raw metrics.
79 - For video-first platforms, views/play count is usually the primary metric.
80 - For text-first platforms, likes + replies/comments + reposts/shares is usually better.
81 
824. **Calculate the account baseline**
83 - Use median instead of mean so one viral post does not distort the baseline.
84 - Calculate per-platform and per-account baselines separately.
85 - If mixed formats exist, split by format when possible: reel vs carousel, short vs long video, text vs video.
86 
875. **Score outliers**
88 - `view_lift = post_views / median_views`
89 - `engagement_lift = post_engagement / median_engagement`
90 - Label posts as:
91 - **Huge outlier:** 5x+ baseline
92 - **Strong outlier:** 2x-5x baseline
93 - **Mild outlier:** 1.5x-2x baseline
94 - If sample size is under 10 posts, call confidence low.
95 
966. **Enrich the winners**
97 - Fetch post details for top outliers.
98 - Fetch transcripts for video posts when useful.
99 - Optionally fetch comments to understand audience reaction.
100 
1017. **Explain why they worked**
102 Look for:
103 - hook style
104 - topic/category
105 - format
106 - emotional trigger
107 - novelty/timeliness
108 - creator proof or authority
109 - controversy or debate
110 - comments showing confusion, desire, or buying intent
111 
112## Output Format
113 
114```markdown
115# Outlier Posts Report: {creator_or_brand}
116 
117## Summary
118- Sample: {n} posts from {platforms}
119- Window: {window}
120- Baseline: median {primary_metric} = {value}
121- Confidence: High/Medium/Low
122 
123## Biggest Outliers
124| Rank | Post | Platform | Date | Primary Metric | Lift | Why it likely worked |
125|---:|---|---|---|---:|---:|---|
126| 1 | [title/hook](url) | TikTok | 2026-01-01 | 1.2M views | 8.4x | Contrarian hook + clear before/after |
127 
128## Repeatable Patterns
1291. **Pattern name** — evidence and examples.
1302. **Pattern name** — evidence and examples.
131 
132## Hooks to Steal
133- "Exact hook from caption or transcript"
134- "Exact hook from caption or transcript"
135 
136## Content Ideas Based on the Outliers
1371. ...
1382. ...
139 
140## Notes and Caveats
141- Public data only.
142- Small samples are directional, not definitive.
143```
144 
145## Common Pitfalls
146 
147- Do not call the highest raw-view post the best outlier if a huge account is being compared with a small one. Use lift versus each account's own baseline.
148- Do not average TikTok, Instagram, YouTube, and LinkedIn metrics into one baseline. Score each platform separately.
149- Do not invent transcript quotes. Fetch transcripts or quote only visible captions/text.
150- Do not overstate confidence from fewer than 10 posts.
151- Do not ignore old viral posts if the user asked for recent performance. Respect the requested window.

Discussion

Alternatives

Also in Posting & scheduling
Linkedin comment drafterDraft a LinkedIn comment on someone else's post from its URL, or reshare (repost) it to your feed with optional commentary. Use when the user pastes a post URL and asks to comment, engage, be first commenter, or repost with their thoughts. Produces 1-3 variants in the user's voice, picks a reaction, and publishes via Publora on approval. Not for replying to existing comments (use linkedin-reply-handler).Marketing · MITLinkedin content plannerGenerate a 7-day LinkedIn content plan from a theme, audience, and pillars. Produces per-day post pillar, format, hook type, CTA, posting time, daily comment targets, and a weekly inbound-readiness check. Use when the user wants to plan a week or month of content, not draft a single post (use linkedin-post-writer).Marketing · MITLinkedin employee advocacyStand up and run a LinkedIn employee advocacy program for a marketing or sales team. Covers 14-day launch playbook, brand-guideline governance, per-post time budget, cadence benchmarks, and team ROI (reach, engagement, pipeline). Triggers on "employee advocacy", "get the team posting", "scale LinkedIn across team", "advocacy ROI". Not for planning one person's own calendar (use linkedin-content-planner).Marketing · MITInstagram Audience InsightsRead your Instagram niche and profile from real data via Apify, no login. Scan a hashtag for the posts traveling now (likes, comments, owner) to see the format and hook that works. Pull profile stats for any handle, yours or a competitor's: followers, posts, bio, category. Instagram hides who liked or commented on other accounts, so this is discovery plus profiles, not engagers. Triggers on "what works in my niche", "scan the hashtag", "competitor stats". Not for writing captions (use ig-caption-writer).Marketing · MIT