checking-member-access
Explains what a member or a role can do in a PostHog project, using the access control MCP tools. Use when the user asks what someone can see or edit, who can…
Configures the analytics side of a PostHog experiment — exposure criteria (server-resolved default exposure event vs custom exposure events), primary and secondary metrics, the supported metric types (count, sum, ratio with `math` and `math_property`, retention with
$ npx -y skills add posthog/posthog --skill configuring-experiment-analytics --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/configuring-experiment-analyticsContext preview
The summary Claude sees to decide when to auto-load this skill.
Configures the analytics side of a PostHog experiment — exposure criteria (server-resolved default exposure event vs custom exposure events), primary and secondary metrics, the supported metric types (count, sum, ratio with `math` and `math_property`, retention with
name: configuring-experiment-analytics
description: Configures the analytics side of a PostHog experiment — exposure criteria (server-resolved default exposure event vs custom exposure events), primary and secondary metrics, the supported metric types (count, sum, ratio with `math` and `math_property`, retention with `retention_window_start` and `start_handling`), multivariate user handling ("Exclude" vs "First seen variant"), and how to read results once the experiment is live. Use when the user adds or edits a primary or secondary metric (e.g. "add a secondary metric tracking 'downloaded_file' per user"), sets up a ratio metric (e.g. "revenue from purchase_completed / pageviews"), sets up a retention metric (e.g. "$pageview → uploaded_file, 7-day window"), configures custom exposure (e.g. "only count users who hit /checkout"), changes multivariate handling, or asks "who is in the analysis?", "how do I measure impact?", "is this winning?", "what's the confidence level?", or "should I ship?".This skill answers: **Who is included in the analysis?** and **How to measure impact?**
Exposure criteria determine which users are counted in the experiment analysis.
Two options:
1. **Default exposure event** — users are included when the experiment's default exposure event fires for the experiment's flag: `$feature_flag_called`, or `$experiment_exposure` for newer experiments. Which one applies is resolved server-side — read `resolved_exposure_event` from `experiment-get` rather than assuming either name (both events carry the same properties). This is the standard approach — it means a user is included only when they actually encounter the feature flag in your code. 2. **Custom exposure event** — users are included when a specific custom event fires. Use this when you want tighter control over who enters the analysis (e.g., only users who actually visit the page where the experiment runs).
When a user is exposed to multiple variants (e.g., due to flag changes or race conditions):
behavior cannot be clearly attributed to a single variant and is not recommended unless necessary.
**Bias risk on uneven splits.** "Exclude multivariate users" combined with an uneven variant split can introduce bias — multi-variant users are dropped asymmetrically and the smaller variant loses a larger fraction of its assignments. If those users behave differently from the rest, the smaller variant's metrics will be skewed.
The right mitigation depends on experiment state:
use the overall rollout percentage to limit test-variant exposure. This removes the bias and preserves statistical power. See `configuring-experiment-rollout`.
variants, which is bad for user experience and data quality. Switch this setting to "First seen variant" instead — it keeps already-assigned users in their original variant (no reassignment) and removes the asymmetric exclusion.
`exposure_criteria.filterTestAccounts` (default: true) — excludes internal/test users from the analysis.
Metric changes require an experiment ID. If the user refers to an experiment by name or description (e.g. "add metrics to the checkout test"), load the `finding-experiments` skill to resolve it to a concrete ID before proceeding.
A metric reaches an experiment one of two ways, both via `experiment-update`:
**replaces** the entire inline list, so always get the current experiment first via `experiment-get` to preserve existing metrics.
Attached by ID via `saved_metrics_ids` (this list also **replaces** the experiment's existing saved-metric links, so resend the full set — see Step 1).
**Prefer reusing a shared metric over duplicating it inline.** Build a new inline metric only when no suitable shared metric already exists.
Before building any new inline metric, you MUST check whether the project already has a shared (saved) metric that measures the same thing, and reuse it. Duplicating a metric that already exists as a shared metric fragments measurement and is exactly what we want to avoid.
**Reuse is decided by the metric _definition_ — the event or action plus the metric type — not the name.** Saved metrics are named by each team's own conventions, which you cannot guess, so you must compare on what each metric measures (its `query`), never on its title.
**Workflow:**
1. **Know what you're about to build first.** Settle the target event(s)/action(s) and metric type (mean / funnel / ratio / retention) before searching — see Step 2 to confirm the event exists via `read-data-schema`. You can only recognize a duplicate once you know the concrete event/action, so this check runs _after_ you've pinned down the event, not before. 2. **Search by the event, then compare each candidate's `query`.** Call `experiment-saved-metrics-list` with `?event=<the event you're measuring>` to find metrics that reference it — matched directly (an `EventsNode`) **or** via the step events of any action a metric references, so action-based metrics are found by the event their action fires on. Then for
:hedgehog: PostHog is the leading platform for building self-driving products. Our developer tools – AI observability, analytics, session replay, flags, experiments, error tracking, logs, and more – capture all the context agents need to diagnose problems, uncover opportunities, and ship fixes. Steer it all from Slack, web, desktop, or the MCP.
Repo: posthog/posthog
Explains what a member or a role can do in a PostHog project, using the access control MCP tools. Use when the user asks what someone can see or edit, who can…
Analyze the most expensive users in AI observability and explain why they cost so much. Use when the user asks about top spenders, expensive users, per-user…
Author continuously-running online evaluations in PostHog AI observability, grounded in real failure modes you've identified. Use when the user wants…
Find where an AI/LLM application is failing in production and surface the failure patterns, working from real traces. Use when someone wants to understand…
Investigate AI observability clusters — understand usage patterns in AI/LLM traffic, compare cluster behavior, compute cost/latency metrics, and drill into…
Investigate LLM spend in PostHog — total cost over time, cost by model, provider, user, trace, or custom dimension, token and cache-hit economics, and cost…