Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

clay-known-pitfalls粘土已知的陷阱

Agent Skill

clay-known-pitfalls 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

612

周安装

25

GitHub Stars

2,090

下载量

196
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:clay-known-pitfalls(粘土已知的陷阱)
来源仓库:https://github.com/jeremylongshore/claude-code-plugins-plus-skills
仓库路径:skills/clay-known-pitfalls
安装命令:
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill clay-known-pitfalls
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill clay-known-pitfalls

简介

Clay 已知陷阱技能汇总 Clay 使用中常见的误操作和隐藏问题,避免浪费时间和信用。

  • 包含 webhook 50K 限制、重复增强、字段映射错误等实际生产中的典型坑点。
  • 每个陷阱均提供症状、根因和修复方案,基于真实经验总结而成。
  • 适用于已有一定 Clay 使用经验的用户,帮助规避重复性错误。
  • clay-known-pitfalls 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

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.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.19%
按下载量换算69

Claude

30.57%
按下载量换算60

Cursor

19.63%
按下载量换算38

Gemini CLI

9.11%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills