clerk-prod-checklist

Featured

Production readiness checklist for Clerk deployment. Use when preparing to deploy, reviewing production configuration, or auditing Clerk implementation before launch. Trigger with phrases like "clerk production", "clerk deploy checklist", "clerk go-live", "clerk launch ready".

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

# Clerk Production Checklist ## Overview Complete checklist to ensure your Clerk integration is production-ready. Covers environment config, security hardening, monitoring, error handling, and compliance. ## Prerequisites - Clerk integration working in development - Production environment and domain configured - CI/CD pipeline ready ## Instructions ### Step 1: Environment Configuration Checklist | Check | Status | Action | |-------|--------|--------| | Using `pk_live_` keys | [ ] | Switch from test to live keys | | `CLERK_SECRET_KEY` is `sk_live_` | [ ] | Never use test keys in production | | `.env.local` in `.gitignore` | [ ] | Prevent accidental secret commits | | `CLERK_WEBHOOK_SECRET` set | [ ] | Required for webhook verification | | Production domain in Clerk Dashboard | [ ] | Dashboard > Domains | | Sign-in/sign-up URLs configured | [ ] | Set `NEXT_PUBLIC_CLERK_SIGN_IN_URL` etc. | ### Step 2: Validation Script ```typescript // scripts/prod-readiness.ts import { createClerkClient } from '@clerk/backend' async function validateProduction() { const checks: { name: string; pass: boolean; detail: string }[] = [] // 1. Live keys check const pk = process.env.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY || '' const sk = process.env.CLERK_SECRET_KEY || '' checks.push({ name: 'Live publishable key', pass: pk.startsWith('pk_live_'), detail: pk.startsWith('pk_live_') ? 'Using live key' : `Using ${pk.slice(0, 8)}... (should be pk_live_)`, }) checks.push({ ...

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

klaviyo-prod-checklist

Execute Klaviyo production deployment checklist and validation procedures. Use when deploying Klaviyo integrations to production, preparing for launch, or implementing go-live procedures for email/SMS marketing. Trigger with phrases like "klaviyo production", "deploy klaviyo", "klaviyo go-live", "klaviyo launch checklist", "klaviyo prod ready".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clerk-deploy-integration

Configure Clerk for deployment on various platforms. Use when deploying to Vercel, Netlify, Railway, or other platforms, or when setting up production environment. Trigger with phrases like "deploy clerk", "clerk Vercel", "clerk Netlify", "clerk production deploy", "clerk Railway".

2,266 Updated today
jeremylongshore
AI & Automation Featured

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".

2,266 Updated today
jeremylongshore
AI & Automation Featured

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 "clari production", "clari go-live", "clari checklist", "clari launch".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-prod-checklist

Execute Apollo.io production deployment checklist. Use when preparing to deploy Apollo integrations to production, doing pre-launch verification, or auditing production readiness. Trigger with phrases like "apollo production checklist", "deploy apollo", "apollo go-live", "apollo production ready", "apollo launch checklist".

2,266 Updated today
jeremylongshore