clay-prod-checklist
Execute production readiness checklist for Clay integrations. Use when launching Clay-powered enrichment pipelines, preparing for go-live, or auditing production Clay configurations. Trigger with phrases like "clay production", "clay go-live", "clay launch checklist", "clay production readiness", "deploy clay pipeline".
What this skill does
# Clay Production Checklist
## Overview
Complete checklist for launching Clay enrichment pipelines in production. Covers table configuration, credit budgeting, webhook reliability, CRM sync validation, and monitoring setup.
## Prerequisites
- Clay table tested with sample data (100+ rows enriched successfully)
- CRM integration tested in staging
- Credit budget approved for monthly volume
- Team trained on Clay table management
## Instructions
### Phase 1: Table Configuration
- [ ] **Table schema finalized** -- all columns named, typed, and ordered
- [ ] **Enrichment columns configured** -- each column has correct provider and input mapping
- [ ] **Waterfall configured** -- providers ordered cheapest-first with "stop on first result"
- [ ] **Auto-run settings verified** -- table-level auto-update ON, column-level auto-run ON for needed columns
- [ ] **Conditional run rules set** -- enrichments only trigger when input data exists
- [ ] **Formula columns tested** -- ICP scoring and lead grading formulas validated
- [ ] **AI/Claygent columns reviewed** -- prompts produce consistent, quality output
### Phase 2: Data Quality Gates
- [ ] **Input validation in place** -- scripts validate data before webhook submission
- [ ] **Personal email filter** -- gmail.com, yahoo.com, etc. blocked from enrichment
- [ ] **Deduplication active** -- duplicate records detected before sending to Clay
- [ ] **Sample enrichment run completed** -- 500+ row test with >60% email find rate
- [ ] **Credit cost per row calculated** -- know your average credits per enriched lead
```typescript
// Pre-submission validation (run before pushing to Clay)
function validateForProduction(rows: any[]): { valid: any[]; rejected: any[] } {
const personalDomains = ['gmail.com', 'yahoo.com', 'hotmail.com', 'outlook.com', 'icloud.com'];
const seen = new Set<string>();
const valid: any[] = [];
const rejected: any[] = [];
for (const row of rows) {
const key = `${row.domain}:${row.first_name}:${row.last_name}`.toLowerCase();
if (!row.domain?.includes('.'))
rejected.push({ row, reason: 'invalid domain' });
else if (personalDomains.some(d => row.domain.endsWith(d)))
rejected.push({ row, reason: 'personal email domain' });
else if (seen.has(key))
rejected.push({ row, reason: 'duplicate' });
else {
seen.add(key);
valid.push(row);
}
}
console.log(`Validation: ${valid.length} valid, ${rejected.length} rejected (${(rejected.length / rows.length * 100).toFixed(1)}% filtered)`);
return { valid, rejected };
}
```
### Phase 3: Credit & Cost Controls
- [ ] **Monthly credit budget set** -- know your plan's monthly credits
- [ ] **Table row limits configured** -- max rows set to prevent runaway enrichment
- [ ] **Provider API keys connected** -- own keys for high-volume providers (saves 70-80%)
- [ ] **Credit burn monitoring** -- alerts when daily usage exceeds threshold
- [ ] **Webhook submission counter** -- tracking against 50K lifetime limit
| Plan | Monthly Credits | Actions | HTTP API | Webhook Limit |
|------|----------------|---------|----------|---------------|
| Launch | 2,500 | 15,000 | No | 50K/webhook |
| Growth | 6,000 | 40,000 | Yes | 50K/webhook |
| Enterprise | Custom | Custom | Yes | 50K/webhook |
### Phase 4: Integration Reliability
- [ ] **Webhook endpoint health check** -- Clay can reach your callback URL
- [ ] **Retry logic implemented** -- 429 and 5xx responses handled with backoff
- [ ] **CRM sync tested** -- enriched records correctly map to CRM objects
- [ ] **HTTP API columns tested** -- outbound API calls return expected data
- [ ] **Error handling for empty enrichments** -- graceful handling when providers return no data
```bash
# Pre-flight connectivity checks
echo "=== Clay Production Pre-flight ==="
# 1. Webhook reachable
curl -s -o /dev/null -w "Webhook: HTTP %{http_code}\n" \
-X POST "$CLAY_WEBHOOK_URL" \
-H "Content-Type: application/json" \
-d '{"_preflight": true}'
# 2. Enterprise API (if applicable)
if [ -n "${CLAY_API_KEY:-}" ]; then
curl -s -o /dev/null -w "Enterprise API: HTTP %{http_code}\n" \
-X POST "https://api.clay.com/v1/people/enrich" \
-H "Authorization: Bearer $CLAY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email": "[email protected]"}'
fi
# 3. Callback endpoint reachable
curl -s -o /dev/null -w "Callback endpoint: HTTP %{http_code}\n" \
"https://your-app.com/api/health"
```
### Phase 5: Monitoring & Alerting
- [ ] **Credit consumption tracked** -- daily/weekly credit usage logged
- [ ] **Enrichment hit rate monitored** -- alert if email find rate drops below 40%
- [ ] **Webhook delivery failures alerted** -- notification on 4xx/5xx from webhooks
- [ ] **CRM sync errors tracked** -- alert on failed CRM pushes
- [ ] **Table row count monitored** -- alert when approaching plan limits
### Phase 6: Documentation & Runbooks
- [ ] **Table schema documented** -- column purposes, providers, and dependencies
- [ ] **Credit cost model documented** -- expected cost per lead at current volume
- [ ] **Webhook rotation procedure** -- steps to replace exhausted webhook (50K limit)
- [ ] **Provider failover plan** -- what to do when a provider is down
- [ ] **On-call escalation path** -- who to contact for Clay issues
## Error Handling
| Alert | Condition | Action |
|-------|-----------|--------|
| Credit balance low | < 500 credits remaining | Pause enrichments, add credits or connect own keys |
| Email find rate drop | < 40% for 2+ hours | Check input data quality, review provider status |
| Webhook 429s | > 5 per hour | Reduce submission rate, check plan limits |
| CRM sync failures | > 10 per batch | Check CRM field mapping, verify API key |
## Resources
- [Clay Plans & Billing](https://university.clay.com/docs/plans-and-billing)
- [Clay University -- Table Management](https://university.clay.com/docs/table-management-settings)
## Next Steps
For version upgrades, see `clay-upgrade-migration`.
Related in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.