Agent skill · Content & Marketing

social-media-intelligence

Social media monitoring, narrative tracking, and open-source intelligence for journalists. Use when tracking viral content spread, analyzing coordinated campaigns, monitoring breaking news on social platforms, investigating accounts for authenticity, or detecting misinformation patterns. Essential for reporters covering online narratives and digital investigations.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill social-media-intelligence --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 17 KB
Bundled scripts: none
Path: skills/analysis/social-media-intelligence/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Social media intelligence Systematic approaches for monitoring, analyzing, and investigating social media for journalism. ## When to activate - Tracking how a story spreads across platforms - Investigating potential coordinated inauthentic behavior - Monitoring breaking news across social platforms - Analyzing account networks and relationships - Detecting bot activity or manipulation campaigns - Building evidence trails for digital investigations - Archiving social content before deletion ## Real-time monitoring ### Multi-platform tracker ```python from dataclasses import dataclass, field from datetime import datetime from typing import List, Optional, Dict from enum import Enum import hashlib class Platform(Enum): TWITTER = "twitter" FACEBOOK = "facebook" INSTAGRAM = "instagram" TIKTOK = "tiktok" YOUTUBE = "youtube" REDDIT = "reddit" THREADS = "threads" BLUESKY = "bluesky" MASTODON = "mastodon" @dataclass class SocialPost: platform: Platform post_id: str author: str content: str timestamp: datetime url: str engagement: Dict[str, int] = field(default_factory=dict) media_urls: List[str] = field(default_factory=list) archived_urls: List[str] = field(default_factory=list) content_h

What's inside
Steps it walks through
  1. When to activate
  2. Real-time monitoring
  3. Multi-platform tracker
  4. Breaking news monitor
  5. Account analysis
  6. Authenticity indicators
  7. Network mapping
  8. Narrative tracking
  9. Claim propagation tracker
  10. Hashtag analysis
  11. Evidence preservation
  12. Archive before it disappears
  13. Coordination detection
  14. Behavioral signals checklist
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the social-media-intelligence skill do?

Social media monitoring, narrative tracking, and open-source intelligence for journalists. Use when tracking viral content spread, analyzing coordinated campaigns, monitoring breaking news on social platforms, investigating accounts for authenticity, or detecting misinformation patterns. Essential for reporters covering online narratives and digital investigations.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill social-media-intelligence --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going