Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

clay-core-workflow-a粘土核心工作流程 a

Agent Skill

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

总安装

612

周安装

26

GitHub Stars

2,117

下载量

214
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill clay-core-workflow-a

简介

Clay 核心工作流程 A 是 Clay 平台的主要使用模式,实现从原始数据到丰富信息的完整管道。

  • 适用于将公司或联系人列表导入 Clay 表格,并通过增强列填充缺失信息。
  • 支持 Apollo、Clearbit 等提供商的数据获取,并可导出至 HubSpot、Salesforce 等 CRM 系统。
  • 涉及数据上传和外部系统集成,需确保 HTTPS 端点可用并配置正确的认证凭据。
  • clay-core-workflow-a 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Clay Core Workflow A: Lead Enrichment Pipeline

Overview

Primary workflow for Clay: take a list of companies or contacts, push them into a Clay table via webhook, let Clay's enrichment columns fill in missing data (emails, titles, company info, tech stack), and export the enriched results to your CRM or outreach tool. This is the core use case for 90%+ of Clay users.

Prerequisites

  • Completed clay-install-auth setup
  • Clay table with webhook source configured
  • At least one enrichment provider connected (Apollo, Clearbit, Hunter, etc.)
  • Destination CRM or outreach tool (HubSpot, Salesforce, Instantly, etc.)

Instructions

Step 1: Design Your Clay Table Schema

In the Clay web UI, create a table with these column types:

ColumnTypePurpose
domainInput (webhook)Company domain to enrich
first_nameInput (webhook)Contact first name
last_nameInput (webhook)Contact last name
Company NameEnrichment (Clearbit/Apollo)Auto-filled from domain
Employee CountEnrichment (Clearbit)Company headcount
IndustryEnrichment (Clearbit)Industry classification
Work EmailEnrichment (Waterfall)Verified work email
Job TitleEnrichment (Apollo/PDL)Current title
LinkedIn URLEnrichment (Apollo)Profile link
ICP ScoreFormulaComputed fit score

Step 2: Set Up Waterfall Email Enrichment

In Clay UI, add a waterfall enrichment column:

  1. Click + Add Column > Find Work Email (Waterfall)
  2. Configure provider order (cheapest first):

- Apollo (2 credits) -- highest coverage - Hunter.io (2 credits) -- strong for smaller companies - Prospeo (2 credits) -- European coverage

  1. Map input: first_name, last_name, domain
  2. Enable Stop on first result to save credits
  3. Enable Auto-run on new rows

Step 3: Push Leads into Clay via Webhook

// src/workflows/enrich-leads.ts
import { getClayClient } from '../clay/instance';

interface LeadInput {
  domain: string;
  first_name: string;
  last_name: string;
  source?: string;
}

async function enrichLeadList(leads: LeadInput[]): Promise<void> {
  const clay = getClayClient();

  // Validate and deduplicate before sending
  const cleaned = leads
    .filter(l => l.domain?.includes('.') && l.first_name && l.last_name)
    .filter((l, i, arr) =>
      arr.findIndex(x => x.domain === l.domain && x.first_name === l.first_name) === i
    );

  console.log(`Sending ${cleaned.length} leads to Clay (filtered ${leads.length - cleaned.length} invalid/dupes)`);

  const result = await clay.sendBatch(cleaned, 200);
  console.log(`Sent: ${result.sent}, Failed: ${result.failed}`);

  if (result.errors.length > 0) {
    console.error('Failed rows:', result.errors);
  }
}

Step 4: Add ICP Scoring Formula

In Clay, add a Formula column named ICP Score:

// Clay formula syntax (similar to spreadsheet formulas)
// Score 0-100 based on company fit

LET(
  size_score, IF(Employee Count > 500, 30, IF(Employee Count > 100, 20, IF(Employee Count > 20, 10, 0))),
  industry_score, IF(OR(Industry = "Software", Industry = "Technology", Industry = "SaaS"), 30, IF(Industry = "Financial Services", 20, 10)),
  title_score, IF(OR(CONTAINS(Job Title, "VP"), CONTAINS(Job Title, "Director"), CONTAINS(Job Title, "Head")), 25, IF(CONTAINS(Job Title, "Manager"), 15, 5)),
  email_score, IF(ISNOTEMPTY(Work Email), 15, 0),
  size_score + industry_score + title_score + email_score
)

Step 5: Configure CRM Export

Add an HTTP API column to push high-scoring leads to your CRM:

  1. Click + Add Column > HTTP API
  2. Set conditional run: ICP Score >= 70 AND ISNOTEMPTY(Work Email)
  3. Configure the API call to your CRM:
{
  "method": "POST",
  "url": "https://api.hubapi.com/crm/v3/objects/contacts",
  "headers": {
    "Authorization": "Bearer {{HubSpot API Key}}",
    "Content-Type": "application/json"
  },
  "body": {
    "properties": {
      "email": "{{Work Email}}",
      "firstname": "{{first_name}}",
      "lastname": "{{last_name}}",
      "company": "{{Company Name}}",
      "jobtitle": "{{Job Title}}"
    }
  }
}

Step 6: Monitor Enrichment Results

# Check your table's enrichment progress in the Clay UI
# Key metrics to watch:
# - Email find rate: target >60%
# - Company enrichment rate: target >85%
# - Average credits per row: target <10
# - ICP score distribution: should have clear A/B/C tiers

Error Handling

ErrorCauseSolution
Low email find rate (<40%)Bad input dataClean domains, remove personal email domains
Credits burning fastWaterfall hitting all providersEnable "stop on first result"
Duplicate rows in tableSame lead sent twiceDeduplicate before webhook submission
CRM push failingInvalid field mappingTest HTTP API column on single row first
Enrichment not runningAuto-run disabledEnable auto-run in column settings

Output

  • Enriched lead table with emails, titles, company data
  • ICP scores for lead prioritization
  • Qualified leads auto-pushed to CRM
  • Credit usage report for cost tracking

Resources

Next Steps

For AI-powered personalization and CRM sync, see clay-core-workflow-b.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.17%
按下载量换算73

Claude

29.68%
按下载量换算64

Cursor

19.06%
按下载量换算41

Gemini CLI

8.56%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills