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…
Investigate logs in a PostHog project: verify a service or deployment is healthy, explain an error spike, triage an incident, or understand what a log stream is saying. Use when the user asks to "check the logs", asks whether a service, deploy, release, or change is working or
$ npx -y skills add posthog/posthog --skill investigating-logs --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/investigating-logsContext preview
The summary Claude sees to decide when to auto-load this skill.
Investigate logs in a PostHog project: verify a service or deployment is healthy, explain an error spike, triage an incident, or understand what a log stream is saying. Use when the user asks to "check the logs", asks whether a service, deploy, release, or change is working or
name: investigating-logs description: > Investigate logs in a PostHog project: verify a service or deployment is healthy, explain an error spike, triage an incident, or understand what a log stream is saying. Use when the user asks to "check the logs", asks whether a service, deploy, release, or change is working or broke anything, asks why errors are up or what changed, or wants the root cause of failures visible in logs. Routes the logs MCP tools (services overview, pattern mining, before/after pattern diffing, bucketed counts, facets, raw rows) so investigations start from summaries instead of raw rows or hand-written SQL over the logs table.
Investigation is a narrowing problem: **summarize before you read**. One `posthog:logs-patterns` call compresses millions of lines into at most 200 templates, and one `posthog:logs-patterns-diff` call answers "what is different about now vs. before" directly. Raw rows (`posthog:query-logs`) are the last step of an investigation, never the first.
hand-written SQL over logs routinely hits read-byte caps and re-derives what the tools below do in one cheap call. Reserve SQL for the rare case of joining log-derived facts with non-log data.
| Tool | Job | | --------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | | `posthog:logs-services-create` | Top-25 services with log_count, error_count, error_rate, sparkline. Orientation. | | `posthog:logs-patterns` | Mine one window's message templates, ordered by frequency. "What is this stream saying?" | | `posthog:logs-patterns-diff` | Diff templates between two windows: new / rate-shifted / gone. "What changed?" | | `posthog:logs-count` / `posthog:logs-count-ranges` | Scalar and time-bucketed counts for a filter. Localize volume before pulling rows. | | `posthog:logs-sparkline-query` | Volume over time broken down by severity or service (the one bucketed view with a breakdown). | | `posthog:logs-facet-values-create` | Distribution of severity/service (or a resource attribute) under a filter. | | `posthog:logs-attributes-list` / `posthog:logs-attribute-values-list` | Discover attribute keys and values before building filters. | | `posthog:query-logs` | Raw rows. Endpoint of every drill-down, entry point of none. |
Each tool's own description documents its parameters and response shape — read it before calling.
The user changed something (deploy, model bump, config, migration) and wants to know the logs still look right.
1. Pin down the change time and the affected service(s). Ask if the user hasn't said; the diff is meaningless without a boundary. 2. Orient with `posthog:logs-services-create`: is the service still logging at all, and what is its error_rate now? A service that went silent fails verification just as hard as one that started erroring. 3. `posthog:logs-patterns-diff` with `query.dateRange` from the change time to now and `baselineDateRange` set to a comparable window just before the change, scoped to `serviceNames`. New error/fatal templates right after a change are the classic regression signature; large `rate_ratio` shifts on existing error templates are the second thing to check. 4. Check volume continuity with `posthog:logs-count-ranges` spanning before and after the boundary: a rate discontinuity (crash loop, restart storm, silence) shows up here even when message content looks unchanged. 5. Drill only the suspects: pivot each suspicious pattern to raw lines via its `match_regex` with `posthog:query-logs`.
A pass verdict needs all three: no new error templates, no large error rate_ratio shifts, and continuous volume. Say which windows you compared — "healthy" is only as strong as the baseline.
1. Localize it: `posthog:logs-count-ranges` over the user's window, then recurse into the dense bucket(s) — each bucket's `date_from`/`date_to` feeds the next call. Stop after 3–4 levels. 2. Explain it: `posthog:logs-patterns-diff` with the spike as `query.dateRange` and the window just before as `baselineDateRange`. The top `new` and `rate_shift` entries are the explanation. Do not mine both windows separately and diff by hand — the diff is one call.
`posthog:logs-patterns-diff` first: incident window vs. a known-good window just before (or omit the baseline for same-window-last-week). Suspects are `new` entries and the biggest `rate_ratio` shifts; pivot each to raw lines. If the failing service is unknown, fi
: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…