@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,379 @@
1
+ ---
2
+ name: anysite-market-research
3
+ description: Conduct comprehensive market research using Y Combinator data, SEC filings, social media insights, and web scraping via anysite MCP server. Analyze tech markets, research startup ecosystems, study public companies, identify market opportunities, and understand competitive dynamics. Supports startup discovery, industry analysis, public company research, and social sentiment analysis. Use when users need to analyze market opportunities, research industries, evaluate startups, study public companies, or gather market intelligence for strategic planning and investment decisions.
4
+ ---
5
+
6
+ # anysite Market Research
7
+
8
+ Comprehensive market research using Y Combinator, SEC, social media, and web data through anysite MCP. Analyze tech markets, research startups, and study competitive landscapes.
9
+
10
+ ## Overview
11
+
12
+ - **Research startup ecosystems** via Y Combinator data
13
+ - **Analyze public companies** through SEC filings
14
+ - **Gather market intelligence** from social platforms
15
+ - **Study industry trends** across communities
16
+ - **Identify market opportunities** through data analysis
17
+
18
+ **Coverage**: 70% - Excellent for tech/startup markets; pivoted from local business to tech focus
19
+
20
+ ## Supported Platforms
21
+
22
+ - ✅ **Y Combinator**: Startup research, batch analysis, founder discovery, funding data
23
+ - ✅ **SEC**: Public company filings, financial data, disclosures
24
+ - ✅ **Reddit**: Market sentiment, community insights, product discussions
25
+ - ✅ **LinkedIn**: Industry trends, company intelligence, professional discussions
26
+ - ✅ **Twitter/X**: Market pulse, news, influencer opinions
27
+ - ✅ **Web Scraping**: Company websites, industry reports, market data
28
+
29
+ ## Quick Start
30
+
31
+ **Step 1: Define Research Scope**
32
+
33
+ Choose focus:
34
+ - Startup ecosystem: `search_yc_companies`
35
+ - Public companies: `sec_search_companies`
36
+ - Industry sentiment: `search_reddit_posts`, `search_twitter_posts`
37
+ - Company intelligence: `search_linkedin_companies`
38
+
39
+ **Step 2: Gather Data**
40
+
41
+ Execute searches:
42
+ ```
43
+ # Startup research
44
+ search_yc_companies(industries=["fintech"], batches=["W24", "S23"])
45
+
46
+ # Public company research
47
+ sec_search_companies(entity_name="tech company", forms=["10-K"])
48
+
49
+ # Market sentiment
50
+ search_reddit_posts(query="fintech trends", count=100)
51
+ ```
52
+
53
+ **Step 3: Analyze Results**
54
+
55
+ Extract insights:
56
+ - Market size indicators
57
+ - Competitive landscape
58
+ - Technology trends
59
+ - Consumer sentiment
60
+ - Funding patterns
61
+
62
+ **Step 4: Synthesize Findings**
63
+
64
+ Deliver:
65
+ - Market opportunity assessment
66
+ - Competitive analysis
67
+ - Trend identification
68
+ - Strategic recommendations
69
+
70
+ ## Common Workflows
71
+
72
+ ### Workflow 1: Startup Ecosystem Analysis
73
+
74
+ **Scenario**: Analyze fintech startup landscape
75
+
76
+ **Steps**:
77
+
78
+ 1. **Find Startups**
79
+ ```
80
+ search_yc_companies(
81
+ industries=["fintech"],
82
+ batches=["W24", "S23", "W23", "S22"],
83
+ count=100
84
+ )
85
+ ```
86
+
87
+ 2. **Categorize by Focus**
88
+ ```
89
+ For each startup:
90
+ get_yc_company(company)
91
+
92
+ Group by:
93
+ - Payments
94
+ - Lending
95
+ - Investment/Trading
96
+ - Banking
97
+ - Insurance
98
+ - B2B fintech tools
99
+ ```
100
+
101
+ 3. **Analyze Patterns**
102
+ ```
103
+ Identify:
104
+ - Hot subcategories (most startups)
105
+ - Team size distribution
106
+ - Geographic concentration
107
+ - Common tech stacks (from job postings)
108
+ ```
109
+
110
+ 4. **Research Traction**
111
+ ```
112
+ For promising startups:
113
+ search_linkedin_companies(keywords=startup_name)
114
+ → Check employee growth
115
+
116
+ search_twitter_posts(query=startup_name)
117
+ → Check social presence and buzz
118
+
119
+ parse_webpage(startup_website)
120
+ → Check positioning and features
121
+ ```
122
+
123
+ 5. **Identify White Spaces**
124
+ ```
125
+ Compare:
126
+ - Overcrowded categories
127
+ - Underserved segments
128
+ - Emerging opportunities
129
+ - Geographic gaps
130
+ ```
131
+
132
+ **Expected Output**:
133
+ - 50-100 startup landscape map
134
+ - Category distribution
135
+ - Funding trends
136
+ - Market gaps identified
137
+ - Competitive intensity by segment
138
+
139
+ ### Workflow 2: Public Company Competitive Analysis
140
+
141
+ **Scenario**: Research public competitors in cloud infrastructure
142
+
143
+ **Steps**:
144
+
145
+ 1. **Find Companies**
146
+ ```
147
+ sec_search_companies(
148
+ entity_name="cloud",
149
+ forms=["10-K", "10-Q"],
150
+ count=50
151
+ )
152
+ ```
153
+
154
+ 2. **Get Financial Data**
155
+ ```
156
+ For each company:
157
+ sec_document(document_url)
158
+
159
+ Extract:
160
+ - Revenue and growth
161
+ - Operating margins
162
+ - R&D spending
163
+ - Geographic breakdown
164
+ - Risk factors mentioned
165
+ ```
166
+
167
+ 3. **Analyze Strategy**
168
+ ```
169
+ From 10-K filings:
170
+ - Business model
171
+ - Target markets
172
+ - Competitive advantages
173
+ - Growth initiatives
174
+ - Challenges and risks
175
+ ```
176
+
177
+ 4. **Track Changes**
178
+ ```
179
+ Compare year-over-year:
180
+ - Revenue growth trends
181
+ - Market focus shifts
182
+ - New initiatives
183
+ - Risk factor changes
184
+ ```
185
+
186
+ 5. **Supplement with Social Intel**
187
+ ```
188
+ search_linkedin_companies(keywords=company_name)
189
+ → Employee count, hiring patterns
190
+
191
+ get_linkedin_company_posts(urn)
192
+ → Strategic messaging
193
+
194
+ search_reddit_posts(query=company_name)
195
+ → Customer sentiment
196
+ ```
197
+
198
+ **Expected Output**:
199
+ - Competitive landscape map
200
+ - Financial benchmarks
201
+ - Strategic positioning
202
+ - Growth trajectories
203
+ - Market opportunities
204
+
205
+ ### Workflow 3: Industry Trend Analysis
206
+
207
+ **Scenario**: Understand AI/ML market evolution
208
+
209
+ **Steps**:
210
+
211
+ 1. **YC Startup Trends**
212
+ ```
213
+ search_yc_companies(
214
+ query="AI OR machine learning OR artificial intelligence",
215
+ count=200
216
+ )
217
+
218
+ Group by batch to see:
219
+ - Trend over time
220
+ - Focus area shifts
221
+ - Team size changes
222
+ ```
223
+
224
+ 2. **Public Market Signals**
225
+ ```
226
+ sec_search_companies(
227
+ entity_name="artificial intelligence",
228
+ count=50
229
+ )
230
+
231
+ Check 10-K mentions of:
232
+ - "AI" or "machine learning" frequency
233
+ - AI-related investments
234
+ - AI revenue segments
235
+ ```
236
+
237
+ 3. **Community Sentiment**
238
+ ```
239
+ search_reddit_posts(
240
+ query="AI trends 2026",
241
+ count=100
242
+ )
243
+
244
+ Analyze for:
245
+ - Excitement vs. concern
246
+ - Adoption barriers
247
+ - Use case validation
248
+ - Technology maturity
249
+ ```
250
+
251
+ 4. **Professional Discussion**
252
+ ```
253
+ search_linkedin_posts(
254
+ keywords="artificial intelligence",
255
+ count=50
256
+ )
257
+
258
+ Check:
259
+ - Industry adoption
260
+ - Job market signals
261
+ - Skill requirements
262
+ - Thought leader opinions
263
+ ```
264
+
265
+ 5. **Web Intelligence**
266
+ ```
267
+ For key AI companies:
268
+ parse_webpage(website + "/blog")
269
+ → Technology updates, product launches
270
+
271
+ get_sitemap(website)
272
+ → Content focus areas
273
+ ```
274
+
275
+ **Expected Output**:
276
+ - Market evolution timeline
277
+ - Technology adoption curves
278
+ - Sentiment analysis
279
+ - Opportunity identification
280
+ - Risk assessment
281
+
282
+ ## MCP Tools Reference
283
+
284
+ ### Y Combinator Research
285
+ - `search_yc_companies` - Find startups by industry, batch, filters
286
+ - `get_yc_company` - Get detailed company profile
287
+ - `search_yc_founders` - Research founders
288
+
289
+ ### SEC Research
290
+ - `sec_search_companies` - Find public companies and filings
291
+ - `sec_document` - Get full document content
292
+
293
+ ### Social Intelligence
294
+ - `search_reddit_posts` - Community insights and sentiment
295
+ - `search_twitter_posts` - Real-time market pulse
296
+ - `search_linkedin_posts` - Professional trends
297
+
298
+ ### Company Intelligence
299
+ - `search_linkedin_companies` - Find companies
300
+ - `get_linkedin_company` - Company details
301
+ - `parse_webpage` - Extract website data
302
+
303
+ ### Market Discovery
304
+ - `duckduckgo_search` - General web research
305
+ - `get_sitemap` - Comprehensive website analysis
306
+
307
+ ## Market Analysis Frameworks
308
+
309
+ **TAM/SAM/SOM Analysis**:
310
+ ```
311
+ Total Addressable Market (TAM):
312
+ - Count YC companies in category × avg market size
313
+ - SEC filing market size mentions
314
+ - Industry reports (web scraping)
315
+
316
+ Serviceable Addressable Market (SAM):
317
+ - Filter by geography, segment
318
+ - LinkedIn company search by ICP
319
+ - YC companies by batch/stage
320
+
321
+ Serviceable Obtainable Market (SOM):
322
+ - Realistic capture based on competition
323
+ - Competitive analysis via LinkedIn/social
324
+ - Market share indicators
325
+ ```
326
+
327
+ **Porter's Five Forces**:
328
+ ```
329
+ Using anysite data:
330
+
331
+ 1. Competitive Rivalry:
332
+ - YC startups in space
333
+ - LinkedIn company counts
334
+ - Social mention volume
335
+
336
+ 2. Threat of New Entrants:
337
+ - Recent YC batches
338
+ - Funding announcements
339
+ - Talent movement (LinkedIn)
340
+
341
+ 3. Supplier Power:
342
+ - Technology dependencies
343
+ - Integration partners
344
+
345
+ 4. Buyer Power:
346
+ - Customer reviews (Reddit)
347
+ - Pricing transparency
348
+ - Switching costs mentioned
349
+
350
+ 5. Threat of Substitutes:
351
+ - Alternative solutions
352
+ - Adjacent markets
353
+ ```
354
+
355
+ ## Output Formats
356
+
357
+ **Chat Summary**:
358
+ - Key market insights
359
+ - Competitive landscape summary
360
+ - Opportunity identification
361
+ - Strategic recommendations
362
+
363
+ **CSV Export**:
364
+ - Company list with metrics
365
+ - Market segmentation data
366
+ - Trend indicators
367
+
368
+ **JSON Export**:
369
+ - Complete research data
370
+ - Time-series analysis
371
+ - Cross-platform correlations
372
+
373
+ ## Reference Documentation
374
+
375
+ - **[RESEARCH_METHODS.md](references/RESEARCH_METHODS.md)** - Market research methodologies, analysis frameworks, and data synthesis techniques
376
+
377
+ ---
378
+
379
+ **Ready for market research?** Ask Claude to help you analyze markets, research startups, or study competitive landscapes using this skill!
@@ -0,0 +1,65 @@
1
+ # Market Research Methodologies
2
+
3
+ ## Primary Research via Social Listening
4
+
5
+ **Reddit Market Research**:
6
+ ```
7
+ Value: Unfiltered customer opinions
8
+ Approach: Search product categories, pain points
9
+ Analysis: Sentiment, feature requests, complaints
10
+ ```
11
+
12
+ **LinkedIn Professional Insights**:
13
+ ```
14
+ Value: B2B market signals
15
+ Approach: Industry discussions, job postings
16
+ Analysis: Hiring trends, strategic priorities
17
+ ```
18
+
19
+ ## Secondary Research via Public Data
20
+
21
+ **SEC Filings Analysis**:
22
+ ```
23
+ 10-K: Annual reports, full business overview
24
+ 10-Q: Quarterly updates, recent changes
25
+ 8-K: Material events, acquisitions
26
+ ```
27
+
28
+ **Y Combinator Database**:
29
+ ```
30
+ Batch trends: Focus areas over time
31
+ Funding patterns: Stage, amounts
32
+ Team dynamics: Size, roles
33
+ ```
34
+
35
+ ## Market Sizing Techniques
36
+
37
+ **Bottom-Up**:
38
+ ```
39
+ YC companies × average revenue = market estimate
40
+ LinkedIn company counts × ARPU = TAM proxy
41
+ ```
42
+
43
+ **Top-Down**:
44
+ ```
45
+ SEC filing market size mentions
46
+ Industry reports (web scraping)
47
+ Analyst estimates
48
+ ```
49
+
50
+ ## Competitive Intelligence
51
+
52
+ **Direct Competitors**:
53
+ - Same product, same market
54
+ - YC same batch/category
55
+ - SEC peer group analysis
56
+
57
+ **Indirect Competitors**:
58
+ - Different product, same problem
59
+ - Adjacent categories
60
+ - Alternative solutions
61
+
62
+ **Potential Future Competitors**:
63
+ - Well-funded adjacents
64
+ - Technology convergence
65
+ - Market expansion signals