@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,642 @@
1
+ ---
2
+ name: anysite-competitor-intelligence
3
+ description: Competitive intelligence gathering using anysite MCP server across LinkedIn, social media, Y Combinator, and the web. Track competitor activities, analyze hiring patterns, monitor content strategies, benchmark market positioning, research startup competitors, and gather strategic intelligence. Supports LinkedIn (companies, employees, posts), Instagram, Twitter/X, Reddit, YouTube, Y Combinator, and web scraping. Use when users need to analyze competitors, track competitive movements, research market positioning, monitor hiring velocity, or gather strategic market intelligence.
4
+ ---
5
+
6
+ # anysite Competitor Intelligence
7
+
8
+ Comprehensive competitive intelligence gathering using anysite MCP server. Track competitors across LinkedIn, social media, and the web to understand their strategies, monitor their activities, and identify competitive opportunities.
9
+
10
+ ## Overview
11
+
12
+ The anysite Competitor Intelligence skill helps you:
13
+ - **Track competitor companies** on LinkedIn and Y Combinator
14
+ - **Monitor hiring patterns** to identify growth areas and strategic priorities
15
+ - **Analyze content strategies** across social platforms
16
+ - **Benchmark positioning** and messaging
17
+ - **Identify key employees** and leadership changes
18
+ - **Track competitive movements** like funding, launches, partnerships
19
+
20
+ This skill provides 90% coverage of competitive intelligence capabilities with excellent LinkedIn and social media monitoring.
21
+
22
+ ## Supported Platforms
23
+
24
+ - ✅ **LinkedIn** (Primary): Company pages, employee search, post monitoring, job listings, growth tracking
25
+ - ✅ **Y Combinator**: Startup competitor research, funding data, batch analysis
26
+ - ✅ **Twitter/X**: Social presence monitoring, content strategy, engagement analysis
27
+ - ✅ **Reddit**: Community sentiment, product discussions, competitor mentions
28
+ - ✅ **Instagram**: Brand presence, visual content strategy, influencer partnerships
29
+ - ✅ **YouTube**: Video content, channel growth, community engagement
30
+ - ✅ **Web Scraping**: Company websites, press releases, blog content
31
+ - ✅ **SEC**: Public company filings for competitors
32
+
33
+ ## Quick Start
34
+
35
+ ### Step 1: Identify Competitors
36
+
37
+ Choose your competitor identification method:
38
+
39
+ | Goal | Primary Tool | Output |
40
+ |------|-------------|--------|
41
+ | Find similar companies | `search_linkedin_companies` | Company list with metrics |
42
+ | Research startup competitors | `search_yc_companies` | YC startups by industry/batch |
43
+ | Discover by employee search | `search_linkedin_users` → companies | Companies from employee profiles |
44
+ | Find by keywords/industry | `search_linkedin_companies` + keywords | Filtered company list |
45
+
46
+ ### Step 2: Gather Competitive Intelligence
47
+
48
+ Execute MCP tools to collect competitor data:
49
+
50
+ **Company Profile Analysis**
51
+ ```
52
+ Tool: mcp__anysite__get_linkedin_company
53
+ Parameters:
54
+ - company: "competitor-name" or LinkedIn URL
55
+ Returns: Description, size, location, website, specialties
56
+ ```
57
+
58
+ **Employee Intelligence**
59
+ ```
60
+ Tool: mcp__anysite__search_linkedin_users
61
+ Parameters:
62
+ - company_keywords: "Competitor Inc"
63
+ - title: "VP OR Director OR Head" (for leadership)
64
+ - count: 50
65
+ Returns: Key employees, org structure insights
66
+ ```
67
+
68
+ **Hiring Velocity Analysis**
69
+ ```
70
+ Tool: mcp__anysite__get_linkedin_company_employee_stats
71
+ Parameters:
72
+ - urn: <company URN from search>
73
+ Returns: Growth metrics, department distribution
74
+ ```
75
+
76
+ **Content Strategy**
77
+ ```
78
+ Tool: mcp__anysite__get_linkedin_company_posts
79
+ Parameters:
80
+ - urn: <company URN>
81
+ - count: 20
82
+ Returns: Recent posts, engagement, messaging themes
83
+ ```
84
+
85
+ ### Step 3: Process and Analyze
86
+
87
+ Analyze gathered data for:
88
+ - **Growth signals**: Hiring velocity, funding, expansion
89
+ - **Strategic priorities**: Department hiring, job postings, content themes
90
+ - **Market positioning**: Messaging, target audience, value props
91
+ - **Competitive threats**: New products, partnerships, key hires
92
+
93
+ ### Step 4: Format Output
94
+
95
+ **Chat Summary**: Competitive insights with key findings
96
+ **CSV Export**: Competitor comparison matrix
97
+ **JSON Export**: Complete data for tracking over time
98
+
99
+ ## Common Workflows
100
+
101
+ ### Workflow 1: Comprehensive Competitor Profile
102
+
103
+ **Scenario**: Deep dive on a specific competitor
104
+
105
+ **Steps**:
106
+
107
+ 1. **Company Overview**
108
+ ```
109
+ get_linkedin_company("competitor")
110
+ → Size, industry, description, website, founding year
111
+ ```
112
+
113
+ 2. **Leadership Team**
114
+ ```
115
+ search_linkedin_users(
116
+ company_keywords="Competitor Inc",
117
+ title="C-level OR VP OR SVP OR President"
118
+ )
119
+ → C-suite and VP-level executives
120
+ ```
121
+
122
+ 3. **Organizational Structure**
123
+ ```
124
+ get_linkedin_company_employee_stats(urn)
125
+ → Total employees, growth rate, department breakdown
126
+
127
+ For each department:
128
+ search_linkedin_users(company_keywords, title=<department_title>)
129
+ → Team sizes, key roles
130
+ ```
131
+
132
+ 4. **Hiring Intelligence**
133
+ ```
134
+ search_linkedin_jobs(keywords="Competitor Inc")
135
+ → Open positions, hiring priorities, expansion areas
136
+ ```
137
+
138
+ 5. **Content Strategy**
139
+ ```
140
+ get_linkedin_company_posts(urn, count=50)
141
+ → Posting frequency, themes, engagement levels
142
+
143
+ get_twitter_user("competitor")
144
+ get_twitter_user_posts("competitor", count=50)
145
+ → Social media presence and strategy
146
+ ```
147
+
148
+ 6. **Product/Market Intelligence**
149
+ ```
150
+ parse_webpage("https://competitor.com")
151
+ → Positioning, messaging, product offerings
152
+
153
+ parse_webpage("https://competitor.com/blog")
154
+ → Content topics, thought leadership
155
+
156
+ search_reddit_posts(query="Competitor Inc", count=20)
157
+ → Customer sentiment, product feedback
158
+ ```
159
+
160
+ **Expected Output**:
161
+ - Complete company profile
162
+ - Leadership team roster (10-20 executives)
163
+ - Hiring velocity and priorities
164
+ - Content strategy analysis
165
+ - Product positioning insights
166
+ - Customer sentiment summary
167
+
168
+ ### Workflow 2: Competitive Landscape Mapping
169
+
170
+ **Scenario**: Map all competitors in your space
171
+
172
+ **Steps**:
173
+
174
+ 1. **Identify Competitors**
175
+ ```
176
+ search_linkedin_companies(
177
+ keywords="<your industry keywords>",
178
+ industry="<industry>",
179
+ employee_count=["51-200", "201-500", "501-1000"],
180
+ count=50
181
+ )
182
+ ```
183
+
184
+ 2. **Filter and Prioritize**
185
+ ```
186
+ For each company:
187
+ get_linkedin_company(company)
188
+ → Review description for relevance
189
+ → Check employee count and growth
190
+ → Verify competitive overlap
191
+ ```
192
+
193
+ 3. **Categorize Competitors**
194
+ ```
195
+ Direct: Same products, same market
196
+ Indirect: Similar products, different market
197
+ Potential: Adjacent space, could expand
198
+ ```
199
+
200
+ 4. **Size and Growth Metrics**
201
+ ```
202
+ For each competitor:
203
+ get_linkedin_company_employee_stats(urn)
204
+ → Employee count, growth rate
205
+ → Department distribution
206
+ ```
207
+
208
+ 5. **Positioning Analysis**
209
+ ```
210
+ For each competitor:
211
+ get_linkedin_company_posts(urn, count=10)
212
+ → Key messaging themes
213
+
214
+ parse_webpage(website + "/about")
215
+ → Value proposition, target market
216
+ ```
217
+
218
+ 6. **Funding and Traction** (for startups)
219
+ ```
220
+ search_yc_companies(query="<industry>")
221
+ → YC competitors with funding data
222
+
223
+ For each YC company:
224
+ get_yc_company(company)
225
+ → Batch, team size, description
226
+ ```
227
+
228
+ **Expected Output**:
229
+ - 20-50 competitors identified
230
+ - Categorized by competitive threat level
231
+ - Size and growth metrics for each
232
+ - Positioning and messaging summaries
233
+ - Competitive landscape map
234
+
235
+ ### Workflow 3: Hiring Velocity Tracking
236
+
237
+ **Scenario**: Monitor competitor hiring to identify growth areas
238
+
239
+ **Steps**:
240
+
241
+ 1. **Baseline Employee Count**
242
+ ```
243
+ get_linkedin_company_employee_stats(competitor_urn)
244
+ → Current total employees
245
+ → Department distribution
246
+ ```
247
+
248
+ 2. **Track Open Positions**
249
+ ```
250
+ search_linkedin_jobs(keywords="Competitor Inc")
251
+ → All open positions
252
+
253
+ Group by department:
254
+ - Engineering roles
255
+ - Sales roles
256
+ - Marketing roles
257
+ - Operations roles
258
+ ```
259
+
260
+ 3. **Analyze Recent Hires**
261
+ ```
262
+ search_linkedin_users(
263
+ company_keywords="Competitor Inc",
264
+ count=100
265
+ )
266
+ → Get all employees
267
+
268
+ Filter for recent joins:
269
+ get_linkedin_user_experience(urn)
270
+ → Start date at current company
271
+ → Identify hires from last 3-6 months
272
+ ```
273
+
274
+ 4. **Track Key Departures**
275
+ ```
276
+ For former employees:
277
+ search_linkedin_users(keywords="Competitor Inc")
278
+ → Filter profiles showing "Former" or past employment
279
+
280
+ Identify:
281
+ - Leadership departures
282
+ - Team exodus (multiple from same department)
283
+ - Moves to other competitors
284
+ ```
285
+
286
+ 5. **Competitive Recruiting Analysis**
287
+ ```
288
+ Identify where competitors hire from:
289
+ - For each new hire: get previous companies
290
+ - Track talent pipelines
291
+ - Identify poaching patterns
292
+ ```
293
+
294
+ **Expected Output**:
295
+ - Hiring velocity (hires per month/quarter)
296
+ - Department growth priorities
297
+ - Key hires and their backgrounds
298
+ - Leadership changes
299
+ - Talent pipeline insights
300
+
301
+ ### Workflow 4: Content Strategy Benchmarking
302
+
303
+ **Scenario**: Analyze competitor content across platforms
304
+
305
+ **Steps**:
306
+
307
+ 1. **LinkedIn Content**
308
+ ```
309
+ get_linkedin_company_posts(urn, count=50)
310
+
311
+ Analyze:
312
+ - Posting frequency (posts/week)
313
+ - Content types (articles, videos, polls)
314
+ - Engagement rates (likes, comments, shares)
315
+ - Topics and themes
316
+ - Employee advocacy (shares/comments from team)
317
+ ```
318
+
319
+ 2. **Twitter/X Content**
320
+ ```
321
+ get_twitter_user("competitor")
322
+ get_twitter_user_posts("competitor", count=100)
323
+
324
+ Analyze:
325
+ - Tweet frequency
326
+ - Engagement metrics
327
+ - Content themes
328
+ - Use of threads/media
329
+ - Response rates
330
+ ```
331
+
332
+ 3. **YouTube Content**
333
+ ```
334
+ get_youtube_channel_videos("competitor", count=30)
335
+
336
+ For each video:
337
+ get_youtube_video(video_id)
338
+
339
+ Analyze:
340
+ - Upload frequency
341
+ - View counts
342
+ - Engagement (likes, comments)
343
+ - Content types (demos, webinars, customer stories)
344
+ - Video length and production quality
345
+ ```
346
+
347
+ 4. **Instagram Content** (if B2C)
348
+ ```
349
+ get_instagram_user("competitor")
350
+ get_instagram_user_posts("competitor", count=50)
351
+
352
+ Analyze:
353
+ - Post frequency
354
+ - Visual style/branding
355
+ - Engagement rates
356
+ - Use of Reels vs. static posts
357
+ - Influencer partnerships
358
+ ```
359
+
360
+ 5. **Blog/Website Content**
361
+ ```
362
+ parse_webpage("https://competitor.com/blog")
363
+ get_sitemap("https://competitor.com")
364
+ → Find all blog posts
365
+
366
+ Analyze:
367
+ - Publishing frequency
368
+ - Content topics
369
+ - SEO keywords
370
+ - Thought leadership positioning
371
+ ```
372
+
373
+ 6. **Community Sentiment**
374
+ ```
375
+ search_reddit_posts(query="Competitor Inc", count=50)
376
+ search_reddit_posts(query="competitor product name", count=50)
377
+
378
+ Analyze:
379
+ - Customer feedback
380
+ - Common complaints
381
+ - Product strengths
382
+ - Feature requests
383
+ ```
384
+
385
+ **Expected Output**:
386
+ - Cross-platform content strategy matrix
387
+ - Engagement benchmarks
388
+ - Content themes and messaging
389
+ - Platform prioritization insights
390
+ - Community sentiment summary
391
+
392
+ ## MCP Tools Reference
393
+
394
+ ### LinkedIn Company Intelligence
395
+
396
+ **search_linkedin_companies**
397
+ - Search for companies by keywords, location, industry, size
398
+ - Returns: Company list with basic info and URNs
399
+
400
+ **get_linkedin_company**
401
+ - Get detailed company profile
402
+ - Returns: Description, website, size, industry, specialties
403
+
404
+ **get_linkedin_company_employee_stats**
405
+ - Get employee statistics and growth
406
+ - Returns: Total employees, growth metrics, department distribution
407
+
408
+ **get_linkedin_company_posts**
409
+ - Get recent company posts
410
+ - Returns: Posts with engagement metrics, content, timestamps
411
+
412
+ ### LinkedIn People Intelligence
413
+
414
+ **search_linkedin_users**
415
+ - Find employees at competitor companies
416
+ - Filter by title, department, location
417
+ - Returns: Employee profiles with titles and URLs
418
+
419
+ **get_linkedin_profile**
420
+ - Get detailed employee profile
421
+ - Returns: Work history, education, skills
422
+
423
+ **get_linkedin_user_experience**
424
+ - Get detailed work history
425
+ - Returns: All positions with dates and descriptions
426
+
427
+ ### Y Combinator Intelligence
428
+
429
+ **search_yc_companies**
430
+ - Search YC companies by industry, batch, filters
431
+ - Returns: Company list with batch, team size, status
432
+
433
+ **get_yc_company**
434
+ - Get detailed YC company profile
435
+ - Returns: Description, founders, batch, status, links
436
+
437
+ **search_yc_founders**
438
+ - Search for founders by criteria
439
+ - Returns: Founder profiles with company associations
440
+
441
+ ### Social Media Monitoring
442
+
443
+ **Twitter/X**:
444
+ - `search_twitter_posts` - Find competitor mentions
445
+ - `get_twitter_user` - Get competitor profile
446
+ - `get_twitter_user_posts` - Get recent tweets
447
+
448
+ **Instagram**:
449
+ - `search_instagram_posts` - Find hashtag/keyword mentions
450
+ - `get_instagram_user` - Get profile stats
451
+ - `get_instagram_user_posts` - Get recent posts
452
+
453
+ **Reddit**:
454
+ - `search_reddit_posts` - Find discussions about competitors
455
+ - `get_reddit_post` - Get post details and sentiment
456
+
457
+ **YouTube**:
458
+ - `search_youtube_videos` - Find competitor videos
459
+ - `get_youtube_channel_videos` - Get all channel videos
460
+ - `get_youtube_video` - Get video details and metrics
461
+
462
+ ### Web Intelligence
463
+
464
+ **parse_webpage**
465
+ - Extract content from competitor websites
466
+ - Returns: Text content, links, contacts
467
+
468
+ **get_sitemap**
469
+ - Get all pages on competitor site
470
+ - Returns: URL list for comprehensive analysis
471
+
472
+ **duckduckgo_search**
473
+ - Search for competitor mentions across the web
474
+ - Returns: Search results with URLs and descriptions
475
+
476
+ ## Output Formats
477
+
478
+ ### Chat Summary
479
+
480
+ Provides competitive intelligence highlights:
481
+ - Key findings and insights
482
+ - Competitive threats identified
483
+ - Growth signals and strategic moves
484
+ - Recommended actions
485
+ - Top 3-5 competitors to watch
486
+
487
+ ### CSV Export
488
+
489
+ Competitor comparison matrix with:
490
+ - Company name, size, location
491
+ - Employee count and growth rate
492
+ - Posting frequency and engagement
493
+ - Key differentiators
494
+ - Competitive threat score
495
+
496
+ ### JSON Export
497
+
498
+ Complete competitive data for:
499
+ - Time-series tracking
500
+ - Dashboard visualization
501
+ - Automated monitoring
502
+ - Integration with BI tools
503
+
504
+ ## Advanced Features
505
+
506
+ ### Competitive Intelligence Dashboard
507
+
508
+ Track competitors over time by storing data and comparing:
509
+
510
+ **Monthly Snapshot**:
511
+ ```json
512
+ {
513
+ "date": "2026-01-29",
514
+ "competitors": [
515
+ {
516
+ "name": "Competitor A",
517
+ "employees": 350,
518
+ "monthly_growth": 8,
519
+ "open_positions": 25,
520
+ "linkedin_posts": 12,
521
+ "twitter_followers": 5400,
522
+ "funding_stage": "Series B"
523
+ }
524
+ ]
525
+ }
526
+ ```
527
+
528
+ **Trend Analysis**:
529
+ - Employee growth over 6 months
530
+ - Content output changes
531
+ - Positioning shifts
532
+ - Leadership changes
533
+
534
+ ### SWOT Analysis Framework
535
+
536
+ **Strengths** (from LinkedIn, website, reviews):
537
+ - Team expertise (LinkedIn profiles)
538
+ - Product features (website, Reddit feedback)
539
+ - Market position (company size, growth)
540
+ - Brand recognition (social followers, engagement)
541
+
542
+ **Weaknesses** (from reviews, job postings, employee turnover):
543
+ - Customer complaints (Reddit, review sites)
544
+ - Hiring challenges (multiple re-postings)
545
+ - Employee turnover (LinkedIn departures)
546
+ - Product gaps (feature requests in forums)
547
+
548
+ **Opportunities** (from market analysis):
549
+ - Underserved segments (job posting patterns)
550
+ - Geographic expansion (new office locations)
551
+ - Product expansion (new roles, content themes)
552
+
553
+ **Threats** (from competitive monitoring):
554
+ - New entrants (YC batch analysis)
555
+ - Competitive hiring (talent poaching)
556
+ - Product launches (company posts, blogs)
557
+ - Pricing changes (website updates)
558
+
559
+ ### Win/Loss Analysis
560
+
561
+ Track deals against specific competitors:
562
+
563
+ **Data Points to Collect**:
564
+ - Competitor encountered (company name)
565
+ - Deal stage (lost/won)
566
+ - Key differentiators discussed
567
+ - Pricing comparison
568
+ - Feature comparison
569
+ - Decision factors
570
+
571
+ **Intelligence Gathering**:
572
+ ```
573
+ For each competitor in win/loss:
574
+ 1. get_linkedin_company → Current positioning
575
+ 2. parse_webpage(website + "/pricing") → Pricing strategy
576
+ 3. parse_webpage(website + "/features") → Feature set
577
+ 4. search_reddit_posts(competitor) → Customer feedback
578
+ 5. get_linkedin_company_posts → Recent messaging
579
+ ```
580
+
581
+ **Analysis**:
582
+ - Win rate by competitor
583
+ - Common objections
584
+ - Competitive advantages/disadvantages
585
+ - Pricing positioning
586
+ - Feature gaps
587
+
588
+ ## Recommendations
589
+
590
+ **For Local/Retail Competitors**:
591
+ Focus on:
592
+ - LinkedIn company presence
593
+ - Instagram brand content
594
+ - Website location pages
595
+ - Reddit community discussions
596
+
597
+ **For Tech/SaaS Competitors**:
598
+ Excellent coverage through:
599
+ - LinkedIn (primary intelligence)
600
+ - Y Combinator (for startups)
601
+ - Twitter (tech community presence)
602
+ - Product Hunt mentions
603
+
604
+ **For Enterprise Competitors**:
605
+ - LinkedIn extremely comprehensive
606
+ - SEC filings for public companies
607
+ - Professional social presence
608
+ - Limited need for consumer platforms
609
+
610
+ ## Reference Documentation
611
+
612
+ - **[ANALYSIS_PATTERNS.md](references/ANALYSIS_PATTERNS.md)** - Competitive analysis frameworks, SWOT templates, and intelligence gathering patterns
613
+
614
+ ## Troubleshooting
615
+
616
+ ### Issue: Competitor Not Found on LinkedIn
617
+
618
+ **Solution**:
619
+ - Try company name variations
620
+ - Search for employees and extract company
621
+ - Check if using DBA vs. legal name
622
+ - Try website domain search
623
+
624
+ ### Issue: Limited Employee Data
625
+
626
+ **Solution**:
627
+ - Employees may have privacy settings
628
+ - Try searching by title without company filter
629
+ - Focus on public leadership team
630
+ - Use website team pages as alternative
631
+
632
+ ### Issue: No Recent Company Posts
633
+
634
+ **Solution**:
635
+ - Company may not be active on LinkedIn
636
+ - Check Twitter/Instagram instead
637
+ - Use website blog for content analysis
638
+ - Focus on employee posts mentioning company
639
+
640
+ ---
641
+
642
+ **Ready to analyze competitors?** Ask Claude to help you research competitors, track hiring patterns, or benchmark competitive positioning using this skill!