clay-known-pitfalls

0
0
Source

Identify and avoid Clay anti-patterns and common integration mistakes. Use when reviewing Clay code for issues, onboarding new developers, or auditing existing Clay integrations for best practices violations. Trigger with phrases like "clay mistakes", "clay anti-patterns", "clay pitfalls", "clay what not to do", "clay code review".

Install

mkdir -p .claude/skills/clay-known-pitfalls && curl -L -o skill.zip "https://mcp.directory/api/skills/download/8427" && unzip -o skill.zip -d .claude/skills/clay-known-pitfalls && rm skill.zip

Installs to .claude/skills/clay-known-pitfalls

About this skill

Clay Known Pitfalls

Overview

Real gotchas when using Clay's data enrichment platform. These are the mistakes that cost credits, waste time, or break integrations -- learned from production experience. Each pitfall includes the exact symptom, root cause, and fix.

Prerequisites

  • Active Clay account with tables configured
  • Understanding of Clay's credit and enrichment model
  • Experience with at least one Clay enrichment workflow

Instructions

Pitfall 1: Webhook 50K Limit Surprise

Symptom: Webhook silently stops accepting new data. No error, no notification. New rows simply don't appear.

Root cause: Each Clay webhook has a hard 50,000 submission lifetime limit. This limit persists even after deleting rows from the table.

Fix:

  • Monitor webhook submission count in your application
  • Create a new webhook on the same table when approaching 45K
  • Use the WebhookRotator pattern from clay-load-scale
  • Set up an alert at 40K submissions

Pitfall 2: Waterfall Burns Credits Without "Stop on First Result"

Symptom: Credits consumed at 3-5x the expected rate on waterfall enrichment columns.

Root cause: By default, waterfall enrichment may query ALL providers even after the first one finds data. You must explicitly enable "stop on first result."

Fix: In each waterfall column's settings, ensure the stop condition is configured. Without it, a 5-provider email waterfall costs 10-15 credits per row instead of 2-3.


Pitfall 3: Personal Email Domains Waste Credits

Symptom: Company enrichment returns empty for 30-50% of rows.

Root cause: Rows contain gmail.com, yahoo.com, hotmail.com domains. Clay's company enrichment can't match personal email domains to companies.

Fix:

const PERSONAL_DOMAINS = new Set([
  'gmail.com', 'yahoo.com', 'hotmail.com', 'outlook.com',
  'icloud.com', 'aol.com', 'protonmail.com', 'mail.com',
]);

function filterBeforeEnrichment(rows: any[]) {
  return rows.filter(r => {
    const domain = r.domain?.toLowerCase();
    if (PERSONAL_DOMAINS.has(domain)) {
      console.log(`Filtered: ${domain} (personal email domain)`);
      return false;
    }
    return true;
  });
}
// Apply BEFORE sending to Clay. Typical savings: 20-40% of credits.

Pitfall 4: Auto-Update Re-Enriches Entire Table

Symptom: Thousands of credits consumed overnight. Enrichment columns re-ran on rows that were already enriched.

Root cause: Table-level auto-update was ON, and a column edit or provider reconnection triggered re-enrichment of all existing rows.

Fix:

  • Turn off table-level auto-update before editing column configuration
  • Use conditional run rules: ISEMPTY(Work Email) to skip already-enriched rows
  • Only enable auto-update for tables with active webhook inflow

Pitfall 5: CSV Header Case Sensitivity

Symptom: Imported CSV data appears in wrong columns or creates new columns instead of mapping to existing ones.

Root cause: Clay maps CSV columns by exact header name. "Company Name" does not match "company_name" or "company name."

Fix:

// Normalize CSV headers before import
function normalizeCSVHeaders(headers: string[]): string[] {
  return headers.map(h => h.trim()); // Only trim whitespace
  // Do NOT lowercase or change case — match the exact Clay column name
}

// Better: rename your Clay columns to match your CSV format
// Or: use Clay's column mapping UI during CSV import to manually map

Pitfall 6: Reading Data Immediately After Webhook Write

Symptom: Checking the table via API or UI shows the row but enrichment columns are empty.

Root cause: Enrichment runs asynchronously after the row is created. Depending on provider speed and table queue, enrichment can take 5-60 seconds.

Fix: Use HTTP API columns to push enriched data back to your application rather than polling. If you must poll, wait at least 30 seconds and check for populated enrichment columns before reading.


Pitfall 7: Claygent Prompts That Are Too Vague

Symptom: Claygent returns "Could not find information" or generic/wrong data.

Root cause: Prompt says "Research this company" instead of specific, directed questions.

