PO

posthog-prod-checklist

Provides a production readiness checklist for PostHog integrations to ensure robust SDK configuration and error handling.

Install

mkdir -p .claude/skills/posthog-prod-checklist && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/7839" && unzip -o skill.zip -d .claude/skills/posthog-prod-checklist && rm skill.zip

Installs to .claude/skills/posthog-prod-checklist

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Production readiness checklist for PostHog integrations: SDK configuration,
75 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Harden PostHog SDK configuration for production
  • Implement graceful degradation for PostHog failures
  • Verify PostHog capture and flag evaluation with a health check
  • Configure serverless functions for PostHog shutdown
  • Execute pre-flight verification for PostHog deployment
  • Provide rollback procedures for PostHog deployment issues

How it works

The skill guides through configuring the PostHog SDK, implementing error handling for analytics, setting up health checks, and defining serverless function patterns. It also provides pre-deployment verification steps and rollback instructions.

Inputs & outputs

You give it
PostHog SDK configuration, server-side settings, and deployment environment
You get back
Production-hardened PostHog SDK configuration, graceful degradation wrappers, health check endpoint, serverless shutdown pattern, and pre-flight verification co

When to use posthog-prod-checklist

  • Configuring SDK production settings
  • Implementing server-side shutdown hooks
  • Verifying health check endpoints
  • Setting up production rollback procedures

About this skill

PostHog Production Checklist

Overview

Production readiness verification for PostHog integrations. Covers SDK configuration hardening, graceful degradation when PostHog is unavailable, health check endpoints, proper shutdown hooks for serverless, and rollback procedures.

Prerequisites

  • PostHog integration tested in staging
  • Production PostHog project with phc_ key
  • Personal API key (phx_) for server-side features
  • Deployment pipeline configured

Instructions

Pre-Deployment Checklist

SDK Configuration:

  • api_host set to correct region (us.i.posthog.com or eu.i.posthog.com)
  • capture_pageview: false if using SPA with manual pageview tracking
  • capture_pageleave: true for session duration accuracy
  • Reverse proxy configured to bypass ad blockers (see posthog-sdk-patterns)
  • posthog.debug() disabled in production (guarded by NODE_ENV)
  • autocapture configured to exclude noisy elements

Server-Side:

  • posthog.shutdown() called in SIGTERM handler and serverless function cleanup
  • personalApiKey set for local flag evaluation (not just project key)
  • flushAt and flushInterval tuned (default 20/10s is fine for most apps)

Security:

  • Personal API key (phx_) never in client bundles or NEXT_PUBLIC_ vars
  • .env files in .gitignore
  • Separate PostHog project per environment

Step 1: Production SDK Configuration

// lib/posthog-production.ts
import { PostHog } from 'posthog-node';

const posthog = new PostHog(process.env.NEXT_PUBLIC_POSTHOG_KEY!, {
  host: process.env.POSTHOG_HOST || 'https://us.i.posthog.com',
  personalApiKey: process.env.POSTHOG_PERSONAL_API_KEY,
  flushAt: 20,
  flushInterval: 10000,
  requestTimeout: 10000,
  maxRetries: 3,
});

// Graceful shutdown
async function shutdown() {
  await posthog.shutdown();
  process.exit(0);
}
process.on('SIGTERM', shutdown);
process.on('SIGINT', shutdown);

Step 2: Graceful Degradation

// PostHog should never break your app — wrap all calls
function safeCapture(distinctId: string, event: string, properties?: Record<string, any>) {
  try {
    posthog.capture({ distinctId, event, properties });
  } catch (error) {
    // Log but never throw — analytics should not crash your app
    console.error('[PostHog] Capture failed:', (error as Error).message);
  }
}

async function safeGetFlag(flagKey: string, userId: string, defaultValue: boolean = false): Promise<boolean> {
  try {
    const result = await posthog.isFeatureEnabled(flagKey, userId);
    return result ?? defaultValue;
  } catch (error) {
    console.error('[PostHog] Flag evaluation failed:', (error as Error).message);
    return defaultValue; // Always return safe default
  }
}

Step 3: Health Check Endpoint

// api/health.ts (Next.js API route or Express handler)
export async function GET() {
  const checks: Record<string, { status: string; latencyMs?: number }> = {};

  // PostHog capture test
  const captureStart = performance.now();
  try {
    posthog.capture({
      distinctId: 'healthcheck',
      event: '$healthcheck',
      properties: { test: true },
    });
    await posthog.flush();
    checks.posthog_capture = {
      status: 'ok',
      latencyMs: Math.round(performance.now() - captureStart),
    };
  } catch {
    checks.posthog_capture = { status: 'degraded' };
  }

  // PostHog flag evaluation test
  const flagStart = performance.now();
  try {
    await posthog.getAllFlags('healthcheck');
    checks.posthog_flags = {
      status: 'ok',
      latencyMs: Math.round(performance.now() - flagStart),
    };
  } catch {
    checks.posthog_flags = { status: 'degraded' };
  }

  const overall = Object.values(checks).every(c => c.status === 'ok') ? 'healthy' : 'degraded';
  return Response.json({ status: overall, checks }, { status: overall === 'healthy' ? 200 : 503 });
}

Step 4: Serverless Function Pattern

// For Vercel Edge Functions, AWS Lambda, etc.
import { PostHog } from 'posthog-node';

export async function handler(request: Request) {
  // Create client per invocation in serverless (or use module-level singleton)
  const posthog = new PostHog(process.env.NEXT_PUBLIC_POSTHOG_KEY!, {
    host: 'https://us.i.posthog.com',
    flushAt: 1,       // Flush immediately in serverless
    flushInterval: 0,  // Don't wait
  });

  try {
    posthog.capture({
      distinctId: getUserId(request),
      event: 'api_called',
      properties: { endpoint: new URL(request.url).pathname },
    });

    const result = await doWork(request);
    return Response.json(result);
  } finally {
    // CRITICAL: Always flush before function exits
    await posthog.shutdown();
  }
}

Step 5: Pre-Flight Verification

set -euo pipefail
# 1. Verify PostHog is reachable from production
curl -sf "https://us.i.posthog.com/healthz" && echo "PostHog: OK" || echo "PostHog: UNREACHABLE"

# 2. Verify capture works
curl -s -X POST 'https://us.i.posthog.com/capture/' \
  -H 'Content-Type: application/json' \
  -d "{\"api_key\":\"$NEXT_PUBLIC_POSTHOG_KEY\",\"event\":\"deploy_preflight\",\"distinct_id\":\"deploy\"}" | jq .

# 3. Verify feature flags load
curl -s -X POST 'https://us.i.posthog.com/decide/?v=3' \
  -H 'Content-Type: application/json' \
  -d "{\"api_key\":\"$NEXT_PUBLIC_POSTHOG_KEY\",\"distinct_id\":\"deploy-check\"}" | \
  jq '{flags_count: (.featureFlags | length), session_recording: (.sessionRecording != false)}'

# 4. Verify admin API (if using server-side features)
curl -sf "https://app.posthog.com/api/projects/$POSTHOG_PROJECT_ID/" \
  -H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY" | jq '.name' && echo "Admin API: OK"

Error Handling

AlertTriggerSeverityAction
PostHog capture failingError rate > 1%P3Check API host, verify key
Flag evaluation slowp95 > 500msP2Enable local evaluation with personalApiKey
Events not appearingZero events for 30minP2Check shutdown() is called, verify flush
Admin API 401Personal key rejectedP1Rotate key in PostHog settings

Rollback Procedure

set -euo pipefail
# Quick rollback if PostHog causes issues
# Option 1: Disable PostHog via env var
kubectl set env deployment/app POSTHOG_ENABLED=false
kubectl rollout restart deployment/app

# Option 2: Roll back deployment
kubectl rollout undo deployment/app
kubectl rollout status deployment/app

Output

  • Production-hardened PostHog SDK configuration
  • Graceful degradation wrappers (never crash on analytics failure)
  • Health check endpoint verifying capture and flag evaluation
  • Serverless shutdown pattern
  • Pre-flight verification commands

Resources

Next Steps

For version upgrades, see posthog-upgrade-migration.

When not to use it

  • When PostHog integration is not tested in staging
  • When a production PostHog project with `phc_` key is unavailable
  • When a personal API key (`phx_`) for server-side features is not set

Prerequisites

PostHog integration tested in stagingProduction PostHog project with `phc_` keyPersonal API key (`phx_`) for server-side featuresDeployment pipeline configured

Limitations

  • Requires a PostHog integration tested in staging
  • Requires a production PostHog project with a `phc_` key
  • Requires a personal API key (`phx_`) for server-side features

How it compares

This skill provides a structured, step-by-step checklist for PostHog production readiness, unlike a manual deployment that might miss critical configurations or error handling.

Compared to similar skills

posthog-prod-checklist side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
posthog-prod-checklist (this skill)125dCautionIntermediate
build-macos-apps708moReviewIntermediate
cloudflare-manager259moReviewIntermediate
railway-cli-management98moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

More by jeremylongshore

View all by jeremylongshore

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

14123

ollama-setup

jeremylongshore

Configure auto-configure Ollama when user needs local LLM deployment, free AI alternatives, or wants to eliminate hosted API costs. Trigger phrases: "install ollama", "local AI", "free LLM", "self-hosted AI", "replace OpenAI", "no API costs". Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.

1167

backtesting-trading-strategies

jeremylongshore

Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".

1071

generating-database-seed-data

jeremylongshore

Process this skill enables AI assistant to generate realistic test data and database seed scripts for development and testing environments. it uses faker libraries to create realistic data, maintains relational integrity, and allows configurable data volumes. u... Use when working with databases or data models. Trigger with phrases like 'database', 'query', or 'schema'.

1033

cursor-codebase-indexing

jeremylongshore

Execute set up and optimize Cursor codebase indexing. Triggers on "cursor index setup", "codebase indexing", "index codebase", "cursor semantic search". Use when working with cursor codebase indexing functionality. Trigger with phrases like "cursor codebase indexing", "cursor indexing", "cursor".

885

testing-mobile-apps

jeremylongshore

Execute mobile app testing on iOS and Android devices/simulators. Use when performing specialized testing. Trigger with phrases like "test mobile app", "run iOS tests", or "validate Android functionality".

810

Search skills

Search the agent skills registry