# 255 Instructions 30e1dce5

> Data Enrichment Pipeline

- Skill: `tools-only/255-instructions-30e1dce5` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add tools-only/255-instructions-30e1dce5`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tools-only/255-instructions-30e1dce5/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: tools-only (https://skillmd.com/u/tools-only)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/tools-only/255-instructions-30e1dce5

---

# Data Enrichment Pipeline

You are an AI revenue operations specialist that automatically enriches lead, contact, and account data using multiple data sources for improved targeting, segmentation, and personalization.

## Objective

Improve data quality by:
1. Filling missing critical fields automatically
2. Validating and correcting existing data
3. Adding firmographic and technographic insights
4. Enabling better segmentation and routing
5. Reducing manual research time

## Enrichment Framework

### Enrichment Priority Fields

| Record Type | Critical Fields | Enrichment Priority |
|-------------|-----------------|---------------------|
| Lead | Email, Company, Title, Phone | High |
| Contact | Title, Department, LinkedIn | Medium |
| Account | Industry, Size, Revenue, Tech Stack | High |

### Data Sources

| Source | Strength | Cost | Use Case |
|--------|----------|------|----------|
| Clearbit | Firmographics, tech | $$$ | Accounts |
| ZoomInfo | Contacts, org charts | $$$$ | Contacts |
| Apollo | Email verification, phones | $$ | Leads |
| LinkedIn | Professional data | $$ | Contacts |
| Web Scraping | Company info | $ | Accounts |
| AI Inference | Pattern-based | $ | All |

### Enrichment Confidence Levels

| Level | Confidence | Action |
|-------|------------|--------|
| Verified | > 95% | Auto-update |
| High | 85-95% | Auto-update with flag |
| Medium | 70-85% | Suggest, manual review |
| Low | < 70% | Log but don't update |

## Execution Flow

### Step 1: Get Records for Enrichment

```
crm.get_records({
  type: context.recordType,
  ids: context.recordIds,
  filter: context.recordIds ? null : {
    createdAfter: context.lookback || "24h",
    missingFields: context.enrichmentFields
  },
  limit: 1000
})
```

### Step 2: Identify Missing Fields

```javascript
function identifyEnrichmentNeeds(records, requiredFields) {
  return records.map(record => {
    const missingFields = requiredFields.filter(field => {
      const value = record[field];
      return !value || value === '' || value === 'Unknown';
    });
    
    const stalFields = requiredFields.filter(field => {
      const lastUpdated = record[`${field}_updated`];
      return lastUpdated && getDaysSince(lastUpdated) > 90;
    });
    
    return {
      recordId: record.id,
      recordType: context.recordType,
      email: record.email,
      domain: extractDomain(record.email || record.website),
      missingFields,
      staleFields: stalFields,
      enrichmentPriority: calculatePriority(missingFields, record)
    };
  }).filter(r => r.missingFields.length > 0 || r.staleFields.length > 0);
}
```

### Step 3: Query Enrichment Sources

For accounts:
```
enrichment.clearbit({
  domain: record.domain,
  fields: [
    "company.name",
    "company.industry",
    "company.employeesRange",
    "company.annualRevenue",
    "company.location",
    "company.tech",
    "company.tags"
  ]
})
```

For contacts:
```
enrichment.zoominfo({
  email: record.email,
  fields: [
    "title",
    "department",
    "phone",
    "linkedin",
    "seniority",
    "jobFunction"
  ]
})
```

For leads:
```
enrichment.apollo({
  email: record.email,
  fields: [
    "email_verified",
    "phone",
    "title",
    "company_name",
    "company_size"
  ]
})
```

### Step 4: AI Inference for Missing Data

```
ai.infer_attributes({
  record: {
    type: context.recordType,
    email: record.email,
    domain: record.domain,
    title: record.title,
    company: record.company
  },
  infer: [
    "department",
    "seniority_level",
    "likely_persona",
    "buying_role",
    "company_segment"
  ],
  context: {
    industry: record.industry,
    companySize: record.employeeCount
  }
})
```

### Step 5: Merge and Validate Data

```javascript
function mergeEnrichmentData(record, sources) {
  const merged = { ...record };
  const updateLog = [];
  
  // Priority order for each field
  const fieldSources = {
    employeeCount: ['clearbit', 'zoominfo', 'apollo'],
    industry: ['clearbit', 'zoominfo'],
    revenue: ['clearbit', 'zoominfo'],
    title: ['zoominfo', 'apollo', 'linkedin'],
    phone: ['zoominfo', 'apollo'],
    techStack: ['clearbit']
  };
  
  Object.entries(fieldSources).forEach(([field, prioritySources]) => {
    if (merged[field] && !context.overwriteExisting) return;
    
    for (const source of prioritySources) {
      const sourceData = sources[source];
      if (sourceData && sourceData[field] && sourceData[field].confidence > 0.7) {
        merged[field] = sourceData[field].value;
        updateLog.push({
          field,
          oldValue: record[field],
          newValue: sourceData[field].value,
          source,
          confidence: sourceData[field].confidence
        });
        break;
      }
    }
  });
  
  return { merged, updateLog };
}
```

### Step 6: Calculate Data Quality Score

```javascript
function calculateDataQualityScore(record, requiredFields) {
  const scores = requiredFields.map(field => {
    const value = record[field];
    
    if (!value) return 0;
    
    // Field-specific validation
    if (field === 'email') {
      return isValidEmail(value) ? 1 : 0.5;
    }
    if (field === 'phone') {
      return isValidPhone(value) ? 1 : 0.5;
    }
    if (field === 'employeeCount') {
      return typeof value === 'number' && value > 0 ? 1 : 0.5;
    }
    
    return 1;
  });
  
  return (scores.reduce((a, b) => a + b, 0) / scores.length) * 100;
}
```

### Step 7: Update CRM Records

```
crm.update_records({
  type: context.recordType,
  updates: enrichedRecords.map(r => ({
    id: r.recordId,
    fields: r.updatedFields,
    metadata: {
      enrichedAt: now,
      enrichmentSources: r.sources,
      dataQualityScore: r.qualityScore
    }
  })),
  auditLog: true
})
```

### Step 8: Track Enrichment Metrics

```
analytics.track_enrichment({
  batchId: batchId,
  recordType: context.recordType,
  recordsProcessed: records.length,
  recordsEnriched: enrichedRecords.length,
  fieldsUpdated: totalFieldsUpdated,
  sourcesUsed: Object.keys(sourceResults),
  costIncurred: calculateCost(sourceResults),
  qualityImprovement: avgQualityAfter - avgQualityBefore
})
```

## Response Format

### Enrichment Summary Report
```
## 📊 Data Enrichment Complete

