$npx -y skills add nexscope-ai/eCommerce-Skills --skill brand-monitoringBrand monitoring tool for tracking mentions across social media platforms. Monitor Reddit, Google News, YouTube, and DuckDuckGo for brand mentions. Includes sentiment analysis, trend tracking, crisis detection, and competitor comparison. No API key required for basic monitoring.
| 1 | # Brand Monitoring 📡 |
| 2 | |
| 3 | Track brand mentions across social media platforms and analyze sentiment. |
| 4 | |
| 5 | ## Installation |
| 6 | |
| 7 | ```bash |
| 8 | npx skills add nexscope-ai/eCommerce-Skills --skill brand-monitoring -g |
| 9 | ``` |
| 10 | |
| 11 | ## Features |
| 12 | |
| 13 | - **Mention Monitoring** — Track brand mentions across platforms |
| 14 | - **Sentiment Analysis** — Positive/negative/neutral classification |
| 15 | - **Trend Tracking** — Monitor mention volume changes |
| 16 | - **Crisis Detection** — Alerts for negative spikes or crisis keywords |
| 17 | - **Competitor Comparison** — Share of voice analysis |
| 18 | - **Keyword Extraction** — Identify trending topics |
| 19 | - **Report Generation** — Weekly/monthly reports |
| 20 | |
| 21 | ## Supported Platforms |
| 22 | |
| 23 | | Platform | Method | Stability | |
| 24 | |----------|--------|-----------| |
| 25 | | Reddit | Public JSON API | ⚠️ Rate limited | |
| 26 | | Google News | RSS Feed | ✅ Stable | |
| 27 | | DuckDuckGo | Instant Answer API | ✅ Stable | |
| 28 | | YouTube | HTML/RSS | ⚠️ Unstable | |
| 29 | |
| 30 | ## Analysis Dimensions |
| 31 | |
| 32 | | Dimension | Method | Output | |
| 33 | |-----------|--------|--------| |
| 34 | | Volume | Mention count | Trend graph | |
| 35 | | Sentiment | NLP analysis | Sentiment score | |
| 36 | | Sources | Platform breakdown | Source distribution | |
| 37 | | Keywords | Topic extraction | Word cloud | |
| 38 | | Competitors | Share of voice | Comparison chart | |
| 39 | |
| 40 | ## Usage |
| 41 | |
| 42 | ### Basic Monitoring |
| 43 | |
| 44 | ```bash |
| 45 | python3 scripts/monitor.py "YourBrand" |
| 46 | ``` |
| 47 | |
| 48 | ### With Competitors |
| 49 | |
| 50 | ```bash |
| 51 | python3 scripts/monitor.py '{ |
| 52 | "brand": "YourBrand", |
| 53 | "competitors": ["CompA", "CompB"], |
| 54 | "platforms": ["reddit", "google_news"] |
| 55 | }' |
| 56 | ``` |
| 57 | |
| 58 | ### Demo Mode |
| 59 | |
| 60 | ```bash |
| 61 | python3 scripts/monitor.py --demo |
| 62 | ``` |
| 63 | |
| 64 | ## Output Example |
| 65 | |
| 66 | ``` |
| 67 | 📡 Brand Monitoring Report |
| 68 | |
| 69 | Brand: YourBrand |
| 70 | Period: Last 7 days |
| 71 | Platforms: Reddit, Google News, YouTube |
| 72 | |
| 73 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 74 | |
| 75 | 📊 MENTION OVERVIEW |
| 76 | |
| 77 | Total Mentions: 127 |
| 78 | ├── Reddit: 82 (65%) |
| 79 | ├── Google News: 35 (28%) |
| 80 | └── YouTube: 10 (8%) |
| 81 | |
| 82 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 83 | |
| 84 | 😊 SENTIMENT ANALYSIS |
| 85 | |
| 86 | Positive: 45% ████████░░ |
| 87 | Neutral: 38% ███████░░░ |
| 88 | Negative: 17% ███░░░░░░░ |
| 89 | |
| 90 | Overall Score: 7.2/10 ✅ |
| 91 | |
| 92 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 93 | |
| 94 | 📈 TREND (7 days) |
| 95 | |
| 96 | Mon ████████ 25 |
| 97 | Tue ██████ 18 |
| 98 | Wed ███████ 21 |
| 99 | Thu █████████ 28 |
| 100 | Fri ████████ 22 |
| 101 | Sat ███ 8 |
| 102 | Sun ██ 5 |
| 103 | |
| 104 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 105 | |
| 106 | 🔥 TRENDING KEYWORDS |
| 107 | |
| 108 | 1. quality (32x) |
| 109 | 2. shipping (28x) |
| 110 | 3. customer service (22x) |
| 111 | 4. price (18x) |
| 112 | 5. recommended (15x) |
| 113 | |
| 114 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ |
| 115 | |
| 116 | ⚠️ ALERTS |
| 117 | |
| 118 | 🔴 Negative spike on Thursday (+40%) |
| 119 | Related to: shipping delays |
| 120 | Recommendation: Monitor and respond |
| 121 | ``` |
| 122 | |
| 123 | ## Crisis Detection |
| 124 | |
| 125 | | Alert Level | Trigger | Action | |
| 126 | |-------------|---------|--------| |
| 127 | | 🟢 Normal | < 20% negative | Continue monitoring | |
| 128 | | 🟡 Warning | 20-40% negative | Investigate sources | |
| 129 | | 🔴 Crisis | > 40% negative | Immediate response needed | |
| 130 | |
| 131 | ## Monitoring Workflow |
| 132 | |
| 133 | ``` |
| 134 | Set up brand keywords |
| 135 | ↓ |
| 136 | Monitor platforms |
| 137 | ↓ |
| 138 | Analyze sentiment |
| 139 | ↓ |
| 140 | Detect anomalies |
| 141 | ↓ |
| 142 | Generate alerts |
| 143 | ↓ |
| 144 | Weekly report |
| 145 | ``` |
| 146 | |
| 147 | --- |
| 148 | |
| 149 | **Part of [Nexscope AI](https://www.nexscope.ai/?co-from=skill) — AI tools for e-commerce sellers.** |