@anysiteio/agent-skills 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/.claude-plugin/marketplace.json +113 -0
  2. package/.claude-plugin/plugin.json +45 -0
  3. package/LICENSE +21 -0
  4. package/README.md +221 -0
  5. package/bin/install.js +55 -0
  6. package/package.json +45 -0
  7. package/skills/anysite-audience-analysis/SKILL.md +273 -0
  8. package/skills/anysite-audience-analysis/references/PLATFORM_COVERAGE.md +53 -0
  9. package/skills/anysite-audience-analysis/references/TOOL_MAPPING.md +27 -0
  10. package/skills/anysite-brand-reputation/SKILL.md +373 -0
  11. package/skills/anysite-brand-reputation/references/MONITORING_GUIDE.md +84 -0
  12. package/skills/anysite-competitor-analyzer/SKILL.md +847 -0
  13. package/skills/anysite-competitor-intelligence/SKILL.md +642 -0
  14. package/skills/anysite-competitor-intelligence/references/ANALYSIS_PATTERNS.md +97 -0
  15. package/skills/anysite-content-analytics/SKILL.md +298 -0
  16. package/skills/anysite-content-analytics/references/METRICS_GUIDE.md +63 -0
  17. package/skills/anysite-influencer-discovery/SKILL.md +398 -0
  18. package/skills/anysite-influencer-discovery/references/DISCOVERY_CRITERIA.md +50 -0
  19. package/skills/anysite-lead-generation/SKILL.md +1022 -0
  20. package/skills/anysite-lead-generation/references/LINKEDIN_STRATEGIES.md +739 -0
  21. package/skills/anysite-lead-generation/references/WEB_SCRAPING.md +910 -0
  22. package/skills/anysite-market-research/SKILL.md +379 -0
  23. package/skills/anysite-market-research/references/RESEARCH_METHODS.md +65 -0
  24. package/skills/anysite-person-analyzer/SKILL.md +604 -0
  25. package/skills/anysite-trend-analysis/SKILL.md +310 -0
  26. package/skills/anysite-trend-analysis/references/SOCIAL_MONITORING.md +46 -0
  27. package/skills/anysite-vc-analyst/SKILL.md +269 -0
