agentsclimarketplace

Customerio prod checklist

Skill ComeOnOliver/skillshub/skills/jeremylongshore/claude-code-plugins-plus-skills/customerio-prod-checklist

Execute Customer.io production deployment checklist. Use when preparing for production launch, auditing integration quality, or performing pre-launch validation. Trigger: "customer.io production", "customer.io checklist", "deploy customer.io", "customer.io go-live", "customer.io launch".From its SKILL.md

Install
npx -y skills add ComeOnOliver/skillshub --skill customerio-prod-checklist

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

7.6 KB, ~1.8k tokens by cl100k_base, as published. Nobody here has run it

Customer.io Production Checklist

Overview

Comprehensive go-live checklist for Customer.io integrations: credentials audit, integration quality review, email deliverability setup, monitoring configuration, smoke tests, and staged rollout plan.

Prerequisites

  • Customer.io integration complete and tested in staging
  • Production workspace credentials ready
  • Sending domain configured and verified

Production Checklist

1. Credentials & Configuration

ItemCheckHow to Verify
Production Site IDCorrect workspaceSettings > API & Webhook Credentials
Production Track API KeyDifferent from dev/stagingCompare with staging .env
Production App API KeySet for transactional messagesTest with curl bearer auth
Region settingMatches account region (US/EU)Settings > Workspace Settings
Secrets storageIn secrets manager, not .envCheck deployment config
Key rotation scheduleDocumented (90-day cycle)Calendar reminder set

2. Integration Quality

// scripts/prod-audit.ts
import { TrackClient, RegionUS } from "customerio-node";

async function auditIntegration() {
  const checks: { name: string; pass: boolean; detail: string }[] = [];

  // Check 1: Credentials exist
  const siteId = process.env.CUSTOMERIO_SITE_ID;
  const trackKey = process.env.CUSTOMERIO_TRACK_API_KEY;
  const appKey = process.env.CUSTOMERIO_APP_API_KEY;
  checks.push({
    name: "Track credentials",
    pass: !!(siteId && trackKey),
    detail: siteId ? `Site ID: ${siteId.substring(0, 4)}...` : "MISSING",
  });
  checks.push({
    name: "App API credential",
    pass: !!appKey,
    detail: appKey ? "Set" : "MISSING (needed for transactional)",
  });

  // Check 2: API connectivity
  if (siteId && trackKey) {
    const cio = new TrackClient(siteId, trackKey, { region: RegionUS });
    try {
      await cio.identify("prod-audit-test", {
        email: "[email protected]",
      });
      await cio.suppress("prod-audit-test");
      checks.push({ name: "Track API", pass: true, detail: "Connected" });
    } catch (err: any) {
      checks.push({
        name: "Track API",
        pass: false,
        detail: `${err.statusCode}: ${err.message}`,
      });
    }
  }

  // Report
  console.log("\n=== Customer.io Production Audit ===\n");
  for (const check of checks) {
    const icon = check.pass ? "PASS" : "FAIL";
    console.log(`[${icon}] ${check.name}: ${check.detail}`);
  }
  const passed = checks.filter((c) => c.pass).length;
  console.log(`\nResult: ${passed}/${checks.length} passed`);
  return checks.every((c) => c.pass);
}

auditIntegration().then((ok) => process.exit(ok ? 0 : 1));

3. Email Deliverability

ItemStatusDashboard Location
Sending domain verifiedRequiredSettings > Sending Domains
SPF record publishedRequiredDNS TXT record
DKIM record publishedRequiredDNS CNAME record
DMARC policy setRecommendedDNS TXT record _dmarc.yourdomain.com
Return-Path configuredRecommendedSettings > Sending Domains
Unsubscribe link in all marketing emailsRequired (CAN-SPAM)Template editor
Physical address in marketing emailsRequired (CAN-SPAM)Template editor

4. Campaign Readiness

  • All campaigns tested with test sends
  • Liquid templates render correctly (preview with real data)
  • Segment conditions verified with known test users
  • Transactional templates have all required message_data fields
  • Broadcast triggers tested end-to-end
  • Unsubscribe flow tested (click unsubscribe link, verify suppression)

5. Monitoring & Alerting

// Set up these alerts in your monitoring system:
const ALERT_THRESHOLDS = {
  // API health
  api_error_rate: 0.01,       // Alert if > 1% of API calls fail
  api_p99_latency_ms: 5000,   // Alert if p99 > 5 seconds

  // Delivery health
  bounce_rate: 0.05,          // Alert if > 5% bounce rate
  complaint_rate: 0.001,      // Alert if > 0.1% spam complaints
  delivery_rate: 0.95,        // Alert if < 95% delivery rate

  // Operational health
  queue_depth: 10000,         // Alert if event queue > 10K pending
  webhook_error_rate: 0.05,   // Alert if > 5% webhook processing failures
};

6. Smoke Test Script

#!/usr/bin/env bash
set -euo pipefail

echo "=== Customer.io Production Smoke Test ==="

# Test 1: Track API connectivity
TRACK_STATUS=$(curl -s -o /dev/null -w "%{http_code}" \
  -u "${CUSTOMERIO_SITE_ID}:${CUSTOMERIO_TRACK_API_KEY}" \
  -X PUT "https://track.customer.io/api/v1/customers/smoke-test-$(date +%s)" \
  -H "Content-Type: application/json" \
  -d '{"email":"[email protected]","_smoke_test":true}')

if [ "$TRACK_STATUS" = "200" ]; then
  echo "[PASS] Track API: HTTP 200"
else
  echo "[FAIL] Track API: HTTP ${TRACK_STATUS}"
  exit 1
fi

# Test 2: App API connectivity
APP_STATUS=$(curl -s -o /dev/null -w "%{http_code}" \
  -H "Authorization: Bearer ${CUSTOMERIO_APP_API_KEY}" \
  "https://api.customer.io/v1/campaigns")

if [ "$APP_STATUS" = "200" ]; then
  echo "[PASS] App API: HTTP 200"
else
  echo "[FAIL] App API: HTTP ${APP_STATUS}"
  exit 1
fi

echo ""
echo "All smoke tests passed"

7. Staged Rollout Plan

TimeActionRollback Trigger
T-24hFinal staging test passAny test failure
T-12hProduction smoke testsSmoke test failure
T-1hEnable for internal team (feature flag)Error reports
T-0Enable for 10% of usersError rate > 1%
T+1hIncrease to 50%Error rate > 1% or bounce rate > 5%
T+2h100% trafficSame thresholds
T+24hPost-launch reviewN/A
// Feature flag integration for staged rollout
function shouldUseCio(userId: string, rolloutPercent: number): boolean {
  // Deterministic — same user always gets same result
  const hash = createHash("md5").update(userId).digest("hex");
  const bucket = parseInt(hash.substring(0, 8), 16) % 100;
  return bucket < rolloutPercent;
}

Rollback Procedure

  1. Set feature flag to 0% (immediate — no deploy needed)
  2. Pause all active campaigns in Customer.io dashboard
  3. Investigate logs and error reports
  4. Fix issue, test in staging
  5. Resume staged rollout from 10%

Error Handling

IssueSolution
Smoke test fails in productionVerify production credentials (different from staging)
High bounce rate post-launchCheck sending domain verification, review bounce logs
Spam complaints spikeReview email content, verify unsubscribe links work
Feature flag not workingCheck feature flag service connectivity

Resources

Next Steps

After production launch, proceed to customerio-upgrade-migration for SDK maintenance.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,679. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.