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

clay-upgrade-migration粘土升级迁移

Agent Skill

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

总安装

535

周安装

23

GitHub Stars

2,083

下载量

188
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

clay-upgrade-migration 指导应对 Clay 2026 年定价改革和功能升级,包含迁移决策和成本优化策略。

  • 适合现有 Clay 用户、财务分析师和负责成本控制的技术负责人评估新计费模型影响。
  • 帮助理解 Launch/Growth 层级变更、Data Credits + Actions 拆分及 50-90% 成本削减机制。
  • 需活跃账户、账单面板访问权限及对当前信用消耗模式的了解,建议在升级前进行用量模拟。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Clay Upgrade & Migration

Overview

Guide for navigating Clay plan upgrades and the March 2026 pricing overhaul. Clay restructured from Starter/Explorer/Pro to Launch/Growth tiers, split credits into Data Credits + Actions, and cut data costs 50-90%. This skill covers migration decisions, integration impact, and adaptation strategies.

Prerequisites

  • Active Clay account
  • Understanding of current credit consumption
  • Access to Clay billing dashboard

Instructions

Step 1: Understand the 2026 Pricing Change

Old Plans (Legacy -- available until April 10, 2026):

PlanPriceCreditsKey Limits
Starter$149/moLimitedNo HTTP API, no webhooks
Explorer$349/mo25K400 records/hour throttle
Pro$800/mo50KHTTP API, webhooks, priority support

New Plans (March 2026+):

PlanPriceData CreditsActionsKey Features
Launch$185/mo2,50015,000Phone enrichment, signal tracking
Growth$495/mo6,00040,000CRM sync, HTTP API, web intent, ads

Key changes:

  • Credits split into Data Credits (buying enrichment data) and Actions (using the platform)
  • Data costs cut 50-90% (each enrichment is cheaper)
  • No enrichment charges on failed lookups (no data = no charge)
  • Credit rollover capped at 2x monthly limit

Step 2: Audit Your Current Usage

# Check current plan and credit usage from Clay dashboard
# Navigate to Settings > Plans & Billing
# Record:
# - Current plan tier
# - Monthly credits used (average over 3 months)
# - Which enrichment providers consume most credits
# - Whether you use HTTP API columns
# - Whether you use webhook sources

Decision matrix for migration:

If you currently...Recommended new plan
Use < 2,500 data credits/moLaunch ($185)
Need HTTP API columnsGrowth ($495)
Need CRM syncGrowth ($495)
Use webhooks + high volumeGrowth ($495)
Stay on legacy ExplorerKeep legacy if 400/hr limit works
Have Enterprise contractContact Clay sales

Step 3: Adapt Integration Code for New Credit Model

// src/clay/credit-tracker.ts — track new split credit model
interface CreditUsage {
  dataCredits: { used: number; limit: number; rolloverMax: number };
  actions: { used: number; limit: number };
}

class CreditTracker {
  private usage: CreditUsage;

  constructor(plan: 'launch' | 'growth') {
    this.usage = plan === 'launch'
      ? { dataCredits: { used: 0, limit: 2500, rolloverMax: 5000 }, actions: { used: 0, limit: 15000 } }
      : { dataCredits: { used: 0, limit: 6000, rolloverMax: 12000 }, actions: { used: 0, limit: 40000 } };
  }

  recordEnrichment(dataCreditsUsed: number) {
    this.usage.dataCredits.used += dataCreditsUsed;
    this.usage.actions.used += 1; // Each enrichment = 1 action

    if (this.usage.dataCredits.used > this.usage.dataCredits.limit * 0.8) {
      console.warn(`Data credits at ${((this.usage.dataCredits.used / this.usage.dataCredits.limit) * 100).toFixed(0)}% of monthly limit`);
    }
  }

  canAfford(estimatedCredits: number): boolean {
    return (
      this.usage.dataCredits.used + estimatedCredits <= this.usage.dataCredits.limit &&
      this.usage.actions.used + 1 <= this.usage.actions.limit
    );
  }
}

Step 4: Optimize for the New Model

No-charge on failed lookups changes the cost equation:

// Old model: every enrichment attempt cost credits, even if no data returned
// New model: only charged when data is actually returned

// This makes wider waterfall enrichments cheaper:
// Before: 5-provider waterfall = 5 charges even if only 1 finds data
// After: 5-provider waterfall = 1 charge if only 1 finds data
// Strategy: wider waterfalls are now more cost-effective

Connect your own API keys for maximum savings:

ProviderClay Credits (managed)Own Key
Apollo2 data credits0 credits
Clearbit2-5 data credits0 credits
Hunter2 data credits0 credits
ZoomInfo5-13 data credits0 credits

Step 5: Migrate Webhook Integrations

If moving from a plan without webhooks to one with them (or vice versa):

# Test webhook availability on new plan
curl -X POST "$CLAY_WEBHOOK_URL" \
  -H "Content-Type: application/json" \
  -d '{"migration_test": true, "timestamp": "'$(date -u +%Y-%m-%dT%H:%M:%SZ)'"}'

# Verify HTTP API columns still work after plan change
# HTTP API columns are only available on Growth plan

Error Handling

IssueCauseSolution
Features disappearedDowngraded planCheck feature availability per tier
HTTP API columns disabledMoved to Launch (no HTTP API)Upgrade to Growth or use webhooks only
Higher credit usage than expectedActions now counted separatelyMonitor both Data Credits and Actions
Webhook stopped workingPlan change affected accessVerify webhook feature on current plan

Resources

Next Steps

For CI integration during upgrades, see clay-ci-integration.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.6%
按下载量换算67

Claude

29.7%
按下载量换算56

Cursor

19.66%
按下载量换算37

Gemini CLI

9.95%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills