Competitor social research

Use when the user wants to research competitors' social media strategy, compare brands or creators, find what content is working in a niche, identify content gaps, or produce a practical social strategy brief from public social data.

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/competitor-social-research#main ~/.claude/skills/competitor-social-research

For one project only, change the path to .claude/skills/competitor-social-research.

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 text132 lines
competitor-social-research/SKILL.md132 lines4.1 KBpushed 107d agoRawView on GitHub

Competitor Social Research

Overview

Analyze what competitors are doing on social and what appears to be working. This skill combines profile data, recent posts, outlier analysis, transcripts, and optionally comments to produce a practical competitor brief.

When to Use

Use this skill when the user asks to:

  • compare competitors on TikTok, Instagram, YouTube, LinkedIn, Facebook, X, Threads, or other social platforms
  • find what content is working in a niche
  • benchmark posting frequency, formats, topics, and engagement
  • identify content gaps or opportunities
  • build a social strategy from competitor research

Workflow

  1. Define competitors and platforms

    • Use provided handles/URLs.
    • If only company names are provided, search profiles first and confirm likely matches when ambiguity matters.
  2. Fetch profile snapshots

    • Followers/subscribers
    • Bio/positioning
    • Links
    • Verification/public metadata
  3. Fetch recent content

    • Pull comparable recent windows per competitor.
    • Track source URLs, dates, captions, formats, and metrics.
  4. Find outliers per competitor

    • Use each account's own median baseline.
    • Do not compare raw views between a huge brand and a small brand without context.
  5. Analyze content strategy

    • Content pillars
    • Formats
    • Hook styles
    • Posting cadence
    • Offers/CTAs
    • Use of founder/creator personality
    • Community/comment patterns
  6. Find gaps and opportunities Look for:

    • topics competitors avoid
    • formats that overperform but few competitors use
    • unanswered audience questions
    • weak hooks or repetitive content
    • platform whitespace

Useful ScrapeCreators Endpoints

Use the relevant profile/feed/detail/transcript/comment endpoints from scrapecreators-api. Common routes include:

  • TikTok: /v1/tiktok/profile, /v3/tiktok/profile/videos
  • Instagram: /v1/instagram/profile, /v2/instagram/user/posts, /v1/instagram/user/reels
  • YouTube: /v1/youtube/channel, /v1/youtube/channel-videos, /v1/youtube/channel/shorts
  • LinkedIn: /v1/linkedin/company, /v1/linkedin/company/posts
  • Facebook: /v1/facebook/profile, /v1/facebook/profile/posts, /v1/facebook/profile/reels
  • X/Twitter: /v1/twitter/profile, /v1/twitter/user-tweets
  • Threads: /v1/threads/profile, /v1/threads/user/posts
  • Bluesky: /v1/bluesky/profile, /v1/bluesky/user/posts

Output Format

# Competitor Social Research Brief

## Executive Summary
- Biggest opportunity:
- Competitor to study closest:
- Content format to test first:

## Competitor Snapshot
| Competitor | Platforms | Audience size | Posting cadence | Best-performing format | Notes |
|---|---|---:|---|---|---|

## What Is Working
### Competitor A
- Content pillars:
- Outlier examples:
- Hooks/formats:

## Cross-Competitor Patterns
1. ...
2. ...

## Gaps and Opportunities
| Opportunity | Evidence | Suggested test |
|---|---|---|

## Recommended Content Tests
1. ...
2. ...
3. ...

## Sources
- [Post/profile/ad](url)

Common Pitfalls

  • Do not compare competitors only by follower count. Engagement and outlier lift matter more.
  • Do not mix platforms without platform context. A good LinkedIn post and good TikTok are different artifacts.
  • Do not assume a profile match from a company name if multiple brands share the name.
  • Do not present competitor strategy as fact when it is inferred from public content. Say "appears to" or "suggests".
