clay-advanced-troubleshooting

Featured

Deep-debug complex Clay enrichment failures, provider degradation, and data flow issues. Use when standard troubleshooting fails, investigating intermittent enrichment failures, or preparing detailed evidence for Clay support escalation. Trigger with phrases like "clay hard bug", "clay mystery error", "clay impossible to debug", "difficult clay issue", "clay deep debug".

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 Advanced Troubleshooting ## Overview Deep debugging techniques for complex Clay issues that resist standard troubleshooting. Covers provider-level isolation, waterfall diagnosis, HTTP API column debugging, Claygent failure analysis, and Clay support escalation with proper evidence. ## Prerequisites - Access to Clay table with the failing enrichments - curl and jq for API testing - Understanding of Clay's enrichment architecture (providers, waterfall, columns) - Browser developer tools for network inspection ## Instructions ### Step 1: Isolate the Failure Layer ```bash #!/bin/bash # clay-layer-test.sh — test each integration layer independently set -euo pipefail echo "=== Layer Isolation Test ===" # Layer 1: Webhook delivery echo "Layer 1: Webhook" WEBHOOK_CODE=$(curl -s -o /dev/null -w "%{http_code}" \ -X POST "$CLAY_WEBHOOK_URL" \ -H "Content-Type: application/json" \ -d '{"_debug": true, "domain": "google.com"}') echo " Webhook: $WEBHOOK_CODE" # Layer 2: Enterprise API (if applicable) if [ -n "${CLAY_API_KEY:-}" ]; then echo "Layer 2: Enterprise API" API_RESULT=$(curl -s -X POST "https://api.clay.com/v1/companies/enrich" \ -H "Authorization: Bearer $CLAY_API_KEY" \ -H "Content-Type: application/json" \ -d '{"domain": "google.com"}') echo " API response keys: $(echo "$API_RESULT" | jq 'keys')" fi # Layer 3: HTTP API callback endpoint echo "Layer 3: Callback endpoint" CALLBACK_CODE=$(curl -s -o /dev/null -w "%{http_code}" \ -X POS...

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-debug-bundle

Collect Clay debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Clay integration problems. Trigger with phrases like "clay debug", "clay support bundle", "collect clay logs", "clay diagnostic", "clay support ticket".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-advanced-troubleshooting

Debug complex HubSpot API issues with systematic isolation and evidence collection. Use when standard troubleshooting fails, investigating intermittent CRM errors, or preparing evidence bundles for HubSpot support escalation. Trigger with phrases like "hubspot hard bug", "hubspot mystery error", "hubspot intermittent failure", "hubspot deep debug", "hubspot support ticket".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-common-errors

Diagnose and fix the most common Clay errors and integration issues. Use when encountering Clay errors, debugging failed enrichments, or troubleshooting webhook delivery problems. Trigger with phrases like "clay error", "fix clay", "clay not working", "debug clay", "clay enrichment failed", "clay webhook error".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-incident-runbook

Execute Clay incident response procedures for enrichment failures, credit exhaustion, and data flow outages. Use when Clay enrichments stop working, webhook delivery fails, or CRM sync breaks in production. Trigger with phrases like "clay incident", "clay outage", "clay down", "clay emergency", "clay broken", "clay enrichment stopped".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-performance-tuning

Optimize Clay table enrichment throughput, reduce processing time, and improve hit rates. Use when experiencing slow enrichment, poor email find rates, or needing to process large tables efficiently. Trigger with phrases like "clay performance", "optimize clay", "clay slow", "clay throughput", "clay fast enrichment", "clay batch optimization".

2,266 Updated today
jeremylongshore