Skip to main content 홈 크리에이터 jeremylongshore claude-code-plugins-plus-skills posthog-core-workflow-b
posthog-core-workflow-b Implement PostHog feature flags, A/B experiments, and cohort management.
Use when rolling out features with flags, running A/B tests, creating cohorts,
or evaluating multivariate experiments with PostHog.
Trigger: "posthog feature flag", "posthog experiment", "posthog A/B test",
"posthog cohort", "feature rollout posthog", "posthog multivariate".
설치로 이동 Skills Marketplace 커뮤니티가 만든 AI 스킬을 발견하고 탐색하세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill posthog-core-workflow-b명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Zip 다운로드 다운로드 중... 이 저장소의 다른 Skills Implement user sign-up and sign-in flows with Clerk.
Use when building authentication UI, customizing sign-in experience,
or implementing OAuth social login.
Trigger with phrases like "clerk sign-in", "clerk sign-up",
"clerk login flow", "clerk OAuth", "clerk social login".
Implement session management and middleware with Clerk.
Use when managing user sessions, configuring route protection,
or implementing token refresh and custom JWT templates.
Trigger with phrases like "clerk session", "clerk middleware",
"clerk route protection", "clerk token", "clerk JWT".
Configure enterprise SSO, role-based access control, and organization management.
Use when implementing SSO integration, configuring role-based permissions,
or setting up organization-level controls.
Trigger with phrases like "clerk SSO", "clerk RBAC",
"clerk enterprise", "clerk roles", "clerk permissions", "clerk organizations".
jeremylongshore
jeremylongshore/claude-code-plugins-plus-skills
GitHub 저장소 열기 name posthog-core-workflow-b description Implement PostHog feature flags, A/B experiments, and cohort management.
Use when rolling out features with flags, running A/B tests, creating cohorts,
or evaluating multivariate experiments with PostHog.
Trigger: "posthog feature flag", "posthog experiment", "posthog A/B test",
"posthog cohort", "feature rollout posthog", "posthog multivariate".
allowed-tools Read, Write, Edit, Bash(npm:*), Grep version 1.12.0 license MIT author Jeremy Longshore <jeremy@intentsolutions.io> tags ["saas","posthog","workflow","feature-flags","experiments"] compatibility Designed for Claude Code, also compatible with Codex and OpenClaw
PostHog Core Workflow B — Feature Flags & Experiments
Overview
Feature flag management, A/B experiment evaluation, and cohort analysis with PostHog. Covers boolean and multivariate flags, local evaluation for performance, experiment setup and statistical significance, and cohort creation via the API.
Prerequisites
Completed posthog-install-auth setup
Familiarity with posthog-core-workflow-a (event capture)
Personal API key (phx_...) for flag management API
Instructions
Step 1: Evaluate Feature Flags (Browser)
import posthog from 'posthog-js' ;
if (posthog.isFeatureEnabled ('new-checkout-flow' )) {
renderNewCheckout ();
} else {
renderLegacyCheckout ();
}
const variant = posthog.getFeatureFlag ('pricing-page-experiment' );
switch (variant) {
case 'control' :
renderOriginalPricing ();
break ;
case 'annual-first' :
renderAnnualFirstPricing ();
break ;
case 'social-proof' :
renderSocialProofPricing ();
break ;
default :
renderOriginalPricing ();
}
const payload = posthog.getFeatureFlagPayload ( );
posthog. ( {
enabled = posthog. ( );
(enabled ?? );
});
'banner-config'
onFeatureFlags
() =>
const
isFeatureEnabled
'new-feature'
setFeatureEnabled
false
Step 2: Evaluate Feature Flags (Server — posthog-node) import { PostHog } from 'posthog-node' ;
const posthog = new PostHog (process.env .NEXT_PUBLIC_POSTHOG_KEY !, {
host : 'https://us.i.posthog.com' ,
personalApiKey : process.env .POSTHOG_PERSONAL_API_KEY ,
});
async function checkFlag (userId : string ): Promise <boolean > {
const enabled = await posthog.isFeatureEnabled ('new-api-version' , userId);
return enabled ?? false ;
}
async function getVariant (userId : string ): Promise <string > {
const variant = await posthog.getFeatureFlag ('onboarding-experiment' , userId, {
personProperties : { plan : 'pro' , country : 'US' },
});
return (variant as string ) || 'control' ;
}
async function getUserFlags (userId : string ) {
const flags = await posthog.getAllFlags (userId, {
personProperties : { plan : 'enterprise' },
groupProperties : { company : { name : 'Acme' } },
});
return flags;
}
async function getFlagsAndPayloads (userId : string ) {
const result = await posthog.getAllFlagsAndPayloads (userId);
return result;
}
Step 3: Create Feature Flags via API set -euo pipefail
curl -X POST "https://app.posthog.com/api/projects/$POSTHOG_PROJECT_ID /feature_flags/" \
-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY " \
-H "Content-Type: application/json" \
-d '{
"key": "new-dashboard-v2",
"name": "New Dashboard V2",
"active": true,
"filters": {
"groups": [{
"rollout_percentage": 25,
"properties": []
}]
}
}'
curl -X POST "https://app.posthog.com/api/projects/$POSTHOG_PROJECT_ID /feature_flags/" \
-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY " \
-H "Content-Type: application/json" \
-d '{
"key": "checkout-experiment",
"name": "Checkout Flow Experiment",
"active": true,
"filters": {
"multivariate": {
"variants": [
{"key": "control", "rollout_percentage": 50},
{"key": "streamlined", "rollout_percentage": 50}
]
},
"groups": [{"rollout_percentage": 100, "properties": []}]
}
}'
Step 4: Set Up an Experiment
async function runExperiment (userId : string ) {
const posthog = new PostHog (process.env .NEXT_PUBLIC_POSTHOG_KEY !);
const variant = await posthog.getFeatureFlag ('checkout-experiment' , userId);
posthog.capture ({
distinctId : userId,
event : 'purchase_completed' ,
properties : {
variant,
order_value : 49.99 ,
},
});
await posthog.flush ();
return variant;
}
Step 5: Query Experiment Results via API set -euo pipefail
curl "https://app.posthog.com/api/projects/$POSTHOG_PROJECT_ID /experiments/" \
-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY " | \
jq '.results[] | {id, name, start_date, end_date, feature_flag_key}'
curl "https://app.posthog.com/api/projects/$POSTHOG_PROJECT_ID /experiments/EXPERIMENT_ID/results/" \
-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY " | \
jq '{
variants: [.result.variants[] | {key, count, conversion_rate: .absolute_exposure}],
significance: .result.significance_code,
probability: .result.probability
}'
Step 6: Manage Cohorts via API set -euo pipefail
curl -X POST "https://app.posthog.com/api/projects/$POSTHOG_PROJECT_ID /cohorts/" \
-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY " \
-H "Content-Type: application/json" \
-d '{
"name": "Recent Signups (30d)",
"is_calculating": true,
"filters": {
"properties": {
"type": "AND",
"values": [{
"type": "AND",
"values": [{
"key": "user_signed_up",
"type": "behavioral",
"value": "performed_event",
"time_value": 30,
"time_interval": "day"
}]
}]
}
}
}'
curl "https://app.posthog.com/api/projects/$POSTHOG_PROJECT_ID /cohorts/" \
-H "Authorization: Bearer $POSTHOG_PERSONAL_API_KEY " | \
jq '.results[] | {id, name, count, is_calculating}'
Error Handling Error Cause Solution Flag always returns undefined Flags not loaded yet Use posthog.onFeatureFlags() callback Flag returns default on server No personalApiKey set Add personal API key for local evaluation Experiment not tracking Goal event name mismatch Verify event name matches experiment config Cohort stuck is_calculating Large dataset Wait for calculation; check PostHog status getAllFlags slowNo local evaluation Set personalApiKey in PostHog constructor
Output
Feature flag evaluation (boolean and multivariate)
Server-side local evaluation for low-latency flag checks
A/B experiment setup with goal metric tracking
Cohort creation and management via API
Experiment results with statistical significance
Resources
Next Steps For common errors, see posthog-common-errors.