Skip to content
Skillv1.0.0

clari-prod-checklist

Production readiness checklist for Clari API integrations. Use when launching a Clari data pipeline, validating export automation, or preparing for production forecast sync. Trigger with phrases like

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (skills/.curated/clari-prod-checklist/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill clari-prod-checklist. Copyright stays with the author (MIT).

Clari Production Checklist

Overview

Clari provides revenue intelligence through forecast data, pipeline analytics, and deal inspection. A production integration typically exports forecast snapshots, syncs pipeline data to a warehouse, and powers revenue dashboards. Incorrect data pipelines mean unreliable forecasts, missed quota signals, or stale deal intelligence that undermines board-level reporting.

Prerequisites

  • Approved production data owner, change record, and release window
  • Separate production credential, state, and warehouse role
  • Certified staging export and tested recovery from partial or stale data
  • Monitoring, access-control, and retention policies accepted by owners

Instructions

Complete the checklist in sequence: verify identity and secret boundaries, validate API/export behavior with a controlled read, confirm idempotent loading and freshness alerting, then secure the required approvals before enabling the scheduled production job. Capture evidence for each item; do not promote a staging result or use a successful connection alone as production acceptance.

Authentication & Secrets

  • CLARI_API_KEY stored in secrets manager (not config files)
  • Token tested against production endpoint before go-live
  • Key rotation procedure documented (quarterly cycle)
  • Separate tokens for dev/staging/prod environments
  • Service account with least-privilege scopes (read-only for exports)

API Integration

  • Production base URL configured (https://api.clari.com/v1)
  • Rate limit handling with exponential backoff
  • All required typesToExport configured (forecast, quota, crm_closed)
  • Time period coverage verified (current quarter + 4 historical)
  • Deduplication logic handles re-exports and overlapping periods
  • Pagination implemented for large pipeline result sets
  • Export job polling with configurable timeout (default: 10 min)

Error Handling & Resilience

  • Circuit breaker configured for Clari API outages
  • Retry with backoff for 429/5xx responses
  • Empty export results handled (data quality alert, not silent pass)
  • Export job timeout detection with automatic re-queue
  • MERGE/UPSERT in warehouse prevents duplicate forecast records
  • Data retention policy enforced (rolling 8 quarters typical)

Monitoring & Alerting

  • API latency tracked per export job
  • Error rate alerts set (threshold: any export failure)
  • Forecast amount anomaly detection (>20% swing triggers review)
  • Pipeline health dashboard with job completion rates
  • Daily reconciliation: exported row counts vs expected

Validation Script

async function checkClariReadiness(): Promise<void> {
  const checks: { name: string; pass: boolean; detail: string }[] = [];
  // API connectivity
  try {
    const res = await fetch('https://api.clari.com/v1/forecast/types', {
      headers: { Authorization: `Bearer ${process.env.CLARI_API_KEY}` },
    });
    checks.push({ name: 'Clari API', pass: res.ok, detail: res.ok ? 'Connected' : `HTTP ${res.status}` });
  } catch (e: any) { checks.push({ name: 'Clari API', pass: false, detail: e.message }); }
  // Credentials present
  checks.push({ name: 'API Key Set', pass: !!process.env.CLARI_API_KEY, detail: process.env.CLARI_API_KEY ? 'Present' : 'MISSING' });
  // Export types available
  try {
    const res = await fetch('https://api.clari.com/v1/forecast/types', {
      headers: { Authorization: `Bearer ${process.env.CLARI_API_KEY}` },
    });
    const data = await res.json();
    const count = Array.isArray(data) ? data.length : 0;
    checks.push({ name: 'Export Types', pass: count > 0, detail: `${count} types available` });
  } catch (e: any) { checks.push({ name: 'Export Types', pass: false, detail: e.message }); }
  for (const c of checks) console.log(`[${c.pass ? 'PASS' : 'FAIL'}] ${c.name}: ${c.detail}`);
}
checkClariReadiness();

Error Handling

Check Risk if Skipped Priority
API key rotation Expired token halts all exports P1
Empty export detection Silent data gaps in forecasts P1
Duplicate record prevention Inflated pipeline numbers P2
Export job timeout Stuck jobs block scheduling queue P2
Forecast anomaly alerts Missed revenue signals P3

Output

Publish a production-readiness receipt tying every control to redacted evidence, owner, approval, validation time, and tested rollback decision. The receipt must state the currently certified forecast period and must not contain live tokens, raw forecast values, or rep-level data outside approved storage.

Examples

Before launch, run one protected-environment export, verify the source period, row count, warehouse merge, freshness alert, and recovery path, then record the results in the change ticket. If the export is empty or the anomaly check cannot run, keep publication disabled and restore the last certified dataset.

Resources

Next Steps

See clari-security-basics for data access controls and PII handling.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-clari-prod-checklist/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-clari-prod-checklist.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-clari-prod-checklist",
  "kind": "skill",
  "name": "clari-prod-checklist",
  "description": "Production readiness checklist for Clari API integrations. Use when launching a Clari data pipeline, validating export automation, or preparing for production forecast sync. Trigger with phrases like \"clari production\", \"clari go-live\", \"clari checklist\", \"clari launch\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "revenue-intelligence",
      "forecasting",
      "clari",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Production readiness checklist for Clari API integrations. Use when launching a Clari data pipeline, validating export automation, or preparing for production forecast sync. Trigger with phrases like \"clari production\", \"clari go-live\", \"clari checklist\", \"clari launch\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "skills/.curated/clari-prod-checklist/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/skills/.curated/clari-prod-checklist/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/skills/.curated/clari-prod-checklist/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Bash(curl:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Clari Production Checklist\n\n## Overview\n\nClari provides revenue intelligence through forecast data, pipeline analytics, and deal inspection. A production integration typically exports forecast snapshots, syncs pipeline data to a warehouse, and powers revenue dashboards. Incorrect data pipelines mean unreliable forecasts, missed quota signals, or stale deal intelligence that undermines board-level reporting.\n\n## Prerequisites\n\n- Approved production data owner, change record, and release window\n- Separate production credential, state, and warehouse role\n- Certified staging export and tested re",
  "cost": {
    "context_tokens": 1308
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-clari-prod-checklist/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.