Bad prompt: "Research {{Company Name}}" Good prompt: "Go to {{domain}}/about and find the CEO's name. Then check {{domain}}/pricing for the starting price. Return: CEO Name, Starting Price."

Fix:

  • Be specific about what page to check
  • Ask for specific data points, not general research
  • Add fallback instructions: "If not on website, check LinkedIn"
  • Use Navigator mode for JavaScript-heavy sites

Pitfall 8: Not Connecting Your Own API Keys

Symptom: Monthly Clay bill much higher than expected. Credits consumed at 2-13 per enrichment.

Root cause: Using Clay's managed provider accounts instead of your own API keys. Every provider lookup costs Clay credits when using managed accounts.

Fix: Go to Settings > Connections and add your own API keys for Apollo, Clearbit, Hunter, etc. Result: 0 Clay data credits consumed per enrichment (only 1 Action consumed).

Savings comparison for 10K enrichments/month:

SetupCredits UsedApproximate Cost Impact
All managed~60K creditsFull credit consumption
Own API keys0 data credits + 10K actions70-80% savings

Pitfall 9: No Conditional Run on Expensive Columns

Symptom: Claygent and AI columns run on every row including low-quality leads, burning expensive credits.

Root cause: Claygent and AI columns are set to auto-run on all new rows without qualification criteria.

Fix: Add "Only run if" conditions:

  • Claygent: ICP Score >= 60 AND ISNOTEMPTY(Company Name)
  • AI personalization: ICP Score >= 70 AND ISNOTEMPTY(Work Email)
  • Phone lookup: ICP Score >= 80 AND ISNOTEMPTY(Work Email)

This ensures expensive operations only run on qualified prospects.


Pitfall 10: Formula Column References Break on Rename

Symptom: Formula column shows #ERROR or #REF after renaming another column.

Root cause: Clay formulas reference columns by display name (case-sensitive). Renaming a referenced column breaks the formula.

Fix: After renaming any column, review all formula columns and update their references. Consider establishing a column naming convention and documenting it so names don't change unexpectedly.

Quick Reference Anti-Pattern Checklist

Anti-PatternCost ImpactFix Difficulty
No "stop on first result"3-5x credit wasteEasy (toggle)
Personal domains not filtered20-40% credit wasteEasy (pre-filter)
No own API keys70-80% higher costEasy (paste keys)
Auto-update re-enrichmentThousands of creditsMedium (conditions)
Vague Claygent promptsLow hit rate, wasted creditsMedium (rewrite)
No conditional run rulesExpensive columns run on allEasy (add conditions)
Webhook 50K limit hitData lossMedium (rotation)

Resources

Next Steps

For comprehensive debugging when things go wrong, see clay-advanced-troubleshooting.

svg-icon-generator

jeremylongshore

Svg Icon Generator - Auto-activating skill for Visual Content. Triggers on: svg icon generator, svg icon generator Part of the Visual Content skill category.

8227

d2-diagram-creator

jeremylongshore

D2 Diagram Creator - Auto-activating skill for Visual Content. Triggers on: d2 diagram creator, d2 diagram creator Part of the Visual Content skill category.

4926

automating-mobile-app-testing

jeremylongshore

This skill enables automated testing of mobile applications on iOS and Android platforms using frameworks like Appium, Detox, XCUITest, and Espresso. It generates end-to-end tests, sets up page object models, and handles platform-specific elements. Use this skill when the user requests mobile app testing, test automation for iOS or Android, or needs assistance with setting up device farms and simulators. The skill is triggered by terms like "mobile testing", "appium", "detox", "xcuitest", "espresso", "android test", "ios test".

14218

performing-penetration-testing

jeremylongshore

This skill enables automated penetration testing of web applications. It uses the penetration-tester plugin to identify vulnerabilities, including OWASP Top 10 threats, and suggests exploitation techniques. Use this skill when the user requests a "penetration test", "pentest", "vulnerability assessment", or asks to "exploit" a web application. It provides comprehensive reporting on identified security flaws.

4615

designing-database-schemas

jeremylongshore

Design and visualize efficient database schemas, normalize data, map relationships, and generate ERD diagrams and SQL statements.

11514

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

11410

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

1,1421,171

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

969933

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

683829

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

691549

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

797540

pdf-to-markdown

aliceisjustplaying

Convert entire PDF documents to clean, structured Markdown for full context loading. Use this skill when the user wants to extract ALL text from a PDF into context (not grep/search), when discussing or analyzing PDF content in full, when the user mentions "load the whole PDF", "bring the PDF into context", "read the entire PDF", or when partial extraction/grepping would miss important context. This is the preferred method for PDF text extraction over page-by-page or grep approaches.

697374

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.