@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,739 @@
|
|
|
1
|
+
# LinkedIn Lead Generation Strategies
|
|
2
|
+
|
|
3
|
+
Advanced strategies and best practices for LinkedIn prospecting using anysite MCP.
|
|
4
|
+
|
|
5
|
+
## Boolean Search Operators
|
|
6
|
+
|
|
7
|
+
### Basic Operators
|
|
8
|
+
|
|
9
|
+
**AND** - Both terms must be present
|
|
10
|
+
```
|
|
11
|
+
title:"Software Engineer" AND "Python"
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
**OR** - Either term must be present
|
|
15
|
+
```
|
|
16
|
+
title:"VP Sales" OR "Head of Sales" OR "Director Sales"
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
**NOT** - Exclude terms
|
|
20
|
+
```
|
|
21
|
+
title:"Marketing" NOT "Intern" NOT "Coordinator"
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
**Quotes** - Exact phrase match
|
|
25
|
+
```
|
|
26
|
+
title:"Chief Technology Officer"
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
**Parentheses** - Group logic
|
|
30
|
+
```
|
|
31
|
+
title:("VP" OR "Director") AND ("Sales" OR "Business Development")
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Advanced Search Patterns
|
|
35
|
+
|
|
36
|
+
#### Title Targeting
|
|
37
|
+
|
|
38
|
+
**Executive Level**:
|
|
39
|
+
```
|
|
40
|
+
title:(VP OR "Vice President" OR SVP OR EVP OR C-level OR Chief OR President)
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
**Management Level**:
|
|
44
|
+
```
|
|
45
|
+
title:(Director OR "Head of" OR Manager OR Lead) NOT (Assistant OR Associate)
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
**Individual Contributor**:
|
|
49
|
+
```
|
|
50
|
+
title:("Software Engineer" OR Developer OR Analyst) NOT (Manager OR Director OR Lead)
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
**Seniority Filters**:
|
|
54
|
+
```
|
|
55
|
+
title:(Senior OR Staff OR Principal OR Lead OR Architect)
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
#### Industry-Specific Patterns
|
|
59
|
+
|
|
60
|
+
**SaaS/Technology**:
|
|
61
|
+
```
|
|
62
|
+
company_keywords:(SaaS OR "Cloud Software" OR "Enterprise Software" OR B2B)
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
**Finance**:
|
|
66
|
+
```
|
|
67
|
+
company_keywords:("Investment Bank" OR "Private Equity" OR "Venture Capital" OR Fintech)
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
**Healthcare**:
|
|
71
|
+
```
|
|
72
|
+
company_keywords:(Healthcare OR "Health Tech" OR Medical OR Pharma OR Biotech)
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
**E-commerce/Retail**:
|
|
76
|
+
```
|
|
77
|
+
company_keywords:(E-commerce OR Retail OR "Consumer Products" OR DTC)
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
#### Location Strategies
|
|
81
|
+
|
|
82
|
+
**Metropolitan Areas**:
|
|
83
|
+
```
|
|
84
|
+
location:"San Francisco Bay Area"
|
|
85
|
+
location:"New York City Metropolitan Area"
|
|
86
|
+
location:"Greater Boston"
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
**Remote Work**:
|
|
90
|
+
```
|
|
91
|
+
location:(Remote OR "Work from Home" OR Distributed)
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
**Multi-Location Search**:
|
|
95
|
+
```
|
|
96
|
+
location:("San Francisco" OR "New York" OR "Austin" OR "Seattle")
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
**Country-Level**:
|
|
100
|
+
```
|
|
101
|
+
location:"United States"
|
|
102
|
+
location:"United Kingdom"
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## ICP-Based Search Strategies
|
|
106
|
+
|
|
107
|
+
### Enterprise B2B SaaS
|
|
108
|
+
|
|
109
|
+
**Target Profile**: Decision-makers at mid-market to enterprise SaaS companies
|
|
110
|
+
|
|
111
|
+
**Search Strategy**:
|
|
112
|
+
```
|
|
113
|
+
Step 1: Find Companies
|
|
114
|
+
- keywords: "B2B SaaS" OR "Enterprise Software"
|
|
115
|
+
- employee_count: ["201-500", "501-1000", "1001-5000"]
|
|
116
|
+
- industry: "Computer Software"
|
|
117
|
+
|
|
118
|
+
Step 2: Find Decision-Makers
|
|
119
|
+
- company_keywords: <from step 1>
|
|
120
|
+
- title: "VP" OR "SVP" OR "Chief" OR "Head of"
|
|
121
|
+
- keywords: "Sales" OR "Revenue" OR "GTM" OR "Business Development"
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
**Refinement**:
|
|
125
|
+
- Filter for companies with recent funding (check YC or Crunchbase)
|
|
126
|
+
- Prioritize companies with 100+ LinkedIn followers
|
|
127
|
+
- Target specific verticals (HR Tech, Sales Tech, Marketing Tech)
|
|
128
|
+
|
|
129
|
+
### Startup Ecosystem
|
|
130
|
+
|
|
131
|
+
**Target Profile**: Founders and early employees at seed/Series A startups
|
|
132
|
+
|
|
133
|
+
**Search Strategy**:
|
|
134
|
+
```
|
|
135
|
+
Step 1: Find Startups (Y Combinator)
|
|
136
|
+
- search_yc_companies
|
|
137
|
+
- batches: Recent batches (W24, S23, W23)
|
|
138
|
+
- industries: <your target verticals>
|
|
139
|
+
|
|
140
|
+
Step 2: Find Founders
|
|
141
|
+
- get_yc_company → Extract founder LinkedIn profiles
|
|
142
|
+
- title: "Founder" OR "Co-Founder" OR "CEO"
|
|
143
|
+
|
|
144
|
+
Step 3: Find Early Team
|
|
145
|
+
- company_keywords: <startup names from step 1>
|
|
146
|
+
- title: "Head of" OR "VP" OR "Lead"
|
|
147
|
+
- Filter for <50 total employees
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
**Refinement**:
|
|
151
|
+
- Target companies that recently raised funding
|
|
152
|
+
- Focus on specific YC batches or industries
|
|
153
|
+
- Look for hiring signals (job postings, team growth)
|
|
154
|
+
|
|
155
|
+
### Agency/Services
|
|
156
|
+
|
|
157
|
+
**Target Profile**: Agency owners and service providers
|
|
158
|
+
|
|
159
|
+
**Search Strategy**:
|
|
160
|
+
```
|
|
161
|
+
Step 1: Find Agencies
|
|
162
|
+
- keywords: "Agency" OR "Services" OR "Consulting"
|
|
163
|
+
- employee_count: ["11-50", "51-200"]
|
|
164
|
+
- industry: <specific agency type>
|
|
165
|
+
|
|
166
|
+
Step 2: Find Owners/Principals
|
|
167
|
+
- title: "Owner" OR "Founder" OR "Principal" OR "Managing Director"
|
|
168
|
+
- company_keywords: <agency names>
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
**Refinement**:
|
|
172
|
+
- Target specific agency types (Marketing, Design, Development)
|
|
173
|
+
- Filter by client focus (B2B vs B2C)
|
|
174
|
+
- Look for agencies with strong LinkedIn presence
|
|
175
|
+
|
|
176
|
+
## Search Workflow Optimization
|
|
177
|
+
|
|
178
|
+
### Funnel Approach
|
|
179
|
+
|
|
180
|
+
**Stage 1: Broad Search** (500+ prospects)
|
|
181
|
+
- Cast wide net with general criteria
|
|
182
|
+
- Focus on title and location only
|
|
183
|
+
- Identify target companies
|
|
184
|
+
|
|
185
|
+
**Stage 2: Company Filtering** (200-300 prospects)
|
|
186
|
+
- Research target companies
|
|
187
|
+
- Filter by company size, industry, funding
|
|
188
|
+
- Remove obviously poor fits
|
|
189
|
+
|
|
190
|
+
**Stage 3: Title Refinement** (100-150 prospects)
|
|
191
|
+
- Narrow to specific decision-maker titles
|
|
192
|
+
- Filter by seniority level
|
|
193
|
+
- Prioritize by title match
|
|
194
|
+
|
|
195
|
+
**Stage 4: Profile Enrichment** (50-75 prospects)
|
|
196
|
+
- Get full LinkedIn profiles
|
|
197
|
+
- Review work history and education
|
|
198
|
+
- Score based on qualification criteria
|
|
199
|
+
|
|
200
|
+
**Stage 5: Email Discovery** (25-40 prospects)
|
|
201
|
+
- Find verified emails
|
|
202
|
+
- Extract website contacts
|
|
203
|
+
- Validate email addresses
|
|
204
|
+
|
|
205
|
+
**Stage 6: Final Qualification** (15-25 prospects)
|
|
206
|
+
- Deep research on top prospects
|
|
207
|
+
- Personalization research
|
|
208
|
+
- Ready for outreach
|
|
209
|
+
|
|
210
|
+
### Batch Processing Strategy
|
|
211
|
+
|
|
212
|
+
**Batch Size Guidelines**:
|
|
213
|
+
- **Initial Search**: 50-100 prospects per batch
|
|
214
|
+
- **Profile Enrichment**: 10-20 profiles per batch
|
|
215
|
+
- **Email Finding**: 5-10 lookups per batch
|
|
216
|
+
- **Website Scraping**: 5-10 websites per batch
|
|
217
|
+
|
|
218
|
+
**Timing Between Batches**:
|
|
219
|
+
- Wait 30-60 seconds between large searches
|
|
220
|
+
- Process enrichment results before next batch
|
|
221
|
+
- Review quality before scaling up
|
|
222
|
+
|
|
223
|
+
**Parallel Processing**:
|
|
224
|
+
- Search multiple locations simultaneously
|
|
225
|
+
- Enrich different cohorts in parallel
|
|
226
|
+
- Extract contacts from multiple websites at once
|
|
227
|
+
|
|
228
|
+
Example:
|
|
229
|
+
```
|
|
230
|
+
Parallel Batch 1:
|
|
231
|
+
- search_linkedin_users(location="San Francisco", count=50)
|
|
232
|
+
- search_linkedin_users(location="New York", count=50)
|
|
233
|
+
- search_linkedin_users(location="Austin", count=50)
|
|
234
|
+
|
|
235
|
+
After review, Parallel Batch 2:
|
|
236
|
+
- Enrich top 10 from San Francisco
|
|
237
|
+
- Enrich top 10 from New York
|
|
238
|
+
- Enrich top 10 from Austin
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
## Qualification Frameworks
|
|
242
|
+
|
|
243
|
+
### BANT Framework (Budget, Authority, Need, Timeline)
|
|
244
|
+
|
|
245
|
+
**Budget** - Company size and funding
|
|
246
|
+
```
|
|
247
|
+
Check:
|
|
248
|
+
- Employee count (proxy for budget)
|
|
249
|
+
- Recent funding rounds (via YC or company posts)
|
|
250
|
+
- Company description for "Enterprise" or "SMB"
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
**Authority** - Decision-making power
|
|
254
|
+
```
|
|
255
|
+
Target titles:
|
|
256
|
+
- C-level: Final decision maker
|
|
257
|
+
- VP/SVP: Budget authority
|
|
258
|
+
- Director: Influencer/user
|
|
259
|
+
- Manager: User/champion
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
**Need** - Problem awareness
|
|
263
|
+
```
|
|
264
|
+
Research:
|
|
265
|
+
- LinkedIn posts about challenges
|
|
266
|
+
- Job postings for relevant roles
|
|
267
|
+
- Company growth signals
|
|
268
|
+
- Industry trends
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
**Timeline** - Buying readiness
|
|
272
|
+
```
|
|
273
|
+
Indicators:
|
|
274
|
+
- Recently joined company (new priorities)
|
|
275
|
+
- Job posting for related role
|
|
276
|
+
- Company expansion news
|
|
277
|
+
- Fiscal calendar alignment
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
### SCOTSMAN Framework (Situational, Competition, Objections, Timeline, Size, Money, Authority, Need)
|
|
281
|
+
|
|
282
|
+
**Enhanced qualification for complex sales**
|
|
283
|
+
|
|
284
|
+
**Situation** - Current state analysis
|
|
285
|
+
```
|
|
286
|
+
Research company:
|
|
287
|
+
- Recent news and LinkedIn posts
|
|
288
|
+
- Company growth trajectory
|
|
289
|
+
- Team expansion signals
|
|
290
|
+
- Technology stack (from jobs)
|
|
291
|
+
```
|
|
292
|
+
|
|
293
|
+
**Competition** - Competitive landscape
|
|
294
|
+
```
|
|
295
|
+
Check:
|
|
296
|
+
- Competitor usage signals in posts
|
|
297
|
+
- Tool mentions in employee profiles
|
|
298
|
+
- Integration partners
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
**Objections** - Potential blockers
|
|
302
|
+
```
|
|
303
|
+
Identify:
|
|
304
|
+
- Budget constraints (company size)
|
|
305
|
+
- Technical limitations
|
|
306
|
+
- Timing issues
|
|
307
|
+
- Process complexity
|
|
308
|
+
```
|
|
309
|
+
|
|
310
|
+
### Lead Scoring Model
|
|
311
|
+
|
|
312
|
+
**Profile Score (40 points)**:
|
|
313
|
+
- Exact title match: 20 points
|
|
314
|
+
- Similar title: 15 points
|
|
315
|
+
- Right department: 10 points
|
|
316
|
+
- Related role: 5 points
|
|
317
|
+
|
|
318
|
+
**Company Score (30 points)**:
|
|
319
|
+
- Ideal company size: 15 points
|
|
320
|
+
- Right industry: 10 points
|
|
321
|
+
- Growth signals: 5 points
|
|
322
|
+
|
|
323
|
+
**Engagement Score (20 points)**:
|
|
324
|
+
- Active on LinkedIn: 10 points
|
|
325
|
+
- Recent posts: 5 points
|
|
326
|
+
- Profile completeness: 5 points
|
|
327
|
+
|
|
328
|
+
**Contact Score (10 points)**:
|
|
329
|
+
- Email found: 10 points
|
|
330
|
+
- Phone found: 5 points
|
|
331
|
+
- No contact: 0 points
|
|
332
|
+
|
|
333
|
+
**Total**: 0-100 points
|
|
334
|
+
- **80-100**: Immediate outreach
|
|
335
|
+
- **60-79**: High priority
|
|
336
|
+
- **40-59**: Qualified
|
|
337
|
+
- **<40**: Nurture or discard
|
|
338
|
+
|
|
339
|
+
## Personalization Research
|
|
340
|
+
|
|
341
|
+
### Profile Intelligence
|
|
342
|
+
|
|
343
|
+
**Work History**:
|
|
344
|
+
```
|
|
345
|
+
get_linkedin_profile + with_experience: true
|
|
346
|
+
|
|
347
|
+
Extract:
|
|
348
|
+
- Career progression (promotions, moves)
|
|
349
|
+
- Company tenure (job hopper vs. stable)
|
|
350
|
+
- Industry experience
|
|
351
|
+
- Skill development path
|
|
352
|
+
```
|
|
353
|
+
|
|
354
|
+
**Education**:
|
|
355
|
+
```
|
|
356
|
+
get_linkedin_profile + with_education: true
|
|
357
|
+
|
|
358
|
+
Look for:
|
|
359
|
+
- Alma mater (school connections)
|
|
360
|
+
- Degree relevance to your solution
|
|
361
|
+
- Certifications (continuous learning)
|
|
362
|
+
- Shared education background
|
|
363
|
+
```
|
|
364
|
+
|
|
365
|
+
**Skills & Expertise**:
|
|
366
|
+
```
|
|
367
|
+
get_linkedin_user_skills
|
|
368
|
+
|
|
369
|
+
Identify:
|
|
370
|
+
- Technical skills (for product fit)
|
|
371
|
+
- Leadership skills (for selling approach)
|
|
372
|
+
- Endorsement count (credibility)
|
|
373
|
+
- Skills gaps you can address
|
|
374
|
+
```
|
|
375
|
+
|
|
376
|
+
### Company Intelligence
|
|
377
|
+
|
|
378
|
+
**Company Profile**:
|
|
379
|
+
```
|
|
380
|
+
get_linkedin_company
|
|
381
|
+
|
|
382
|
+
Analyze:
|
|
383
|
+
- Company description (positioning)
|
|
384
|
+
- Industry and specialties
|
|
385
|
+
- Employee count trend
|
|
386
|
+
- Headquarters location
|
|
387
|
+
```
|
|
388
|
+
|
|
389
|
+
**Recent Activity**:
|
|
390
|
+
```
|
|
391
|
+
get_linkedin_company_posts
|
|
392
|
+
|
|
393
|
+
Review:
|
|
394
|
+
- Announcement posts (expansion, funding, hiring)
|
|
395
|
+
- Thought leadership topics
|
|
396
|
+
- Engagement levels
|
|
397
|
+
- Company culture signals
|
|
398
|
+
```
|
|
399
|
+
|
|
400
|
+
**Team Growth**:
|
|
401
|
+
```
|
|
402
|
+
get_linkedin_company_employee_stats
|
|
403
|
+
|
|
404
|
+
Track:
|
|
405
|
+
- Hiring velocity (growth rate)
|
|
406
|
+
- Department expansion
|
|
407
|
+
- Geographic expansion
|
|
408
|
+
- Recent hires in target roles
|
|
409
|
+
```
|
|
410
|
+
|
|
411
|
+
### Conversation Starters
|
|
412
|
+
|
|
413
|
+
**Career Progression**:
|
|
414
|
+
```
|
|
415
|
+
"Congratulations on your recent promotion to VP Sales at [Company]!"
|
|
416
|
+
"I noticed you've been with [Company] for 3 years - impressive tenure in today's market."
|
|
417
|
+
```
|
|
418
|
+
|
|
419
|
+
**Shared Background**:
|
|
420
|
+
```
|
|
421
|
+
"Fellow [University] alum here - Go [Mascot]!"
|
|
422
|
+
"I see you worked at [Previous Company] - I spent time there too."
|
|
423
|
+
```
|
|
424
|
+
|
|
425
|
+
**Recent Activity**:
|
|
426
|
+
```
|
|
427
|
+
"Your recent post about [Topic] really resonated with me."
|
|
428
|
+
"Saw [Company]'s announcement about [Event] - exciting times!"
|
|
429
|
+
```
|
|
430
|
+
|
|
431
|
+
**Role-Specific**:
|
|
432
|
+
```
|
|
433
|
+
"As a VP Sales, you're probably thinking about [Challenge]..."
|
|
434
|
+
"Given your focus on [Area], I thought you'd find this interesting..."
|
|
435
|
+
```
|
|
436
|
+
|
|
437
|
+
## Email Discovery Strategies
|
|
438
|
+
|
|
439
|
+
### LinkedIn Email Methods
|
|
440
|
+
|
|
441
|
+
**Method 1**: Direct Email Finding
|
|
442
|
+
```
|
|
443
|
+
find_linkedin_user_email(email="prospect@company.com")
|
|
444
|
+
```
|
|
445
|
+
|
|
446
|
+
**Method 2**: Database Lookup
|
|
447
|
+
```
|
|
448
|
+
get_linkedin_user_email_db(profile="linkedin.com/in/prospect")
|
|
449
|
+
```
|
|
450
|
+
|
|
451
|
+
**Method 3**: Contact Info Section
|
|
452
|
+
```
|
|
453
|
+
get_linkedin_profile(user, with_experience=true)
|
|
454
|
+
→ Check profile for contact info section
|
|
455
|
+
→ May include email, phone, website
|
|
456
|
+
```
|
|
457
|
+
|
|
458
|
+
### Website Email Extraction
|
|
459
|
+
|
|
460
|
+
**Contact Page Pattern**:
|
|
461
|
+
```
|
|
462
|
+
parse_webpage(
|
|
463
|
+
url="https://company.com/contact",
|
|
464
|
+
extract_contacts=true
|
|
465
|
+
)
|
|
466
|
+
|
|
467
|
+
Common contact pages:
|
|
468
|
+
- /contact
|
|
469
|
+
- /contact-us
|
|
470
|
+
- /about/contact
|
|
471
|
+
- /get-in-touch
|
|
472
|
+
- /reach-us
|
|
473
|
+
```
|
|
474
|
+
|
|
475
|
+
**Team/About Page Pattern**:
|
|
476
|
+
```
|
|
477
|
+
parse_webpage(
|
|
478
|
+
url="https://company.com/about/team",
|
|
479
|
+
extract_contacts=true
|
|
480
|
+
)
|
|
481
|
+
|
|
482
|
+
Common team pages:
|
|
483
|
+
- /team
|
|
484
|
+
- /about/team
|
|
485
|
+
- /about
|
|
486
|
+
- /about-us
|
|
487
|
+
- /leadership
|
|
488
|
+
- /people
|
|
489
|
+
```
|
|
490
|
+
|
|
491
|
+
**Sitemap Discovery**:
|
|
492
|
+
```
|
|
493
|
+
Step 1: Get sitemap
|
|
494
|
+
get_sitemap(url="https://company.com", count=100)
|
|
495
|
+
|
|
496
|
+
Step 2: Filter for contact-related pages
|
|
497
|
+
→ Look for: contact, team, about, leadership, people
|
|
498
|
+
|
|
499
|
+
Step 3: Parse identified pages
|
|
500
|
+
parse_webpage(url, extract_contacts=true) for each page
|
|
501
|
+
```
|
|
502
|
+
|
|
503
|
+
### Email Pattern Guessing
|
|
504
|
+
|
|
505
|
+
**Common Patterns**:
|
|
506
|
+
```
|
|
507
|
+
first.last@company.com (most common)
|
|
508
|
+
first@company.com
|
|
509
|
+
flast@company.com
|
|
510
|
+
firstl@company.com
|
|
511
|
+
first_last@company.com
|
|
512
|
+
```
|
|
513
|
+
|
|
514
|
+
**Validation Strategy**:
|
|
515
|
+
1. Get person's name from LinkedIn
|
|
516
|
+
2. Get company domain from website
|
|
517
|
+
3. Try common patterns
|
|
518
|
+
4. Validate with email verification service
|
|
519
|
+
5. Test with small batch before scaling
|
|
520
|
+
|
|
521
|
+
**Example**:
|
|
522
|
+
```
|
|
523
|
+
Name: Jane Smith
|
|
524
|
+
Company: TechCorp
|
|
525
|
+
Domain: techcorp.com
|
|
526
|
+
|
|
527
|
+
Try:
|
|
528
|
+
jane.smith@techcorp.com
|
|
529
|
+
jane@techcorp.com
|
|
530
|
+
jsmith@techcorp.com
|
|
531
|
+
janes@techcorp.com
|
|
532
|
+
```
|
|
533
|
+
|
|
534
|
+
## Multi-Threading Strategies
|
|
535
|
+
|
|
536
|
+
### Account-Based Multi-Threading
|
|
537
|
+
|
|
538
|
+
**Strategy**: Contact multiple stakeholders at target account
|
|
539
|
+
|
|
540
|
+
**Steps**:
|
|
541
|
+
1. Identify target account
|
|
542
|
+
2. Map org structure:
|
|
543
|
+
- Economic buyer (C-level)
|
|
544
|
+
- Decision maker (VP level)
|
|
545
|
+
- Influencer (Director level)
|
|
546
|
+
- User/Champion (Manager level)
|
|
547
|
+
3. Personalized outreach to each
|
|
548
|
+
4. Reference other stakeholders in messaging
|
|
549
|
+
|
|
550
|
+
**Example**:
|
|
551
|
+
```
|
|
552
|
+
Target: TechCorp
|
|
553
|
+
|
|
554
|
+
search_linkedin_users(company_keywords="TechCorp", title="CTO")
|
|
555
|
+
→ Economic Buyer: John Smith, CTO
|
|
556
|
+
|
|
557
|
+
search_linkedin_users(company_keywords="TechCorp", title="VP Engineering")
|
|
558
|
+
→ Decision Maker: Jane Doe, VP Engineering
|
|
559
|
+
|
|
560
|
+
search_linkedin_users(company_keywords="TechCorp", title="Director")
|
|
561
|
+
→ Influencer: Bob Johnson, Director of Platform
|
|
562
|
+
|
|
563
|
+
Outreach sequence:
|
|
564
|
+
Day 1: Contact Jane (VP) - decision maker
|
|
565
|
+
Day 3: Contact Bob (Director) - technical champion
|
|
566
|
+
Day 7: Contact John (CTO) - if no response from Jane
|
|
567
|
+
```
|
|
568
|
+
|
|
569
|
+
### Champion Development
|
|
570
|
+
|
|
571
|
+
**Identify Potential Champions**:
|
|
572
|
+
```
|
|
573
|
+
Characteristics:
|
|
574
|
+
- Active on LinkedIn (posts, engages)
|
|
575
|
+
- Industry thought leader
|
|
576
|
+
- Recently joined company
|
|
577
|
+
- Previously used similar solutions
|
|
578
|
+
```
|
|
579
|
+
|
|
580
|
+
**Research Workflow**:
|
|
581
|
+
```
|
|
582
|
+
1. get_linkedin_profile(champion)
|
|
583
|
+
2. get_linkedin_user_posts(champion, count=20)
|
|
584
|
+
3. Analyze:
|
|
585
|
+
- Topics they care about
|
|
586
|
+
- Problems they discuss
|
|
587
|
+
- Solution preferences
|
|
588
|
+
- Engagement patterns
|
|
589
|
+
```
|
|
590
|
+
|
|
591
|
+
**Engagement Strategy**:
|
|
592
|
+
```
|
|
593
|
+
1. Engage with their content (thoughtful comments)
|
|
594
|
+
2. Share relevant resources
|
|
595
|
+
3. Build relationship before pitch
|
|
596
|
+
4. Ask for introduction to decision maker
|
|
597
|
+
```
|
|
598
|
+
|
|
599
|
+
## CRM Integration Patterns
|
|
600
|
+
|
|
601
|
+
### Salesforce Import Format
|
|
602
|
+
|
|
603
|
+
**Required Fields**:
|
|
604
|
+
```csv
|
|
605
|
+
First Name,Last Name,Email,Company,Title,Phone,LinkedIn URL
|
|
606
|
+
Jane,Smith,jane@tech.com,TechCorp,VP Sales,415-555-1234,linkedin.com/in/janesmith
|
|
607
|
+
```
|
|
608
|
+
|
|
609
|
+
**Optional Fields**:
|
|
610
|
+
```csv
|
|
611
|
+
Location,Industry,Company Size,Lead Source,Lead Score,Notes
|
|
612
|
+
San Francisco,Software,201-500,LinkedIn,85,Active on LinkedIn
|
|
613
|
+
```
|
|
614
|
+
|
|
615
|
+
**Import Process**:
|
|
616
|
+
1. Export prospects as CSV
|
|
617
|
+
2. Map CSV columns to Salesforce fields
|
|
618
|
+
3. Import via Data Loader or manual import
|
|
619
|
+
4. Assign to sales reps
|
|
620
|
+
5. Create tasks for follow-up
|
|
621
|
+
|
|
622
|
+
### HubSpot Import Format
|
|
623
|
+
|
|
624
|
+
**Contact Properties**:
|
|
625
|
+
```csv
|
|
626
|
+
Email,First Name,Last Name,Job Title,Company Name,LinkedIn Profile URL,Lead Score,Lifecycle Stage
|
|
627
|
+
jane@tech.com,Jane,Smith,VP Sales,TechCorp,linkedin.com/in/janesmith,85,Sales Qualified Lead
|
|
628
|
+
```
|
|
629
|
+
|
|
630
|
+
**Company Properties** (separate import):
|
|
631
|
+
```csv
|
|
632
|
+
Company Domain,Company Name,Industry,Number of Employees,LinkedIn Company Page
|
|
633
|
+
techcorp.com,TechCorp,Computer Software,350,linkedin.com/company/techcorp
|
|
634
|
+
```
|
|
635
|
+
|
|
636
|
+
**Import Process**:
|
|
637
|
+
1. Export contacts CSV
|
|
638
|
+
2. Export companies CSV (from LinkedIn company data)
|
|
639
|
+
3. Import companies first
|
|
640
|
+
4. Import contacts (will associate with companies)
|
|
641
|
+
5. Create workflows for engagement
|
|
642
|
+
|
|
643
|
+
### Outreach.io / SalesLoft Format
|
|
644
|
+
|
|
645
|
+
**Sequence-Ready Format**:
|
|
646
|
+
```csv
|
|
647
|
+
Email,First Name,Last Name,Title,Company,LinkedIn,Custom1,Custom2,Custom3
|
|
648
|
+
jane@tech.com,Jane,Smith,VP Sales,TechCorp,linkedin.com/in/janesmith,PersonalizationNote,MutualConnection,RecentActivity
|
|
649
|
+
```
|
|
650
|
+
|
|
651
|
+
**Personalization Variables**:
|
|
652
|
+
- Custom1: Personalization fact (e.g., "Recent promotion to VP")
|
|
653
|
+
- Custom2: Mutual connection name
|
|
654
|
+
- Custom3: Recent company activity (e.g., "Series B funding")
|
|
655
|
+
|
|
656
|
+
**Sequence Setup**:
|
|
657
|
+
1. Import prospects with variables
|
|
658
|
+
2. Create email templates using {{Custom1}}, {{Custom2}}, etc.
|
|
659
|
+
3. Set up multi-touch sequence (Email → Wait → LinkedIn → Wait → Call)
|
|
660
|
+
4. Track engagement and replies
|
|
661
|
+
|
|
662
|
+
## Compliance & Best Practices
|
|
663
|
+
|
|
664
|
+
### GDPR Compliance
|
|
665
|
+
|
|
666
|
+
**Data Collection**:
|
|
667
|
+
- Only collect publicly available information
|
|
668
|
+
- Document lawful basis for processing
|
|
669
|
+
- Provide data subject rights (access, deletion)
|
|
670
|
+
- Maintain data processing records
|
|
671
|
+
|
|
672
|
+
**Storage & Security**:
|
|
673
|
+
- Encrypt data at rest and in transit
|
|
674
|
+
- Implement access controls
|
|
675
|
+
- Set data retention policies
|
|
676
|
+
- Regular security audits
|
|
677
|
+
|
|
678
|
+
**Consent & Opt-Out**:
|
|
679
|
+
- Provide clear opt-out mechanism in all communications
|
|
680
|
+
- Honor opt-out requests within 24-48 hours
|
|
681
|
+
- Maintain suppression lists
|
|
682
|
+
- Don't re-add opted-out contacts
|
|
683
|
+
|
|
684
|
+
### CAN-SPAM Compliance
|
|
685
|
+
|
|
686
|
+
**Email Requirements**:
|
|
687
|
+
- Accurate "From" name and email
|
|
688
|
+
- Truthful subject lines
|
|
689
|
+
- Identify message as advertisement (if applicable)
|
|
690
|
+
- Include physical mailing address
|
|
691
|
+
- Provide clear opt-out mechanism
|
|
692
|
+
- Honor opt-outs within 10 business days
|
|
693
|
+
|
|
694
|
+
**Best Practices**:
|
|
695
|
+
- Use double opt-in when possible
|
|
696
|
+
- Clear unsubscribe link in every email
|
|
697
|
+
- Don't sell or share email lists
|
|
698
|
+
- Monitor bounce and spam rates
|
|
699
|
+
- Maintain clean email lists
|
|
700
|
+
|
|
701
|
+
### LinkedIn Usage Policies
|
|
702
|
+
|
|
703
|
+
**Do's**:
|
|
704
|
+
- Respect connection limits (100-200/week max)
|
|
705
|
+
- Personalize connection requests
|
|
706
|
+
- Engage authentically with content
|
|
707
|
+
- Respect privacy settings
|
|
708
|
+
- Use data for legitimate business purposes
|
|
709
|
+
|
|
710
|
+
**Don'ts**:
|
|
711
|
+
- Don't automate connection requests
|
|
712
|
+
- Don't send mass generic messages
|
|
713
|
+
- Don't scrape private profile information
|
|
714
|
+
- Don't circumvent LinkedIn's limits
|
|
715
|
+
- Don't misrepresent yourself or company
|
|
716
|
+
|
|
717
|
+
### Ethical Prospecting
|
|
718
|
+
|
|
719
|
+
**Respect**:
|
|
720
|
+
- Honor "do not contact" requests immediately
|
|
721
|
+
- Don't contact same person on multiple channels simultaneously
|
|
722
|
+
- Respect time zones when calling/messaging
|
|
723
|
+
- Keep messaging frequency reasonable (1-2x/week max)
|
|
724
|
+
|
|
725
|
+
**Transparency**:
|
|
726
|
+
- Be clear about who you are and why you're reaching out
|
|
727
|
+
- Don't misrepresent your solution or company
|
|
728
|
+
- Be honest about how you found their information
|
|
729
|
+
- Provide value in every interaction
|
|
730
|
+
|
|
731
|
+
**Value-First**:
|
|
732
|
+
- Share relevant content before pitching
|
|
733
|
+
- Offer insights from their industry
|
|
734
|
+
- Make meaningful connections
|
|
735
|
+
- Focus on helping, not selling
|
|
736
|
+
|
|
737
|
+
---
|
|
738
|
+
|
|
739
|
+
**Next Steps**: Apply these strategies to your lead generation workflows, and refer to [WEB_SCRAPING.md](WEB_SCRAPING.md) for website contact extraction techniques.
|