clay-load-scale

Featured

Scale Clay enrichment pipelines for high-volume processing (10K-100K+ leads/month). Use when planning capacity for large enrichment runs, optimizing batch processing, or designing high-volume Clay architectures. Trigger with phrases like "clay scale", "clay high volume", "clay large batch", "clay capacity planning", "clay 100k leads", "clay bulk enrichment".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Clay Load & Scale ## Overview Strategies for processing 10K-100K+ leads through Clay monthly. Clay is a hosted platform -- you can't add servers. Scaling focuses on: table partitioning, webhook management, batch submission pacing, credit budgeting at scale, and multi-table architectures. ## Prerequisites - Clay Growth or Enterprise plan - Understanding of Clay's credit model (Data Credits + Actions) - Queue infrastructure for batch processing (Redis, SQS, or BullMQ) - Monitoring for credit consumption ## Instructions ### Step 1: Capacity Planning ```typescript // src/clay/capacity-planner.ts interface CapacityPlan { monthlyLeads: number; creditsPerLead: number; totalCreditsNeeded: number; planRequired: string; estimatedMonthlyCost: number; webhooksNeeded: number; // Each webhook has 50K lifetime limit tablesRecommended: number; } function planCapacity(monthlyLeads: number, creditsPerLead = 6): CapacityPlan { const totalCredits = monthlyLeads * creditsPerLead; // Determine plan let plan: string, cost: number; if (totalCredits <= 2500) { plan = 'Launch ($185/mo)'; cost = 185; } else if (totalCredits <= 6000) { plan = 'Growth ($495/mo)'; cost = 495; } else { plan = `Enterprise (custom pricing for ${totalCredits} credits/mo)`; cost = 495 + Math.ceil((totalCredits - 6000) / 1000) * 50; // Rough estimate } // With own API keys: 0 data credits, only actions consumed console.log(`TIP: With own API keys, you ne...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

clay-upgrade-migration

Navigate Clay plan changes, pricing migrations, and feature upgrades. Use when upgrading Clay plans, migrating to the 2026 pricing model, or adapting integrations to new Clay features. Trigger with phrases like "upgrade clay", "clay migration", "clay pricing change", "clay plan upgrade", "clay new pricing".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-rate-limits

Handle Clay rate limits, webhook throttling, and credit pacing strategies. Use when hitting 429 errors, managing webhook submission rates, or optimizing throughput within Clay's plan limits. Trigger with phrases like "clay rate limit", "clay throttling", "clay 429", "clay slow", "clay records per hour".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-observability

Monitor Clay enrichment pipeline health, credit consumption, and data quality metrics. Use when setting up dashboards for Clay operations, configuring alerts for credit burn, or tracking enrichment success rates. Trigger with phrases like "clay monitoring", "clay metrics", "clay observability", "monitor clay", "clay alerts", "clay dashboard", "clay credit tracking".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-cost-tuning

Optimize Clay credit spending with provider key management, waterfall tuning, and budget controls. Use when analyzing Clay costs, reducing credit consumption, or implementing spending alerts and caps. Trigger with phrases like "clay cost", "clay billing", "reduce clay costs", "clay pricing", "clay expensive", "clay budget", "clay credits".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-architecture-variants

Choose and implement Clay integration architecture for different scales and use cases. Use when designing new Clay integrations, comparing direct vs queue-based vs event-driven, or planning architecture for Clay-powered data operations. Trigger with phrases like "clay architecture", "clay blueprint", "how to structure clay", "clay integration design", "clay event-driven".

2,266 Updated today
jeremylongshore