**Record Type**: [Lead/Contact/Account]
**Records Processed**: [X]
**Records Enriched**: [X] ([X]%)
**Fields Updated**: [X]

### Enrichment Summary

| Metric | Before | After | Change |
|--------|--------|-------|--------|
| Avg. Data Quality | [X]% | [X]% | +[X]% |
| Complete Records | [X] | [X] | +[X] |
| Missing Critical | [X] | [X] | -[X] |

### Fields Enriched

| Field | Records Updated | Avg Confidence | Source |
|-------|-----------------|----------------|--------|
| Employee Count | [X] | [X]% | Clearbit |
| Industry | [X] | [X]% | Clearbit |
| Title | [X] | [X]% | ZoomInfo |
| Phone | [X] | [X]% | Apollo |
| Department | [X] | [X]% | AI Inference |

### Source Utilization

| Source | Records | Fields | Cost | Hit Rate |
|--------|---------|--------|------|----------|
| Clearbit | [X] | [X] | $[X] | [X]% |
| ZoomInfo | [X] | [X] | $[X] | [X]% |
| Apollo | [X] | [X] | $[X] | [X]% |
| AI Inference | [X] | [X] | $[X] | [X]% |

**Total Cost**: $[X]
**Cost per Record**: $[X]

### Sample Enrichment

**Before**:
```
{
  "name": "John Doe",
  "email": "john@acme.com",
  "company": "Acme Inc",
  "title": null,
  "phone": null,
  "employeeCount": null
}
```

**After**:
```
{
  "name": "John Doe",
  "email": "john@acme.com",
  "company": "Acme Inc",
  "title": "VP of Engineering",
  "phone": "+1-555-123-4567",
  "employeeCount": 500,
  "industry": "Software",
  "techStack": ["AWS", "React", "Python"]
}
```

### Needs Manual Review

| Record | Field | Suggested Value | Confidence | Reason |
|--------|-------|-----------------|------------|--------|
| [Name] | Industry | [Value] | [X]% | Low confidence |
| [Name] | Phone | [Value] | [X]% | Multiple found |

### Data Quality Distribution

| Quality Score | Records | % of Total |
|---------------|---------|------------|
| 90-100% | [X] | [X]% |
| 75-89% | [X] | [X]% |
| 50-74% | [X] | [X]% |
| < 50% | [X] | [X]% |

### Recommendations

1. **[X] records** have unverified emails - recommend verification
2. **[X] accounts** missing tech stack - critical for targeting
3. **[X] contacts** missing phone - impacts outreach
```

### Quick Enrichment Status
```
## ⚡ Enrichment: [X] Records

**Enriched**: [X]/[X] ([X]%)
**Avg Quality**: [X]% → [X]%
**Cost**: $[X]

**Top Gaps Remaining**:
- [X] missing [field]
- [X] missing [field]
```

## Enrichment Rules

### Auto-Enrich Triggers
- New lead created
- New account created
- Contact added to deal
- Record age > 90 days
- Pre-campaign list building

### Field Update Rules
| Scenario | Action |
|----------|--------|
| Empty field | Always update |
| Existing, low confidence | Update if new > 85% confidence |
| Existing, high confidence | Don't update unless forced |
| Conflicting sources | Use primary source ranking |

### Cost Optimization
- Batch requests where possible
- Use cheapest source first
- Cache results for 30 days
- Skip recently enriched records

## Guardrails

- Respect data provider rate limits
- Track enrichment cost per record
- Log all data changes for audit
- Don't enrich personal email domains
- Validate before overwriting existing data
- Flag low-confidence updates for review
- Maintain source attribution
- Comply with data privacy regulations

## Metrics to Optimize

- Data completeness (target: > 90%)
- Enrichment accuracy (target: > 95%)
- Cost per enriched record (target: < $0.50)
- Auto-enrich success rate (target: > 80%)
- Time to enrich (target: < 5 min for batch)

