@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.
- package/.claude-plugin/marketplace.json +113 -0
- package/.claude-plugin/plugin.json +45 -0
- package/LICENSE +21 -0
- package/README.md +221 -0
- package/bin/install.js +55 -0
- package/package.json +45 -0
- package/skills/anysite-audience-analysis/SKILL.md +273 -0
- package/skills/anysite-audience-analysis/references/PLATFORM_COVERAGE.md +53 -0
- package/skills/anysite-audience-analysis/references/TOOL_MAPPING.md +27 -0
- package/skills/anysite-brand-reputation/SKILL.md +373 -0
- package/skills/anysite-brand-reputation/references/MONITORING_GUIDE.md +84 -0
- package/skills/anysite-competitor-analyzer/SKILL.md +847 -0
- package/skills/anysite-competitor-intelligence/SKILL.md +642 -0
- package/skills/anysite-competitor-intelligence/references/ANALYSIS_PATTERNS.md +97 -0
- package/skills/anysite-content-analytics/SKILL.md +298 -0
- package/skills/anysite-content-analytics/references/METRICS_GUIDE.md +63 -0
- package/skills/anysite-influencer-discovery/SKILL.md +398 -0
- package/skills/anysite-influencer-discovery/references/DISCOVERY_CRITERIA.md +50 -0
- package/skills/anysite-lead-generation/SKILL.md +1022 -0
- package/skills/anysite-lead-generation/references/LINKEDIN_STRATEGIES.md +739 -0
- package/skills/anysite-lead-generation/references/WEB_SCRAPING.md +910 -0
- package/skills/anysite-market-research/SKILL.md +379 -0
- package/skills/anysite-market-research/references/RESEARCH_METHODS.md +65 -0
- package/skills/anysite-person-analyzer/SKILL.md +604 -0
- package/skills/anysite-trend-analysis/SKILL.md +310 -0
- package/skills/anysite-trend-analysis/references/SOCIAL_MONITORING.md +46 -0
- package/skills/anysite-vc-analyst/SKILL.md +269 -0
|
@@ -0,0 +1,604 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: anysite-person-analyzer
|
|
3
|
+
description: Deep multi-platform intelligence analysis combining LinkedIn (profile, posts, activity), Twitter/X (tweets, engagement), Reddit (discussions, community), web presence (articles, GitHub, blogs), and company intelligence. Use when analyzing people for networking, sales, partnerships, or recruitment. Accepts LinkedIn URL or name+context. Produces comprehensive cross-platform reports with conversation strategies and strategic value assessment for AnySite.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Person Intelligence Analyzer
|
|
7
|
+
|
|
8
|
+
Comprehensive multi-platform intelligence analysis combining LinkedIn, Twitter/X, Reddit, GitHub, and web presence data to create actionable intelligence reports with cross-platform personality insights.
|
|
9
|
+
|
|
10
|
+
## Analysis Workflow
|
|
11
|
+
|
|
12
|
+
Execute phases sequentially, adapting depth based on available data and user requirements.
|
|
13
|
+
|
|
14
|
+
### Phase 1: Initial Data Collection
|
|
15
|
+
|
|
16
|
+
**Starting with LinkedIn Profile URL:**
|
|
17
|
+
1. Use `get_linkedin_profile` with full parameters (education, experience, skills)
|
|
18
|
+
2. Extract and save the **full URN** (format: `urn:li:fsd_profile:ACoAAABCDEF`) - this is critical for all subsequent API calls
|
|
19
|
+
3. Also extract: company URN, current role, location, connections count
|
|
20
|
+
4. Record profile completeness for confidence scoring
|
|
21
|
+
|
|
22
|
+
**IMPORTANT - URN Format:**
|
|
23
|
+
Always use the complete URN format `urn:li:fsd_profile:ACoAAABCDEF` from the profile response for all subsequent calls to `get_linkedin_user_posts`, `get_linkedin_user_comments`, and `get_linkedin_user_reactions`. Do not use shortened versions or profile URLs.
|
|
24
|
+
|
|
25
|
+
**Starting with Name + Context:**
|
|
26
|
+
1. Use `search_linkedin_users` with all available filters:
|
|
27
|
+
- Name, title, company keywords, location, school
|
|
28
|
+
2. If multiple matches: present top 3-5 candidates with distinguishing details
|
|
29
|
+
3. After user confirmation, proceed with confirmed profile
|
|
30
|
+
|
|
31
|
+
**Critical Data Points to Capture:**
|
|
32
|
+
- Current company and role (with start date)
|
|
33
|
+
- Previous roles (last 2-3 positions)
|
|
34
|
+
- Education background
|
|
35
|
+
- Skills and endorsements
|
|
36
|
+
- Connection count (indicator of network size)
|
|
37
|
+
- Profile headline and summary
|
|
38
|
+
|
|
39
|
+
### Phase 2: Activity & Engagement Analysis
|
|
40
|
+
|
|
41
|
+
**Content Analysis (Posts):**
|
|
42
|
+
1. Use `get_linkedin_user_posts` with the full URN (format: `urn:li:fsd_profile:ACoAAABCDEF`)
|
|
43
|
+
- Count: 20-50 depending on activity level
|
|
44
|
+
- Posted after filter: last 90 days for active users, 180 days if low activity
|
|
45
|
+
2. Analyze for:
|
|
46
|
+
- Topics and themes (use clustering: technical, leadership, industry trends, personal)
|
|
47
|
+
- Engagement metrics (likes, comments per post - calculate averages)
|
|
48
|
+
- Posting frequency (calculate posts per week/month)
|
|
49
|
+
- Content style (thought leadership, sharing, personal stories, company updates)
|
|
50
|
+
- Language and tone
|
|
51
|
+
|
|
52
|
+
**Engagement Analysis (Comments & Reactions):**
|
|
53
|
+
1. Use `get_linkedin_user_comments` with the full URN (format: `urn:li:fsd_profile:ACoAAABCDEF`)
|
|
54
|
+
- Count: 30
|
|
55
|
+
2. Use `get_linkedin_user_reactions` with the full URN (format: `urn:li:fsd_profile:ACoAAABCDEF`)
|
|
56
|
+
- Count: 50
|
|
57
|
+
3. Analyze for:
|
|
58
|
+
- Who they engage with (seniority levels, industries)
|
|
59
|
+
- Topics that spark their engagement
|
|
60
|
+
- Engagement style (supportive, challenging, informational)
|
|
61
|
+
- Response patterns (quick reactions vs thoughtful comments)
|
|
62
|
+
|
|
63
|
+
**CRITICAL:** All three tools (`get_linkedin_user_posts`, `get_linkedin_user_comments`, `get_linkedin_user_reactions`) require the complete URN in the format `urn:li:fsd_profile:ACoAAABCDEF` obtained from Phase 1. Using LinkedIn profile URLs or partial URNs will result in errors.
|
|
64
|
+
|
|
65
|
+
**Output: Engagement Profile**
|
|
66
|
+
- Primary content themes (ranked by frequency)
|
|
67
|
+
- Engagement level: High/Medium/Low (posts per month, reactions per week)
|
|
68
|
+
- Influence indicators: follower count, average post engagement rate
|
|
69
|
+
- Communication style: formal/casual, technical/general, etc.
|
|
70
|
+
|
|
71
|
+
### Phase 3: Company Intelligence
|
|
72
|
+
|
|
73
|
+
**Current Company Deep Dive:**
|
|
74
|
+
1. Use `get_linkedin_company` with company URN from profile
|
|
75
|
+
2. Extract:
|
|
76
|
+
- Company size, industry, specialties
|
|
77
|
+
- Growth indicators (employee count trends if available)
|
|
78
|
+
- Company description and mission
|
|
79
|
+
- Recent updates/news
|
|
80
|
+
|
|
81
|
+
3. Use `get_linkedin_company_posts` (count: 20)
|
|
82
|
+
- Analyze company communication themes
|
|
83
|
+
- Identify strategic priorities
|
|
84
|
+
- Note any mentions of funding, hiring, expansion
|
|
85
|
+
|
|
86
|
+
4. Use `duckduckgo_search` for recent news:
|
|
87
|
+
- "[Company name] funding news"
|
|
88
|
+
- "[Company name] expansion launch product"
|
|
89
|
+
- Prioritize results from last 6 months
|
|
90
|
+
|
|
91
|
+
**Company Social Media Presence:**
|
|
92
|
+
|
|
93
|
+
5. **Company Twitter/X Analysis:**
|
|
94
|
+
- Use `search_twitter_users` to find official company account: "[Company Name] official"
|
|
95
|
+
- If found, use `get_twitter_user` for profile stats
|
|
96
|
+
- Use `get_twitter_user_posts` (count: 20-30) to analyze:
|
|
97
|
+
- Product announcements and launches
|
|
98
|
+
- Company culture and values
|
|
99
|
+
- Engagement with customers and community
|
|
100
|
+
- Hiring announcements (growth signals)
|
|
101
|
+
- Technical content (if tech company)
|
|
102
|
+
- Use `search_twitter_posts` for company mentions: "[Company Name]"
|
|
103
|
+
- Customer sentiment (complaints vs praise)
|
|
104
|
+
- Industry discussion about the company
|
|
105
|
+
- Competitor comparisons
|
|
106
|
+
- Notable tweets from employees
|
|
107
|
+
|
|
108
|
+
6. **Company Reddit Presence:**
|
|
109
|
+
- Use `search_reddit_posts` for company mentions: "[Company Name]"
|
|
110
|
+
- Look for:
|
|
111
|
+
- r/startups discussions about the company
|
|
112
|
+
- Industry-specific subreddit mentions (r/SaaS, r/artificial, etc.)
|
|
113
|
+
- Customer experiences and reviews
|
|
114
|
+
- Technical discussions about their product/platform
|
|
115
|
+
- Hiring experiences (Glassdoor-like insights)
|
|
116
|
+
- Founder/team AMAs or discussions
|
|
117
|
+
- Sentiment analysis: positive/negative/neutral community perception
|
|
118
|
+
- Pain points mentioned by users/customers
|
|
119
|
+
|
|
120
|
+
**Company Context Analysis:**
|
|
121
|
+
- Business model and revenue streams
|
|
122
|
+
- Technology stack (if tech company)
|
|
123
|
+
- Market position and competitors
|
|
124
|
+
- Recent achievements or challenges
|
|
125
|
+
- Cultural indicators from company posts
|
|
126
|
+
- **Social sentiment** (Twitter mentions, Reddit discussions)
|
|
127
|
+
- **Community engagement** (how company responds on social platforms)
|
|
128
|
+
- **Growth signals** (hiring tweets, expansion announcements on Twitter)
|
|
129
|
+
- **Customer pain points** (Reddit complaints, Twitter issues)
|
|
130
|
+
|
|
131
|
+
### Phase 4: Multi-Platform Intelligence Enrichment
|
|
132
|
+
|
|
133
|
+
**A. Twitter/X Analysis (if handle found or identifiable):**
|
|
134
|
+
|
|
135
|
+
1. **Find Twitter Handle:**
|
|
136
|
+
- Check LinkedIn profile bio/description for @username
|
|
137
|
+
- Use `search_twitter_users` with name if not found: "[First Name] [Last Name] [Company]"
|
|
138
|
+
- Verify match by checking bio, profile description
|
|
139
|
+
|
|
140
|
+
2. **Profile Analysis:**
|
|
141
|
+
- Use `get_twitter_user` with username
|
|
142
|
+
- Extract: follower count, following count, tweet count, bio, location
|
|
143
|
+
- Note: verification status, profile creation date
|
|
144
|
+
|
|
145
|
+
3. **Content Analysis:**
|
|
146
|
+
- Use `get_twitter_user_posts` (count: 50-100 recent tweets)
|
|
147
|
+
- Analyze for:
|
|
148
|
+
- Technical expertise signals (code snippets, tech discussions)
|
|
149
|
+
- Industry opinions and hot takes
|
|
150
|
+
- Personal interests and hobbies
|
|
151
|
+
- Engagement with other thought leaders
|
|
152
|
+
- Retweets vs original content ratio
|
|
153
|
+
- Calculate: tweets per day, avg engagement rate
|
|
154
|
+
|
|
155
|
+
4. **Topic Discovery:**
|
|
156
|
+
- Use `search_twitter_posts` with person's key interests: "[topic] from:@username"
|
|
157
|
+
- Identify recurring themes and expertise areas
|
|
158
|
+
- Note controversial or strongly-held opinions
|
|
159
|
+
|
|
160
|
+
**B. Reddit Activity (if username discoverable):**
|
|
161
|
+
|
|
162
|
+
1. **Find Reddit Presence:**
|
|
163
|
+
- Search for username from other platforms
|
|
164
|
+
- Use `search_reddit_posts` with name/company mentions
|
|
165
|
+
- Look for: "AMA" posts, technical discussions, community contributions
|
|
166
|
+
|
|
167
|
+
2. **Content Analysis:**
|
|
168
|
+
- Use `search_reddit_posts` with username if known: "author:[username]"
|
|
169
|
+
- Analyze for:
|
|
170
|
+
- Subreddit preferences (which communities they're active in)
|
|
171
|
+
- Technical depth of contributions
|
|
172
|
+
- Helping behavior vs self-promotion ratio
|
|
173
|
+
- Community reputation indicators
|
|
174
|
+
|
|
175
|
+
3. **Topic Expertise:**
|
|
176
|
+
- Use `search_reddit_posts` for specific topics: "[topic] [username or company]"
|
|
177
|
+
- Identify where they're seen as expert/helpful
|
|
178
|
+
- Note any popular posts or discussions they started
|
|
179
|
+
|
|
180
|
+
**C. Instagram Presence (optional, if B2C relevant or personal brand focus):**
|
|
181
|
+
|
|
182
|
+
1. **Profile Discovery:**
|
|
183
|
+
- Check if mentioned in LinkedIn or Twitter
|
|
184
|
+
- Use `search_instagram_posts` with hashtags: "#[name] #[company]"
|
|
185
|
+
- Use `get_instagram_user` if handle known
|
|
186
|
+
|
|
187
|
+
2. **Content Style:**
|
|
188
|
+
- Use `get_instagram_user_posts` (count: 20-30)
|
|
189
|
+
- Analyze for: personal brand vs professional content
|
|
190
|
+
- Note: visual style, posting frequency, engagement rate
|
|
191
|
+
|
|
192
|
+
**D. Web Intelligence & Media Presence:**
|
|
193
|
+
|
|
194
|
+
1. **Professional Presence:**
|
|
195
|
+
- `duckduckgo_search`: "[Name] [Company] speaker conference"
|
|
196
|
+
- `duckduckgo_search`: "[Name] interview podcast"
|
|
197
|
+
- `duckduckgo_search`: "[Name] article blog post"
|
|
198
|
+
|
|
199
|
+
2. **Expertise & Thought Leadership:**
|
|
200
|
+
- `duckduckgo_search`: "[Name] expertise [primary topic from posts]"
|
|
201
|
+
- Check for: publications, talks, media mentions
|
|
202
|
+
- `duckduckgo_search`: "[Name] [key topic] site:medium.com OR site:dev.to OR site:substack.com"
|
|
203
|
+
|
|
204
|
+
3. **Company-Specific Context:**
|
|
205
|
+
- `duckduckgo_search`: "[Name] [Company] announcement"
|
|
206
|
+
- Look for: press releases, product launches, executive quotes
|
|
207
|
+
|
|
208
|
+
4. **GitHub/Tech Presence (if technical role):**
|
|
209
|
+
- `duckduckgo_search`: "[Name] site:github.com"
|
|
210
|
+
- Look for: open source contributions, personal projects
|
|
211
|
+
|
|
212
|
+
**E. Parse Key Pages:**
|
|
213
|
+
- Use `parse_webpage` for high-value sources:
|
|
214
|
+
- Personal blog/website (if mentioned in any profile)
|
|
215
|
+
- Recent interviews or podcast appearances
|
|
216
|
+
- Conference speaker profiles
|
|
217
|
+
- Company "About Team" pages
|
|
218
|
+
- Notable Medium/Substack articles
|
|
219
|
+
- Popular Reddit AMAs or discussions
|
|
220
|
+
- Extract: bio, expertise areas, quotes, interests, unique perspectives
|
|
221
|
+
|
|
222
|
+
**Platform Priority Strategy:**
|
|
223
|
+
|
|
224
|
+
1. **Always analyze:** LinkedIn (mandatory) + Web Search
|
|
225
|
+
2. **High priority:** Twitter/X (if found) - usually most revealing for tech audience
|
|
226
|
+
3. **Medium priority:** Reddit (if active) - shows technical depth and community engagement
|
|
227
|
+
4. **Low priority:** Instagram - only if B2C focus or strong personal brand element
|
|
228
|
+
5. **Context-dependent:** GitHub - critical for engineering roles, less for business roles
|
|
229
|
+
|
|
230
|
+
**Cross-Platform Analysis:**
|
|
231
|
+
- Compare tone across platforms (professional LinkedIn vs casual Twitter)
|
|
232
|
+
- Identify platform-specific content themes
|
|
233
|
+
- Note engagement levels per platform
|
|
234
|
+
- Synthesize consistent interests vs platform-specific behavior
|
|
235
|
+
|
|
236
|
+
### Phase 5: Cross-Platform Strategic Analysis & Report Generation
|
|
237
|
+
|
|
238
|
+
**Connection Strategy:**
|
|
239
|
+
1. **Conversation Topics** (ranked by relevance, synthesized across all platforms):
|
|
240
|
+
- Top 3-5 topics from their LinkedIn posts/comments
|
|
241
|
+
- Hot takes or strong opinions from Twitter/X
|
|
242
|
+
- Technical discussions from Reddit
|
|
243
|
+
- Industry trends they've engaged with across platforms
|
|
244
|
+
- Shared interests or connections (if any)
|
|
245
|
+
- Recent company achievements to acknowledge
|
|
246
|
+
|
|
247
|
+
2. **Engagement Approach:**
|
|
248
|
+
- Best channels: LinkedIn comment, Twitter reply, Reddit comment, DM, email
|
|
249
|
+
- Channel preference: Note where they're most active/responsive
|
|
250
|
+
- Timing: based on posting patterns per platform (e.g., "most active on Twitter evenings, LinkedIn Tuesday mornings")
|
|
251
|
+
- Ice-breakers: reference specific post/comment/tweet that relates to AnySite
|
|
252
|
+
- Platform-specific tone: professional LinkedIn vs casual Twitter vs technical Reddit
|
|
253
|
+
|
|
254
|
+
3. **Cross-Platform Personality Synthesis:**
|
|
255
|
+
- Professional persona (LinkedIn) vs Personal persona (Twitter/Reddit)
|
|
256
|
+
- Technical depth indicators (Reddit discussions, GitHub activity)
|
|
257
|
+
- Communication style differences per platform
|
|
258
|
+
- Authentic interests (topics mentioned across multiple platforms)
|
|
259
|
+
|
|
260
|
+
**Value Assessment for AnySite:**
|
|
261
|
+
|
|
262
|
+
Analyze fit across multiple dimensions:
|
|
263
|
+
|
|
264
|
+
**A. Direct Business Value:**
|
|
265
|
+
- Potential customer: Does their company match AnySite ICP?
|
|
266
|
+
- B2B SaaS, AI companies, data-intensive businesses
|
|
267
|
+
- Size indicators: 10-500 employees, growth stage
|
|
268
|
+
- Pain points: mentions of data extraction, API integrations, agent development
|
|
269
|
+
- Decision maker level: C-suite, VP, Director, Manager
|
|
270
|
+
- Budget authority indicators
|
|
271
|
+
|
|
272
|
+
**B. Partnership Potential:**
|
|
273
|
+
- Technology synergies (complementary tools/platforms)
|
|
274
|
+
- Channel partnership opportunities
|
|
275
|
+
- Integration possibilities
|
|
276
|
+
- Co-marketing potential
|
|
277
|
+
|
|
278
|
+
**C. Network & Influence:**
|
|
279
|
+
- Network size and quality (10k+ connections = super-connector)
|
|
280
|
+
- Industry influence (thought leader, frequent speaker)
|
|
281
|
+
- Investor connections (VC, angels in their network)
|
|
282
|
+
- Potential for introductions
|
|
283
|
+
|
|
284
|
+
**D. Talent & Advisory:**
|
|
285
|
+
- Expertise match for advisor/mentor role
|
|
286
|
+
- Potential hire for future scaling
|
|
287
|
+
- Domain knowledge that fills gaps
|
|
288
|
+
|
|
289
|
+
**Prioritization Matrix:**
|
|
290
|
+
- **Tier 1 (Hot Lead)**: Decision maker + ICP match + high engagement
|
|
291
|
+
- **Tier 2 (Warm Lead)**: Mid-level + ICP match OR influencer + relevant network
|
|
292
|
+
- **Tier 3 (Long-term Nurture)**: Potential future value, build relationship
|
|
293
|
+
- **Tier 4 (Low Priority)**: No clear fit, maintain basic connection
|
|
294
|
+
|
|
295
|
+
## Output Format
|
|
296
|
+
|
|
297
|
+
Generate comprehensive markdown report with sections:
|
|
298
|
+
|
|
299
|
+
```markdown
|
|
300
|
+
# Person Intelligence Report: [Name]
|
|
301
|
+
|
|
302
|
+
**Generated:** [Date]
|
|
303
|
+
**Analysis Depth:** [Quick/Standard/Deep]
|
|
304
|
+
**Confidence Score:** [0-100%] based on data availability
|
|
305
|
+
|
|
306
|
+
## Executive Summary
|
|
307
|
+
[2-3 sentences: who they are, what they do, why they matter to AnySite]
|
|
308
|
+
|
|
309
|
+
## Professional Profile
|
|
310
|
+
- **Current Role:** [Title] at [Company] (since [date])
|
|
311
|
+
- **Location:** [City, Country]
|
|
312
|
+
- **Experience:** [X years in industry/role]
|
|
313
|
+
- **Education:** [Degree, Institution]
|
|
314
|
+
- **Network Size:** [LinkedIn connections count]
|
|
315
|
+
- **LinkedIn Profile:** [URL]
|
|
316
|
+
- **Twitter/X:** [@handle or "Not found"] ([follower count if found])
|
|
317
|
+
- **Reddit:** [u/username or "Not found/searched"]
|
|
318
|
+
- **GitHub:** [username or "Not found"] (if technical role)
|
|
319
|
+
- **Personal Website:** [URL if found]
|
|
320
|
+
|
|
321
|
+
## Key Background
|
|
322
|
+
[2-3 paragraphs covering:]
|
|
323
|
+
- Career trajectory and notable positions
|
|
324
|
+
- Expertise and specializations
|
|
325
|
+
- Notable achievements or credentials
|
|
326
|
+
|
|
327
|
+
## Multi-Platform Activity Analysis
|
|
328
|
+
|
|
329
|
+
### LinkedIn Activity (Last 90 Days)
|
|
330
|
+
|
|
331
|
+
#### Content Themes
|
|
332
|
+
1. **[Theme 1]** (40% of posts)
|
|
333
|
+
- Key topics: [list]
|
|
334
|
+
- Example post: "[quote or summary]"
|
|
335
|
+
|
|
336
|
+
2. **[Theme 2]** (30% of posts)
|
|
337
|
+
- Key topics: [list]
|
|
338
|
+
|
|
339
|
+
3. **[Theme 3]** (20% of posts)
|
|
340
|
+
|
|
341
|
+
#### Engagement Patterns
|
|
342
|
+
- **Posting Frequency:** [X posts/month]
|
|
343
|
+
- **Engagement Rate:** [Average likes, comments per post]
|
|
344
|
+
- **Response Style:** [Description]
|
|
345
|
+
- **Active Topics:** [Topics they comment on most]
|
|
346
|
+
|
|
347
|
+
### Twitter/X Activity (if found)
|
|
348
|
+
|
|
349
|
+
#### Profile Stats
|
|
350
|
+
- **Followers:** [count]
|
|
351
|
+
- **Following:** [count]
|
|
352
|
+
- **Tweets:** [total count]
|
|
353
|
+
- **Account Age:** [created date]
|
|
354
|
+
|
|
355
|
+
#### Content Analysis (Recent 50-100 tweets)
|
|
356
|
+
- **Posting Frequency:** [tweets per day/week]
|
|
357
|
+
- **Content Mix:** [% original tweets vs retweets vs replies]
|
|
358
|
+
- **Primary Topics:** [list top 3-5 themes]
|
|
359
|
+
- **Engagement Level:** [avg likes, retweets per tweet]
|
|
360
|
+
- **Notable Takes:** [any strong opinions or viral tweets]
|
|
361
|
+
- **Technical Depth:** [code snippets, technical discussions level]
|
|
362
|
+
|
|
363
|
+
#### Community Engagement
|
|
364
|
+
- **Engages with:** [types of accounts: VCs, founders, engineers, etc.]
|
|
365
|
+
- **Tone:** [professional/casual/humorous/technical]
|
|
366
|
+
|
|
367
|
+
### Reddit Activity (if found)
|
|
368
|
+
|
|
369
|
+
#### Subreddit Preferences
|
|
370
|
+
- **Most Active In:** [list top 3-5 subreddits]
|
|
371
|
+
- **Karma:** [post/comment karma if visible]
|
|
372
|
+
|
|
373
|
+
#### Contribution Style
|
|
374
|
+
- **Activity Type:** [% asking questions vs answering vs discussions]
|
|
375
|
+
- **Technical Depth:** [level of detail in technical responses]
|
|
376
|
+
- **Community Reputation:** [helpful, expert, casual participant]
|
|
377
|
+
- **Notable Contributions:** [any popular posts or helpful answers]
|
|
378
|
+
|
|
379
|
+
### Cross-Platform Synthesis
|
|
380
|
+
|
|
381
|
+
#### Personality Comparison
|
|
382
|
+
- **LinkedIn Persona:** [professional characteristics]
|
|
383
|
+
- **Twitter Persona:** [casual/personal characteristics]
|
|
384
|
+
- **Reddit Persona:** [technical/community characteristics]
|
|
385
|
+
- **Consistency:** [topics/interests mentioned across platforms]
|
|
386
|
+
|
|
387
|
+
#### Platform Preferences
|
|
388
|
+
- **Most Active:** [which platform has highest activity]
|
|
389
|
+
- **Best Engagement:** [where they get most responses]
|
|
390
|
+
- **Content Types:** [professional insights on LinkedIn, hot takes on Twitter, deep tech on Reddit]
|
|
391
|
+
|
|
392
|
+
#### Communication Style
|
|
393
|
+
[Synthesized description: formal/casual, technical depth, storytelling approach, cross-platform consistency or variation]
|
|
394
|
+
|
|
395
|
+
## Company Intelligence: [Company Name]
|
|
396
|
+
|
|
397
|
+
### Company Overview
|
|
398
|
+
- **Industry:** [Sector]
|
|
399
|
+
- **Size:** [Employee count]
|
|
400
|
+
- **Stage:** [Startup/Scale-up/Enterprise]
|
|
401
|
+
- **Mission:** [Brief description]
|
|
402
|
+
- **Twitter:** [@handle or "Not found"] ([follower count if found])
|
|
403
|
+
- **Reddit Presence:** [Active/Mentioned/Not found]
|
|
404
|
+
|
|
405
|
+
### Strategic Context
|
|
406
|
+
- **Recent News:** [Key developments from last 6 months]
|
|
407
|
+
- **Growth Indicators:** [Hiring, funding, expansion signals]
|
|
408
|
+
- **Market Position:** [Brief competitive context]
|
|
409
|
+
- **Technology Focus:** [If relevant]
|
|
410
|
+
|
|
411
|
+
### Company LinkedIn Content Analysis
|
|
412
|
+
[Themes from company LinkedIn posts, strategic priorities]
|
|
413
|
+
|
|
414
|
+
### Company Social Media Presence
|
|
415
|
+
|
|
416
|
+
#### Twitter/X Activity (if found)
|
|
417
|
+
- **Account Stats:** [Followers, following, tweets]
|
|
418
|
+
- **Content Mix:** [Product announcements, culture, technical content, engagement]
|
|
419
|
+
- **Recent Highlights:** [Key tweets from last 30 days]
|
|
420
|
+
- **Posting Frequency:** [tweets per week]
|
|
421
|
+
- **Engagement Level:** [avg likes, retweets]
|
|
422
|
+
- **Notable Announcements:** [Hiring, funding, launches]
|
|
423
|
+
|
|
424
|
+
#### Reddit Community Sentiment (if mentioned)
|
|
425
|
+
- **Primary Subreddits:** [Where company is discussed]
|
|
426
|
+
- **Discussion Volume:** [Number of mentions found]
|
|
427
|
+
- **Sentiment Analysis:** [Positive/Mixed/Negative - with examples]
|
|
428
|
+
- **Common Topics:**
|
|
429
|
+
- **Praise:** [What users like]
|
|
430
|
+
- **Complaints:** [Pain points mentioned]
|
|
431
|
+
- **Questions:** [What people ask about]
|
|
432
|
+
- **Notable Threads:** [Links to significant discussions]
|
|
433
|
+
|
|
434
|
+
#### Social Intelligence Synthesis
|
|
435
|
+
- **Brand Perception:** [How company is viewed on social vs LinkedIn]
|
|
436
|
+
- **Customer Insights:** [Real feedback from Twitter/Reddit vs official messaging]
|
|
437
|
+
- **Growth Signals:** [Hiring activity, expansion mentions across platforms]
|
|
438
|
+
- **Cultural Indicators:** [Company values in practice vs stated]
|
|
439
|
+
- **Competitive Context:** [How they're compared to competitors on social]
|
|
440
|
+
|
|
441
|
+
## External Intelligence
|
|
442
|
+
|
|
443
|
+
### Web Presence
|
|
444
|
+
- **Speaking/Conferences:** [List if any]
|
|
445
|
+
- **Publications/Interviews:** [List if any]
|
|
446
|
+
- **Blog Posts/Articles:** [Medium, Substack, Dev.to, personal blog]
|
|
447
|
+
- **Media Mentions:** [Notable press mentions]
|
|
448
|
+
- **GitHub Projects:** [Open source contributions, personal projects if technical]
|
|
449
|
+
|
|
450
|
+
### Technical Footprint (if applicable)
|
|
451
|
+
- **GitHub Activity:** [contribution level, popular repos]
|
|
452
|
+
- **Stack Overflow:** [reputation, areas of expertise]
|
|
453
|
+
- **Technical Writing:** [blog posts, tutorials, documentation]
|
|
454
|
+
|
|
455
|
+
### Additional Context
|
|
456
|
+
[Insights from parsed webpages, quotes, expertise areas, unique perspectives]
|
|
457
|
+
|
|
458
|
+
## Connection Strategy
|
|
459
|
+
|
|
460
|
+
### Recommended Conversation Topics
|
|
461
|
+
1. **[Topic 1]** - [Why: specific post/tweet/comment from which platform]
|
|
462
|
+
2. **[Topic 2]** - [Why: company context or cross-platform theme]
|
|
463
|
+
3. **[Topic 3]** - [Why: shared interest/industry trend across platforms]
|
|
464
|
+
4. **[Topic 4]** - [Why: technical interest from Reddit/GitHub]
|
|
465
|
+
5. **[Topic 5]** - [Why: personal interest from Twitter]
|
|
466
|
+
|
|
467
|
+
### Platform-Specific Engagement
|
|
468
|
+
|
|
469
|
+
**LinkedIn:**
|
|
470
|
+
- **Timing:** [Best days/times based on activity]
|
|
471
|
+
- **Approach:** [Professional, comment on specific post]
|
|
472
|
+
- **Ice-breaker:** "[Example referencing their LinkedIn content]"
|
|
473
|
+
|
|
474
|
+
**Twitter/X** (if active):
|
|
475
|
+
- **Timing:** [Best days/times]
|
|
476
|
+
- **Approach:** [Casual reply to tweet, quote tweet with value-add]
|
|
477
|
+
- **Ice-breaker:** "[Example referencing their tweet or discussion]"
|
|
478
|
+
|
|
479
|
+
**Reddit** (if active):
|
|
480
|
+
- **Timing:** [When they're most active]
|
|
481
|
+
- **Approach:** [Helpful comment in their frequented subreddit]
|
|
482
|
+
- **Ice-breaker:** "[Technical question or insight in relevant subreddit]"
|
|
483
|
+
|
|
484
|
+
**Direct Outreach:**
|
|
485
|
+
- **Best Channel:** [Email/LinkedIn DM/Twitter DM - ranked by likelihood]
|
|
486
|
+
- **Timing:** [Optimal day/time synthesized from all platforms]
|
|
487
|
+
- **Value Proposition:** [How to position AnySite relevance based on their interests]
|
|
488
|
+
|
|
489
|
+
### Potential Pain Points
|
|
490
|
+
[Inferred from their role, company, posts across platforms - where AnySite could help]
|
|
491
|
+
- [Pain point 1 with evidence from platform]
|
|
492
|
+
- [Pain point 2 with evidence from platform]
|
|
493
|
+
- [Pain point 3 with evidence from platform]
|
|
494
|
+
|
|
495
|
+
## Strategic Value for AnySite
|
|
496
|
+
|
|
497
|
+
### Primary Classification
|
|
498
|
+
**[Tier 1/2/3/4]: [Customer/Partner/Influencer/Advisor/Talent]**
|
|
499
|
+
|
|
500
|
+
### Value Dimensions
|
|
501
|
+
**Customer Potential:** [High/Medium/Low]
|
|
502
|
+
- ICP Fit: [Yes/No - reasoning]
|
|
503
|
+
- Decision Authority: [Level]
|
|
504
|
+
- Buying Signals: [List any indicators]
|
|
505
|
+
|
|
506
|
+
**Partnership Potential:** [High/Medium/Low]
|
|
507
|
+
- [Specific opportunities if any]
|
|
508
|
+
|
|
509
|
+
**Network Value:** [High/Medium/Low]
|
|
510
|
+
- [Influence level, connection value]
|
|
511
|
+
|
|
512
|
+
**Advisory/Talent Value:** [High/Medium/Low]
|
|
513
|
+
- [Specific expertise value]
|
|
514
|
+
|
|
515
|
+
### Action Priority
|
|
516
|
+
**Priority Level:** [Critical/High/Medium/Low]
|
|
517
|
+
**Recommended Timeline:** [Contact within: X days/weeks]
|
|
518
|
+
|
|
519
|
+
### Next Steps
|
|
520
|
+
1. [Specific action item with reasoning]
|
|
521
|
+
2. [Follow-up action]
|
|
522
|
+
3. [Long-term nurture plan if applicable]
|
|
523
|
+
|
|
524
|
+
## Analysis Metadata
|
|
525
|
+
- **Platforms Analyzed:**
|
|
526
|
+
- LinkedIn: [✓ Profile, Posts, Comments, Reactions]
|
|
527
|
+
- Twitter/X: [✓ Found and analyzed / ✗ Not found / - Not searched]
|
|
528
|
+
- Reddit: [✓ Activity found / ✗ No activity / - Not searched]
|
|
529
|
+
- GitHub: [✓ Projects found / ✗ Not found / - Not applicable]
|
|
530
|
+
- Web: [✓ Articles/interviews found]
|
|
531
|
+
- **Data Sources:** [List specific tools used]
|
|
532
|
+
- **Data Freshness:**
|
|
533
|
+
- LinkedIn posts: [date range analyzed]
|
|
534
|
+
- Twitter: [date range if analyzed]
|
|
535
|
+
- Reddit: [date range if analyzed]
|
|
536
|
+
- **Total Data Points:** [approximate: X posts, Y tweets, Z comments analyzed]
|
|
537
|
+
- **Confidence Factors:**
|
|
538
|
+
- Profile completeness: [High/Medium/Low]
|
|
539
|
+
- Activity data: [High/Medium/Low - per platform]
|
|
540
|
+
- External validation: [High/Medium/Low]
|
|
541
|
+
- Cross-platform consistency: [High/Medium/Low]
|
|
542
|
+
- **Limitations:** [Any data gaps, platforms not accessible, or constraints]
|
|
543
|
+
```
|
|
544
|
+
|
|
545
|
+
## Error Handling & Edge Cases
|
|
546
|
+
|
|
547
|
+
**Insufficient Data:**
|
|
548
|
+
- If posts/comments are minimal: focus more on company analysis and role-based inferences
|
|
549
|
+
- If profile is sparse: use web search more heavily
|
|
550
|
+
- If company is small/unknown: focus on person's expertise and network
|
|
551
|
+
|
|
552
|
+
**Multiple Profile Matches:**
|
|
553
|
+
- Always confirm with user before proceeding with deep analysis
|
|
554
|
+
- Present distinguishing factors clearly
|
|
555
|
+
|
|
556
|
+
**Rate Limiting / API Errors:**
|
|
557
|
+
- Continue with available data from other sources
|
|
558
|
+
- Note limitations in report
|
|
559
|
+
- Suggest manual verification steps
|
|
560
|
+
|
|
561
|
+
**Privacy Considerations:**
|
|
562
|
+
- Only analyze publicly available information
|
|
563
|
+
- No speculation on private/personal matters
|
|
564
|
+
- Focus on professional context
|
|
565
|
+
|
|
566
|
+
## Customization Parameters
|
|
567
|
+
|
|
568
|
+
Users may request analysis depth adjustment:
|
|
569
|
+
|
|
570
|
+
**Quick Analysis (10-15 min):**
|
|
571
|
+
- LinkedIn: Profile + last 10 posts + company basics
|
|
572
|
+
- Company: LinkedIn company profile only
|
|
573
|
+
- Twitter/X: Person profile check only (if handle found)
|
|
574
|
+
- Web: 2-3 targeted searches
|
|
575
|
+
- Reddit/GitHub: Skip unless specifically requested
|
|
576
|
+
- Output: Essential info only
|
|
577
|
+
|
|
578
|
+
**Standard Analysis (20-30 min) - DEFAULT:**
|
|
579
|
+
- LinkedIn: Full profile + 20-50 posts + comments/reactions + company analysis
|
|
580
|
+
- **Company: LinkedIn + Twitter account + Reddit mentions search** (NEW)
|
|
581
|
+
- Twitter/X: Person profile + 50 recent tweets (if found)
|
|
582
|
+
- Reddit: Search for person username + activity (if found)
|
|
583
|
+
- Web: 5-7 strategic searches + parse 2-3 key pages
|
|
584
|
+
- GitHub: Quick check for presence (if technical role)
|
|
585
|
+
- Output: Full workflow as described above
|
|
586
|
+
|
|
587
|
+
**Deep Dive (45-60 min):**
|
|
588
|
+
- LinkedIn: Extended analysis (100+ posts), all activity types, detailed company research
|
|
589
|
+
- **Company: LinkedIn + Twitter (30 posts) + Reddit (comprehensive mentions) + sentiment analysis** (NEW)
|
|
590
|
+
- Twitter/X: Person 100+ tweets, thread analysis, engagement patterns (if found)
|
|
591
|
+
- Reddit: Person comprehensive comment history, subreddit analysis (if found)
|
|
592
|
+
- Web: 10-15 searches, parse 5-10 webpages, deep technical footprint
|
|
593
|
+
- GitHub: Detailed repo analysis, contribution patterns (if technical)
|
|
594
|
+
- Instagram: Profile and content analysis (if relevant)
|
|
595
|
+
- Output: Comprehensive cross-platform synthesis with deep insights
|
|
596
|
+
|
|
597
|
+
**Platform-Specific Focus:**
|
|
598
|
+
Users can also request focus on specific platforms:
|
|
599
|
+
- "Focus on Twitter presence" → Deep Twitter analysis for person AND company, standard LinkedIn
|
|
600
|
+
- "Technical profile only" → LinkedIn + GitHub + Reddit + Stack Overflow (person focused)
|
|
601
|
+
- "Business profile" → LinkedIn + web presence + media, skip Reddit/GitHub
|
|
602
|
+
- **"Company deep dive" → Extended company social analysis across all platforms** (NEW)
|
|
603
|
+
|
|
604
|
+
Default to **Standard Analysis** unless specified.
|