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.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- When to activate
- Real-time monitoring
- Multi-platform tracker
- Breaking news monitor
- Account analysis
- Authenticity indicators
- Network mapping
- Narrative tracking
- Claim propagation tracker
- Hashtag analysis
- Evidence preservation
- Archive before it disappears
- Coordination detection
- Behavioral signals checklist
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.