@@ -0,0 +1,273 @@
1
+ ---
2
+ name: anysite-audience-analysis
3
+ description: Analyze audience demographics, engagement patterns, and follower behavior across Instagram, YouTube, and LinkedIn using anysite MCP server. Understand who engages with content, track audience growth, analyze follower quality, identify engagement patterns, and profile audience characteristics. Supports Instagram audience analysis, YouTube subscriber research, and LinkedIn connection profiling. Use when users need to understand target audiences, validate influencer audiences, analyze follower demographics, track engagement patterns, or optimize content for specific audience segments.
4
+ ---
5
+
6
+ # anysite Audience Analysis
7
+
8
+ Understand your audience through demographic analysis, engagement patterns, and follower behavior across Instagram, YouTube, and LinkedIn.
9
+
10
+ ## Overview
11
+
12
+ - **Analyze follower demographics** and characteristics
13
+ - **Track engagement patterns** and behavior
14
+ - **Evaluate audience quality** and authenticity
15
+ - **Identify content preferences** by audience segment
16
+ - **Optimize targeting** based on audience insights
17
+
18
+ **Coverage**: 60% - Focused on Instagram, YouTube, LinkedIn
19
+
20
+ ## Supported Platforms
21
+
22
+ - ✅ **Instagram**: Follower analysis, engagement patterns, audience location
23
+ - ✅ **YouTube**: Subscriber insights, comment demographics, viewer behavior
24
+ - ✅ **LinkedIn**: Connection analysis, professional demographics, engagement
25
+
26
+ ## Quick Start
27
+
28
+ **Step 1: Identify Audience Source**
29
+
30
+ Choose platform:
31
+ - Instagram: `get_instagram_user` + `get_instagram_user_friendships`
32
+ - YouTube: `get_youtube_channel_videos` + comment analysis
33
+ - LinkedIn: `get_linkedin_user_posts` + engagement analysis
34
+
35
+ **Step 2: Collect Audience Data**
36
+
37
+ Gather:
38
+ - Follower/subscriber counts
39
+ - Engagement metrics
40
+ - Demographics (from profiles)
41
+ - Behavior patterns
42
+
43
+ **Step 3: Analyze Patterns**
44
+
45
+ Look for:
46
+ - Audience segments
47
+ - Engagement drivers
48
+ - Content preferences
49
+ - Peak activity times
50
+
51
+ **Step 4: Generate Insights**
52
+
53
+ Deliver:
54
+ - Audience profile summary
55
+ - Engagement patterns
56
+ - Content recommendations
57
+ - Targeting suggestions
58
+
59
+ ## Common Workflows
60
+
61
+ ### Workflow 1: Instagram Audience Analysis
62
+
63
+ **Steps**:
64
+
65
+ 1. **Get Profile Overview**
66
+ ```
67
+ get_instagram_user(username)
68
+ → Follower count, post count, bio
69
+ ```
70
+
71
+ 2. **Analyze Followers** (sample)
72
+ ```
73
+ get_instagram_user_friendships(
74
+ user=username,
75
+ type="followers",
76
+ count=100
77
+ )
78
+
79
+ For each follower (sample):
80
+ - Profile type (personal, business, creator)
81
+ - Bio indicators (interests, location)
82
+ - Follower count (influence level)
83
+ ```
84
+
85
+ 3. **Engagement Pattern Analysis**
86
+ ```
87
+ get_instagram_user_posts(username, count=50)
88
+
89
+ For each post:
90
+ get_instagram_post_likes(post_id, count=100)
91
+ get_instagram_post_comments(post_id, count=50)
92
+
93
+ Analyze:
94
+ - Who engages most (power users)
95
+ - When engagement happens (timing)
96
+ - What content drives engagement
97
+ - Comment quality and topics
98
+ ```
99
+
100
+ 4. **Audience Segmentation**
101
+ ```
102
+ Group followers by:
103
+ - Engagement level (active, passive, ghost)
104
+ - Interests (from bios)
105
+ - Location (from profiles)
106
+ - Influence (follower counts)
107
+ ```
108
+
109
+ **Expected Output**:
110
+ - Audience demographics summary
111
+ - Engagement patterns
112
+ - Top engaged followers
113
+ - Content preferences
114
+
115
+ ### Workflow 2: YouTube Audience Insights
116
+
117
+ **Steps**:
118
+
119
+ 1. **Channel Overview**
120
+ ```
121
+ get_youtube_channel_videos(channel, count=50)
122
+
123
+ Aggregate:
124
+ - Total views
125
+ - Subscriber milestones
126
+ - Content mix
127
+ ```
128
+
129
+ 2. **Viewer Engagement Analysis**
130
+ ```
131
+ For recent videos:
132
+ get_youtube_video(video_id)
133
+ → Views, likes, comments
134
+
135
+ get_youtube_video_comments(video_id, count=200)
136
+ → Analyze commenter patterns
137
+ ```
138
+
139
+ 3. **Audience Demographics from Comments**
140
+ ```
141
+ From comments analyze:
142
+ - Questions asked (knowledge level)
143
+ - Topics discussed (interests)
144
+ - Language and tone
145
+ - Technical depth
146
+ ```
147
+
148
+ 4. **Content Performance by Audience**
149
+ ```
150
+ Correlate:
151
+ - High-view videos → audience interests
152
+ - High-comment videos → engagement topics
153
+ - High-like videos → quality indicators
154
+ ```
155
+
156
+ **Expected Output**:
157
+ - Viewer interest profile
158
+ - Engagement drivers
159
+ - Content optimization insights
160
+ - Audience knowledge level
161
+
162
+ ### Workflow 3: LinkedIn Audience Profiling
163
+
164
+ **Steps**:
165
+
166
+ 1. **Get Post History**
167
+ ```
168
+ get_linkedin_user_posts(urn, count=50)
169
+ ```
170
+
171
+ 2. **Analyze Engagement**
172
+ ```
173
+ For each post:
174
+ - Reaction count and types
175
+ - Comment depth
176
+ - Share count
177
+ - Post reach indicators
178
+ ```
179
+
180
+ 3. **Profile Engagers** (if accessible)
181
+ ```
182
+ From reactions/comments:
183
+ - Job titles
184
+ - Industries
185
+ - Companies
186
+ - Seniority levels
187
+ ```
188
+
189
+ 4. **Content-Audience Mapping**
190
+ ```
191
+ Correlate:
192
+ - Which topics get most engagement
193
+ - Which formats perform best
194
+ - Which audiences engage with what
195
+ - When different audiences are active
196
+ ```
197
+
198
+ **Expected Output**:
199
+ - Professional audience profile
200
+ - Engagement patterns by topic
201
+ - Content-audience fit analysis
202
+ - Posting optimization recommendations
203
+
204
+ ## MCP Tools Reference
205
+
206
+ ### Instagram
207
+ - `get_instagram_user` - Profile stats
208
+ - `get_instagram_user_friendships` - Follower/following lists
209
+ - `get_instagram_user_posts` - Post history
210
+ - `get_instagram_post_likes` - Who liked posts
211
+ - `get_instagram_post_comments` - Comment analysis
212
+
213
+ ### YouTube
214
+ - `get_youtube_channel_videos` - Channel content
215
+ - `get_youtube_video` - Video metrics
216
+ - `get_youtube_video_comments` - Audience engagement
217
+
218
+ ### LinkedIn
219
+ - `get_linkedin_user_posts` - Post history
220
+ - `get_linkedin_profile` - Profile insights
221
+
222
+ ## Audience Analysis Framework
223
+
224
+ **Demographic Analysis**:
225
+ ```
226
+ - Age range (inferred from profiles)
227
+ - Location (from bio/profiles)
228
+ - Interests (from bio keywords)
229
+ - Professional level (LinkedIn titles)
230
+ ```
231
+
232
+ **Behavioral Analysis**:
233
+ ```
234
+ - Engagement frequency
235
+ - Content preferences
236
+ - Peak activity times
237
+ - Interaction patterns
238
+ ```
239
+
240
+ **Quality Metrics**:
241
+ ```
242
+ - Real vs. fake followers
243
+ - Engagement authenticity
244
+ - Audience overlap
245
+ - Influence distribution
246
+ ```
247
+
248
+ ## Output Formats
249
+
250
+ **Chat Summary**:
251
+ - Audience profile highlights
252
+ - Key engagement patterns
253
+ - Content recommendations
254
+ - Strategic insights
255
+
256
+ **CSV Export**:
257
+ - Follower sample data
258
+ - Engagement metrics
259
+ - Segment distribution
260
+
261
+ **JSON Export**:
262
+ - Complete audience data
263
+ - Engagement time series
264
+ - Segmentation details
265
+
266
+ ## Reference Documentation
267
+
268
+ - **[PLATFORM_COVERAGE.md](references/PLATFORM_COVERAGE.md)** - Platform-specific audience analysis capabilities
269
+ - **[TOOL_MAPPING.md](references/TOOL_MAPPING.md)** - Mapping analysis needs to MCP tools
270
+
271
+ ---
272
+
273
+ **Ready to understand your audience?** Ask Claude to help you analyze followers, track engagement patterns, or profile audience characteristics!
@@ -0,0 +1,53 @@
1
+ # Platform-Specific Audience Analysis
2
+
3
+ ## Instagram Capabilities
4
+
5
+ **Direct Audience Data**:
6
+ - Follower/following lists (sample)
7
+ - Engagement on posts (likes, comments)
8
+ - Profile information from followers
9
+
10
+ **Analysis Techniques**:
11
+ - Follower quality assessment
12
+ - Engagement pattern tracking
13
+ - Content preference analysis
14
+ - Audience segmentation
15
+
16
+ **Limitations**:
17
+ - Can't access full follower list (privacy)
18
+ - Limited demographic data
19
+ - Engagement sample-based
20
+
21
+ ## YouTube Capabilities
22
+
23
+ **Direct Audience Data**:
24
+ - Comment analysis
25
+ - Video engagement metrics
26
+ - Channel growth indicators
27
+
28
+ **Analysis Techniques**:
29
+ - Viewer interest profiling
30
+ - Content performance analysis
31
+ - Community engagement assessment
32
+
33
+ **Limitations**:
34
+ - No direct subscriber access
35
+ - Demographics inferred from comments
36
+ - Limited geographic data
37
+
38
+ ## LinkedIn Capabilities
39
+
40
+ **Direct Audience Data**:
41
+ - Post engagement metrics
42
+ - Follower professional information
43
+ - Connection quality
44
+
45
+ **Analysis Techniques**:
46
+ - Professional demographic profiling
47
+ - Industry and seniority analysis
48
+ - Content-audience matching
49
+
50
+ **Limitations**:
51
+ - Privacy settings limit visibility
52
+ - Sample-based analysis
53
+ - Connections vs. followers distinction
@@ -0,0 +1,27 @@
1
+ # Audience Analysis Tool Mapping
2
+
3
+ ## Analysis Need → MCP Tool
4
+
5
+ **Follower Demographics**:
6
+ - Instagram: `get_instagram_user_friendships` → sample analysis
7
+ - LinkedIn: `get_linkedin_profile` → professional data
8
+
9
+ **Engagement Patterns**:
10
+ - Instagram: `get_instagram_user_posts` + `get_instagram_post_likes/comments`
11
+ - YouTube: `get_youtube_video` + `get_youtube_video_comments`
12
+ - LinkedIn: `get_linkedin_user_posts`
13
+
14
+ **Audience Growth**:
15
+ - Track follower counts over time
16
+ - Monitor engagement velocity
17
+ - Analyze new vs. existing engagement
18
+
19
+ **Content Preferences**:
20
+ - Correlate content types with engagement
21
+ - Analyze top-performing posts
22
+ - Track topic performance
23
+
24
+ **Audience Quality**:
25
+ - Analyze follower profiles
26
+ - Check engagement authenticity
27
+ - Assess comment quality
@@ -0,0 +1,373 @@
1
+ ---
2
+ name: anysite-brand-reputation
3
+ description: Monitor brand reputation and sentiment across Twitter/X, Reddit, Instagram, YouTube, and LinkedIn using anysite MCP server. Track brand mentions, analyze customer sentiment, monitor social conversations, identify reputation issues, and measure brand health. Supports social media listening, sentiment analysis, mention tracking, and crisis detection. Use when users need to monitor brand mentions, track customer sentiment, identify reputation risks, analyze brand perception, or measure social media presence and brand health across platforms.
4
+ ---
5
+
6
+ # anysite Brand Reputation Monitoring
7
+
8
+ Monitor and protect your brand reputation across social media platforms. Track mentions, analyze sentiment, and identify issues before they escalate.
9
+
10
+ ## Overview
11
+
12
+ - **Track brand mentions** across social platforms
13
+ - **Analyze sentiment** (positive, negative, neutral)
14
+ - **Monitor conversations** about your brand
15
+ - **Identify reputation risks** and crisis signals
16
+ - **Measure brand health** over time
17
+
18
+ **Coverage**: 65% - Pivoted from review platforms to social media monitoring; strong for Twitter, Reddit, Instagram, YouTube, LinkedIn
19
+
20
+ ## Supported Platforms
21
+
22
+ - ✅ **Twitter/X**: Real-time mentions, sentiment, viral content
23
+ - ✅ **Reddit**: Community discussions, detailed feedback, sentiment
24
+ - ✅ **Instagram**: Visual brand mentions, hashtag tracking, influencer posts
25
+ - ✅ **YouTube**: Video mentions, comment sentiment, brand coverage
26
+ - ✅ **LinkedIn**: Professional mentions, company updates, B2B sentiment
27
+
28
+ ## Quick Start
29
+
30
+ **Step 1: Set Up Monitoring**
31
+
32
+ Define:
33
+ - Brand keywords (company name, product names, misspellings)
34
+ - Platforms to monitor (Twitter, Reddit, Instagram, etc.)
35
+ - Monitoring frequency (real-time, daily, weekly)
36
+ - Alert thresholds (negative sentiment, volume spikes)
37
+
38
+ **Step 2: Search for Mentions**
39
+
40
+ Platform searches:
41
+ ```
42
+ Twitter: search_twitter_posts(query="brand name", count=100)
43
+ Reddit: search_reddit_posts(query="brand name", count=100)
44
+ Instagram: search_instagram_posts(query="#brandname", count=100)
45
+ LinkedIn: search_linkedin_posts(keywords="brand name", count=50)
46
+ ```
47
+
48
+ **Step 3: Analyze Sentiment**
49
+
50
+ For each mention:
51
+ - Classify: Positive, negative, neutral
52
+ - Categorize: Complaint, praise, question, general
53
+ - Prioritize: Urgency, reach, influence
54
+
55
+ **Step 4: Take Action**
56
+
57
+ Based on findings:
58
+ - Respond to negative mentions
59
+ - Amplify positive feedback
60
+ - Address product issues
61
+ - Engage with community
62
+
63
+ ## Common Workflows
64
+
65
+ ### Workflow 1: Daily Brand Monitoring
66
+
67
+ **Scenario**: Monitor brand mentions across all platforms daily
68
+
69
+ **Steps**:
70
+
71
+ 1. **Search All Platforms**
72
+ ```
73
+ # Twitter (real-time pulse)
74
+ search_twitter_posts(query="brand name OR @brandhandle", count=100)
75
+ Filter: Last 24 hours
76
+
77
+ # Reddit (detailed discussions)
78
+ search_reddit_posts(query="brand name", count=50)
79
+ Filter: Last 24 hours
80
+
81
+ # Instagram (visual mentions)
82
+ search_instagram_posts(query="#brandname OR brand name", count=50)
83
+
84
+ # LinkedIn (professional mentions)
85
+ search_linkedin_posts(keywords="brand name", count=20)
86
+
87
+ # YouTube (video coverage)
88
+ search_youtube_videos(query="brand name review OR brand name unboxing", count=20)
89
+ ```
90
+
91
+ 2. **Classify Mentions**
92
+ ```
93
+ For each mention:
94
+
95
+ Sentiment:
96
+ - Positive: Praise, recommendation, satisfaction
97
+ - Negative: Complaint, criticism, problem
98
+ - Neutral: Question, general mention, factual
99
+
100
+ Category:
101
+ - Product feedback
102
+ - Customer service issue
103
+ - Feature request
104
+ - General discussion
105
+ - Competitor comparison
106
+ ```
107
+
108
+ 3. **Prioritize Issues**
109
+ ```
110
+ High Priority:
111
+ - Negative + High reach (viral potential)
112
+ - Multiple complaints about same issue
113
+ - Influencer negative mention
114
+ - Legal/safety concerns
115
+
116
+ Medium Priority:
117
+ - Individual complaints
118
+ - Feature requests
119
+ - Questions
120
+ - General feedback
121
+
122
+ Low Priority:
123
+ - Positive mentions
124
+ - Neutral discussions
125
+ - General brand awareness
126
+ ```
127
+
128
+ 4. **Generate Daily Report**
129
+ ```
130
+ Summary:
131
+ - Total mentions (by platform)
132
+ - Sentiment breakdown (% positive/negative/neutral)
133
+ - Top issues identified
134
+ - Viral/trending mentions
135
+ - Recommended actions
136
+ ```
137
+
138
+ **Expected Output**:
139
+ - Daily mention count: 50-200
140
+ - Sentiment distribution
141
+ - Top 5 issues to address
142
+ - Action items for team
143
+
144
+ ### Workflow 2: Crisis Detection and Management
145
+
146
+ **Scenario**: Identify and track potential PR crises
147
+
148
+ **Steps**:
149
+
150
+ 1. **Monitor for Anomalies**
151
+ ```
152
+ Track baseline:
153
+ - Average mentions per day
154
+ - Average sentiment score
155
+ - Typical engagement levels
156
+
157
+ Alert triggers:
158
+ - Mentions >2x baseline
159
+ - Negative sentiment >50%
160
+ - Viral negative content (high engagement)
161
+ ```
162
+
163
+ 2. **Deep Dive on Spikes**
164
+ ```
165
+ When alert triggered:
166
+
167
+ search_twitter_posts(query="brand name", count=500)
168
+ → Identify what's driving spike
169
+
170
+ search_reddit_posts(query="brand name", count=200)
171
+ → Check community discussions
172
+
173
+ For viral posts:
174
+ get_twitter_post(post_id) or get_reddit_post(url)
175
+ → Analyze reach and engagement
176
+ → Read comments for context
177
+ ```
178
+
179
+ 3. **Assess Crisis Severity**
180
+ ```
181
+ Severity factors:
182
+ - Volume (how many mentions)
183
+ - Velocity (how fast growing)
184
+ - Reach (influencer involvement, media coverage)
185
+ - Sentiment (how negative)
186
+ - Validity (legitimate issue vs. misunderstanding)
187
+ ```
188
+
189
+ 4. **Track Crisis Evolution**
190
+ ```
191
+ Hourly monitoring:
192
+ - Mention volume trend
193
+ - Sentiment shifts
194
+ - Platform spread
195
+ - Media pickup
196
+ - Official response impact
197
+ ```
198
+
199
+ 5. **Measure Resolution**
200
+ ```
201
+ Track until:
202
+ - Volume returns to baseline
203
+ - Sentiment improves
204
+ - No new negative mentions for 24-48h
205
+ ```
206
+
207
+ **Expected Output**:
208
+ - Crisis timeline
209
+ - Mention volume graph
210
+ - Sentiment tracking
211
+ - Key influencers/posts
212
+ - Response effectiveness
213
+
214
+ ### Workflow 3: Competitive Reputation Benchmarking
215
+
216
+ **Scenario**: Compare brand sentiment vs. competitors
217
+
218
+ **Steps**:
219
+
220
+ 1. **Define Competitors**
221
+ ```
222
+ List 3-5 main competitors
223
+ ```
224
+
225
+ 2. **Gather Mentions for All**
226
+ ```
227
+ For brand + each competitor:
228
+ search_twitter_posts(query=brand, count=200)
229
+ search_reddit_posts(query=brand, count=100)
230
+ search_linkedin_posts(keywords=brand, count=50)
231
+ ```
232
+
233
+ 3. **Calculate Brand Health Scores**
234
+ ```
235
+ For each brand:
236
+
237
+ Mention Volume: Total mentions
238
+ Sentiment Score: (Positive - Negative) / Total
239
+ Engagement Rate: Avg engagement per mention
240
+ Share of Voice: Your mentions / Total category mentions
241
+ ```
242
+
243
+ 4. **Analyze Strengths/Weaknesses**
244
+ ```
245
+ Compare:
246
+ - What are competitors praised for?
247
+ - What are competitors criticized for?
248
+ - Where do we excel?
249
+ - Where do we fall short?
250
+ ```
251
+
252
+ 5. **Identify Opportunities**
253
+ ```
254
+ Look for:
255
+ - Unmet customer needs (complaints about competitors)
256
+ - Messaging gaps (what they're not saying)
257
+ - Product differentiation opportunities
258
+ - Customer service advantages
259
+ ```
260
+
261
+ **Expected Output**:
262
+ - Competitive sentiment matrix
263
+ - Brand health scores comparison
264
+ - Strength/weakness analysis
265
+ - Strategic opportunities
266
+
267
+ ## MCP Tools Reference
268
+
269
+ ### Twitter/X
270
+ - `search_twitter_posts(query, count)` - Find brand mentions
271
+ - `get_twitter_user(user)` - Check brand profile stats
272
+ - `get_twitter_user_posts(user, count)` - Monitor brand account
273
+
274
+ ### Reddit
275
+ - `search_reddit_posts(query, subreddit, count)` - Find discussions
276
+ - `get_reddit_post(url)` - Get post details and sentiment
277
+ - `get_reddit_post_comments(url)` - Deep dive on discussions
278
+
279
+ ### Instagram
280
+ - `search_instagram_posts(query, count)` - Find visual mentions
281
+ - `get_instagram_post(post_id)` - Analyze mention engagement
282
+ - `get_instagram_post_comments(post, count)` - Read feedback
283
+
284
+ ### YouTube
285
+ - `search_youtube_videos(query, count)` - Find video mentions
286
+ - `get_youtube_video(video)` - Get video details
287
+ - `get_youtube_video_comments(video, count)` - Analyze sentiment
288
+
289
+ ### LinkedIn
290
+ - `search_linkedin_posts(keywords, count)` - Professional mentions
291
+ - `get_linkedin_company_posts(urn, count)` - Monitor own posts
292
+
293
+ ## Sentiment Analysis Framework
294
+
295
+ **Manual Sentiment Classification**:
296
+
297
+ **Positive Indicators**:
298
+ - "Love", "great", "amazing", "best"
299
+ - Recommendations ("highly recommend")
300
+ - Repeat purchase ("buying again")
301
+ - Comparisons ("better than X")
302
+
303
+ **Negative Indicators**:
304
+ - "Disappointed", "worst", "terrible", "awful"
305
+ - Problems ("doesn't work", "broken")
306
+ - Comparisons ("X is better")
307
+ - Demands ("need refund", "fix this")
308
+
309
+ **Neutral Indicators**:
310
+ - Questions without sentiment
311
+ - Factual statements
312
+ - General mentions
313
+ - Informational content
314
+
315
+ **Sentiment Score**:
316
+ ```
317
+ Score = (Positive mentions - Negative mentions) / Total mentions × 100
318
+
319
+ +50 to +100: Excellent
320
+ +20 to +49: Good
321
+ -19 to +19: Neutral/Mixed
322
+ -20 to -49: Poor
323
+ -50 to -100: Critical
324
+ ```
325
+
326
+ ## Monitoring Metrics
327
+
328
+ **Volume Metrics**:
329
+ - Total mentions per day/week/month
330
+ - Mentions by platform
331
+ - Trend over time
332
+
333
+ **Sentiment Metrics**:
334
+ - Sentiment distribution (% positive/negative/neutral)
335
+ - Sentiment score (net promoter style)
336
+ - Sentiment trend over time
337
+
338
+ **Engagement Metrics**:
339
+ - Average likes/shares per mention
340
+ - Viral mentions (>1000 engagements)
341
+ - Influencer mentions
342
+
343
+ **Issue Tracking**:
344
+ - Top complaints (by frequency)
345
+ - Product/service issues mentioned
346
+ - Feature requests
347
+ - Customer service mentions
348
+
349
+ ## Output Formats
350
+
351
+ **Chat Summary**:
352
+ - Daily mention highlights
353
+ - Sentiment overview
354
+ - Top issues identified
355
+ - Recommended actions
356
+
357
+ **CSV Export**:
358
+ - Mention list with sentiment
359
+ - Platform, date, reach
360
+ - Issue categorization
361
+
362
+ **JSON Export**:
363
+ - Complete mention data
364
+ - Time-series sentiment
365
+ - Engagement metrics
366
+
367
+ ## Reference Documentation
368
+
369
+ - **[MONITORING_GUIDE.md](references/MONITORING_GUIDE.md)** - Best practices for brand monitoring, crisis response protocols, and sentiment analysis techniques
370
+
371
+ ---
372
+
373
+ **Ready to monitor your brand?** Ask Claude to help you track mentions, analyze sentiment, or identify reputation risks across social platforms!