1---
2name: competitor-social-research
3description: Use when the user wants to research competitors' social media strategy, compare brands or creators, find what content is working in a niche, identify content gaps, or produce a practical social strategy brief from public social data.
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# Competitor Social Research
25 
26## Overview
27 
28Analyze what competitors are doing on social and what appears to be working. This skill combines profile data, recent posts, outlier analysis, transcripts, and optionally comments to produce a practical competitor brief.
29 
30## When to Use
31 
32Use this skill when the user asks to:
33 
34- compare competitors on TikTok, Instagram, YouTube, LinkedIn, Facebook, X, Threads, or other social platforms
35- find what content is working in a niche
36- benchmark posting frequency, formats, topics, and engagement
37- identify content gaps or opportunities
38- build a social strategy from competitor research
39 
40## Workflow
41 
421. **Define competitors and platforms**
43 - Use provided handles/URLs.
44 - If only company names are provided, search profiles first and confirm likely matches when ambiguity matters.
45 
462. **Fetch profile snapshots**
47 - Followers/subscribers
48 - Bio/positioning
49 - Links
50 - Verification/public metadata
51 
523. **Fetch recent content**
53 - Pull comparable recent windows per competitor.
54 - Track source URLs, dates, captions, formats, and metrics.
55 
564. **Find outliers per competitor**
57 - Use each account's own median baseline.
58 - Do not compare raw views between a huge brand and a small brand without context.
59 
605. **Analyze content strategy**
61 - Content pillars
62 - Formats
63 - Hook styles
64 - Posting cadence
65 - Offers/CTAs
66 - Use of founder/creator personality
67 - Community/comment patterns
68 
696. **Find gaps and opportunities**
70 Look for:
71 - topics competitors avoid
72 - formats that overperform but few competitors use
73 - unanswered audience questions
74 - weak hooks or repetitive content
75 - platform whitespace
76 
77## Useful ScrapeCreators Endpoints
78 
79Use the relevant profile/feed/detail/transcript/comment endpoints from `scrapecreators-api`. Common routes include:
80 
81- TikTok: `/v1/tiktok/profile`, `/v3/tiktok/profile/videos`
82- Instagram: `/v1/instagram/profile`, `/v2/instagram/user/posts`, `/v1/instagram/user/reels`
83- YouTube: `/v1/youtube/channel`, `/v1/youtube/channel-videos`, `/v1/youtube/channel/shorts`
84- LinkedIn: `/v1/linkedin/company`, `/v1/linkedin/company/posts`
85- Facebook: `/v1/facebook/profile`, `/v1/facebook/profile/posts`, `/v1/facebook/profile/reels`
86- X/Twitter: `/v1/twitter/profile`, `/v1/twitter/user-tweets`
87- Threads: `/v1/threads/profile`, `/v1/threads/user/posts`
88- Bluesky: `/v1/bluesky/profile`, `/v1/bluesky/user/posts`
89 
90## Output Format
91 
92```markdown
93# Competitor Social Research Brief
94 
95## Executive Summary
96- Biggest opportunity:
97- Competitor to study closest:
98- Content format to test first:
99 
100## Competitor Snapshot
101| Competitor | Platforms | Audience size | Posting cadence | Best-performing format | Notes |
102|---|---|---:|---|---|---|
103 
104## What Is Working
105### Competitor A
106- Content pillars:
107- Outlier examples:
108- Hooks/formats:
109 
110## Cross-Competitor Patterns
1111. ...
1122. ...
113 
114## Gaps and Opportunities
115| Opportunity | Evidence | Suggested test |
116|---|---|---|
117 
118## Recommended Content Tests
1191. ...
1202. ...
1213. ...
122 
123## Sources
124- [Post/profile/ad](url)
125```
126 
127## Common Pitfalls
128 
129- Do not compare competitors only by follower count. Engagement and outlier lift matter more.
130- Do not mix platforms without platform context. A good LinkedIn post and good TikTok are different artifacts.
131- Do not assume a profile match from a company name if multiple brands share the name.
132- Do not present competitor strategy as fact when it is inferred from public content. Say "appears to" or "suggests".

Discussion

Alternatives

Also in Roadmap & priorities