clay-observability

Featured

Monitor Clay enrichment pipeline health, credit consumption, and data quality metrics. Use when setting up dashboards for Clay operations, configuring alerts for credit burn, or tracking enrichment success rates. Trigger with phrases like "clay monitoring", "clay metrics", "clay observability", "monitor clay", "clay alerts", "clay dashboard", "clay credit tracking".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Clay Observability ## Overview Monitor Clay data enrichment pipeline health across four dimensions: credit consumption velocity, enrichment success rates (hit rates), data quality scores, and CRM sync reliability. Clay's credit-based pricing model makes observability essential for cost control. ## Prerequisites - Clay account with table access - Metrics infrastructure (Prometheus/Grafana, Datadog, or custom) - Webhook receiver that logs enrichment results - Understanding of your enrichment column configuration ## Instructions ### Step 1: Instrument Your Clay Webhook Handler ```typescript // src/clay/metrics.ts — collect metrics from enriched data flowing back from Clay interface ClayMetrics { enrichmentsReceived: number; enrichmentsWithEmail: number; enrichmentsWithCompany: number; enrichmentsWithPhone: number; estimatedCreditsUsed: number; averageICPScore: number; leadsTier: { A: number; B: number; C: number; D: number }; } class ClayMetricsCollector { private metrics: ClayMetrics = { enrichmentsReceived: 0, enrichmentsWithEmail: 0, enrichmentsWithCompany: 0, enrichmentsWithPhone: 0, estimatedCreditsUsed: 0, averageICPScore: 0, leadsTier: { A: 0, B: 0, C: 0, D: 0 }, }; private scoreSum = 0; record(lead: Record<string, any>, creditsPerRow: number = 6) { this.metrics.enrichmentsReceived++; if (lead.work_email) this.metrics.enrichmentsWithEmail++; if (lead.company_name) this.metrics.enrichmentsWithCompany+...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

clay-cost-tuning

Optimize Clay credit spending with provider key management, waterfall tuning, and budget controls. Use when analyzing Clay costs, reducing credit consumption, or implementing spending alerts and caps. Trigger with phrases like "clay cost", "clay billing", "reduce clay costs", "clay pricing", "clay expensive", "clay budget", "clay credits".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-reliability-patterns

Build fault-tolerant Clay integrations with circuit breakers, dead letter queues, and graceful degradation. Use when building production Clay pipelines that need resilience, implementing retry strategies, or adding fault tolerance to enrichment workflows. Trigger with phrases like "clay reliability", "clay circuit breaker", "clay resilience", "clay fallback", "clay fault tolerance", "clay dead letter queue".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-load-scale

Scale Clay enrichment pipelines for high-volume processing (10K-100K+ leads/month). Use when planning capacity for large enrichment runs, optimizing batch processing, or designing high-volume Clay architectures. Trigger with phrases like "clay scale", "clay high volume", "clay large batch", "clay capacity planning", "clay 100k leads", "clay bulk enrichment".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-policy-guardrails

Implement credit spending limits, data privacy enforcement, and input validation guardrails for Clay pipelines. Use when enforcing spending caps, blocking PII enrichment, or adding pre-enrichment validation rules. Trigger with phrases like "clay policy", "clay guardrails", "clay spending limit", "clay data privacy rules", "clay validation", "clay controls".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-known-pitfalls

Identify and avoid the top Clay anti-patterns, gotchas, and integration mistakes. Use when reviewing Clay integrations for issues, onboarding new team members, or auditing existing Clay table configurations. Trigger with phrases like "clay mistakes", "clay anti-patterns", "clay pitfalls", "clay what not to do", "clay gotchas", "clay code review".

2,266 Updated today
jeremylongshore