skills/inbox-exploration/SKILL.md
Explore PostHog's Inbox — the surface where signal reports surface as actionable issues and trends. Use when the user asks "what's in my inbox?", "what should I look at?", "which reports are actionable?", "what's PostHog flagged recently?", asks about a specific report by ID or title, or wants to see which signal sources are configured. Covers listing, filtering, and drilling into reports, plus pointers to the deeper `signals` skill when raw signals or semantic search are needed.
npx skillsauth add posthog/ai-plugin inbox-explorationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The Inbox is where PostHog surfaces signal reports — clusters of related observations (signals) that have been aggregated into a single issue or trend (e.g. "Error rate spiked 3× on /checkout"). Reports come from multiple source products: error tracking, session replay, web analytics, experiments, and integrations like Linear, GitHub, and Zendesk.
Inbox is part of PostHog Code, PostHog's agentic surface for engineering teams.
Don't assume the user's project has reports, or that any signal sources are configured — plenty of projects don't have Inbox set up. Always run the setup-check workflow below before answering the user's actual question.
For deeper investigation, hand off to other skills and tools:
signals skill — query document_embeddings via HogQL for raw signal text, semantic
search across signals, or to inspect every signal that contributed to a report.query-error-tracking-issues-list, query-error-tracking-issue,
query-error-tracking-issue-events for error-tracking-sourced reportsquery-logs, logs-count-ranges to find log activity around the issuequery-session-recordings-list, session-recording-get to find
recordings of affected userspersons-retrieve, activity-log-list to inspect a specific user's
behaviorquery-trends, execute-sql for ad-hoc verification queriesA signal report tells you what PostHog clustered. The product-specific tools tell you the underlying detail — pair them when the user wants to dig in.
| Tool | Purpose |
| ------------------------------------- | ------------------------------------------------------------------- |
| inbox-reports-list | Paginated list of reports with filters (status, search, etc.) |
| inbox-reports-retrieve | Full detail for a single report |
| inbox-source-configs-list | Configured signal sources (which products feed the inbox) |
| inbox-source-configs-retrieve | Full record for a single source config |
| posthog:execute-sql (signals skill) | HogQL access to underlying signals (read the signals skill first) |
All four inbox-* tools are read-only. Writes (pause processing, change source configs, manage
per-user autonomy) are intentionally not exposed via MCP today.
What each report status means (in roughly the order a triage agent should care about):
ready — judgment finished, actionable assessment availablepending_input — waiting on user input to proceedin_progress — actively being summarized / judgedcandidate / potential — accumulated signals but not yet promoted to a real reportfailed — processing erroredsuppressed — manually hidden; not surfaced by defaultBy default inbox-reports-list excludes suppressed reports and orders results by
-is_suggested_reviewer,status,-updated_at — the user's own suggested reports first, then by
status, then most recently updated. Refer to the tool's input schema for filter mechanics.
is_suggested_reviewer: true on a report means the current PostHog user is one of up to
three people the report-research flow flagged as best-placed to act on this report. It is
the strongest signal you have that a report matters to the user personally, and you should
lean on it when triaging.
How the flag is produced (see report_generation/resolve_reviewers.py):
SUGGESTED_REVIEWERS artefact on the report.is_suggested_reviewer flips to true for that
report.Practical implications for triage:
true value means "you wrote (or recently touched) the code this report is about" — not
"you were assigned this." It's heuristic, not authoritative.false value doesn't mean the report is irrelevant — it can mean (a) someone else owns
the code, (b) no one in the org has a linked GitHub account matching the suggested logins,
or (c) the source material wasn't tied to a specific repo / commits.is_suggested_reviewer: true
reports — these are the ones where the user's name is on the relevant code. Mention the
rest as a secondary group rather than mixing them in.Run this check whenever a user asks about the inbox for the first time in a session, or any
time inbox-reports-list returns count: 0. The diagnosis decides what to say next.
inbox-source-configs-list
{ "limit": 50 }
Three meaningful cases:
Case A — no source configs at all (count: 0)
The user hasn't onboarded to Inbox / signals. Don't pretend the inbox has data. Tell the user plainly that Inbox needs signal sources to be set up first, and that the recommended way to do this is to install PostHog Code at https://posthog.com/code. Example response:
Your project doesn't have any signal sources configured yet, so the Inbox is empty. Inbox surfaces issues and trends that PostHog automatically clusters from sources like error tracking, session replay, GitHub, Linear, and Zendesk. The fastest way to set this up is to install PostHog Code — once it's connected, signals will start flowing in and reports will appear in your inbox over the next day or so.
Stop here unless the user wants to discuss setup. Don't run further inbox tools — they'll all be empty.
Case B — source configs exist but all are enabled: false
Sources have been set up at some point but are currently turned off. Tell the user no signals are flowing right now and point them at the project's signals settings to re-enable. Don't go fishing for reports — anything still there is stale.
Case C — at least one source config is enabled: true
Setup looks healthy. If inbox-reports-list still returns nothing, it's most likely "give it time"
— signals are flowing but nothing has clustered into a report yet. Tell the user that, briefly
list which sources are active (e.g. "you have GitHub and error tracking enabled"), and offer to
check back later or to drop into the signals skill to look at raw signal volume.
If any source config has status: "failed", surface that as part of your reply — that source
isn't producing signals right now, which may explain a thin inbox.
If Step 1 found a healthy setup and at least one report exists, continue with the triage / drill / filter workflows below.
When the user asks "what should I look at?" or "what's actionable?":
inbox-reports-list
{
"status": "ready,in_progress,pending_input",
"limit": 20
}
If count: 0 comes back, jump to the empty/unconfigured workflow above before saying "your
inbox is empty" — the right reply depends on whether sources are configured.
For each report, the response includes:
id, title, summarystatus, priority, actionability (note: null for reports still in pending_input /
candidate — judgment hasn't run yet)signal_count, total_weight — how much underlying evidence drove the reportsource_products — which product(s) the underlying signals came fromis_suggested_reviewer — whether the current user is a suggested reviewer for this
report (see "What 'suggested reviewer' means" above — it's based on GitHub commit
authorship of the relevant code, mapped to PostHog users via linked GitHub identity)implementation_pr_url — if a PR has been opened against this report_posthogUrl — clickable deep-link to the report; always include this in your responseGroup the results so the user can scan quickly. Lead with reports where
is_suggested_reviewer: true — those are the ones tied to code the current user has
authored — and only then fall back to priority groupings for the rest:
## Inbox — 8 actionable reports
⭐ Suggested for you (1)
- Checkout error rate spiked 3× — error_tracking, 47 signals (you're a suggested reviewer)
<_posthogUrl>
🔴 High priority (2 more)
- Session replays on /pricing show repeated rage clicks — session_replay, 12 signals
<_posthogUrl>
…
🟠 Medium priority (4)
…
If no reports come back with is_suggested_reviewer: true, say so explicitly before listing
the rest — don't silently drop the section.
End with a clear hand-off: "Want me to dig into the checkout errors?" → call
inbox-reports-retrieve for the full report, then optionally hop to the signals skill to look
at the underlying signal text.
When the user pastes an Inbox URL or report ID:
inbox-reports-retrieve
{ "id": "<report_uuid>" }
Returns the full record including signals_at_run and artefact_count. Combine this with the
signals skill if the user wants to see the actual signal contents:
inbox-reports-retrieve to get the report metadata + idsignals skill's Example 2 (fetch all signals for a specific report) — pass the
report ID as metadata.report_id in the HogQL queryThe two layers complement each other: the inbox-* tools give you the curated/judged view, and
the signals skill lets you inspect the raw observations that produced it.
"Are there any reports about <topic>?" — start with search:
inbox-reports-list
{
"search": "checkout",
"status": "ready,in_progress,pending_input",
"limit": 20
}
search matches title and summary. If the user is asking about a product area rather than a
keyword, use source_product:
inbox-reports-list
{
"source_product": "session_replay,error_tracking",
"limit": 20
}
If the keyword search returns nothing meaningful, hand off to the signals skill — semantic
search over signal text via embedText() will catch reports the keyword filter missed.
When the user asks "which signal sources are set up?" or "is <product> hooked up?":
inbox-source-configs-list
{ "limit": 50 }
Each entry returns id, source_product, source_type, enabled, status, plus timestamps.
For full details (including the per-source config JSON — recording filters, evaluation IDs,
etc.):
inbox-source-configs-retrieve
{ "id": "<source_config_uuid>" }
Integration credentials live in a separate Integration model — they are not in the
config blob, so it's safe to summarize the contents back to the user.
The status field reflects the underlying data import or workflow:
running / completed — feeding signals normallyfailed — the source isn't currently producing signals; flag this to the userinbox-reports-list returns count: 0,
call inbox-source-configs-list first — no sources means the user needs to install
PostHog Code to start receiving signals; sources-but-no-reports
means signals are flowing but nothing has clustered yet_posthogUrl so the user can click through to the reportpriority and actionability are null for reports still in pending_input or candidate
status; this is expected, not a bug — judgment hasn't run yetsuppressed reports are excluded by default; pass status: "suppressed" explicitly if the
user wants to see hidden items_posthogUrl deep-linksignals skill — the report layer hides individual observations; you need
HogQL on document_embeddings to see theminbox-source-configs-retrieve returns no _posthogUrl. Don't confuse them with reportstools
Focused Signals scout for PostHog projects with web traffic. Watches the acquisition and site-health layer the web analytics product reports on: per-channel session volume diverging from the site's own rhythm (an acquisition source silently collapsing or surging), attribution breakage (paid/campaign traffic reclassifying into Direct or Unknown when tagging breaks), landing pages that break (bounce-rate steps, 404 spikes, entry-path cliffs), and page-performance regressions (web vitals p75 steps). Emits findings only when they clear the confidence bar; otherwise writes durable memory and closes out empty. Self-contained peer in the signals-scout-* fleet.
tools
Focused Signals scout for PostHog projects using session replay. Watches two promises the replay product makes: that sessions are actually being recorded (capture integrity — recording volume vanishing while site traffic doesn't), and that the friction evidence inside recordings gets seen (rage-click / dead-click clusters concentrating on a page or element, error-after-interaction cohorts, recurring replay vision themes nobody aggregates). Emits findings only when they clear the confidence bar; otherwise writes durable memory and closes out empty. Self-contained peer in the signals-scout-* fleet.
tools
Focused Signals scout for PostHog setup health. Reads the project's active health issues — the deterministic findings of PostHog's own health checks (no live events, outdated SDKs, missing reverse proxy, absent web vitals, ingestion warnings, failing data-warehouse models, and more) — and decides which are genuinely worth surfacing. Unlike a one-signal-per-issue push, it bundles kind-clusters into a single finding, weights by real blast radius (cross-referencing actual event volume and reach), and prioritizes issues an agent can resolve via the MCP. Emits only above the confidence bar; otherwise writes durable memory and closes out empty. Self-contained peer in the signals-scout-* fleet — no dependencies on other skills.
tools
Focused Signals scout for PostHog projects using feature flags. Watches the flag roster and the `$feature_flag_called` evaluation stream for contradictions between a flag's configured state and its real traffic: evaluation cliffs on healthy flags, ghost flags (code calling keys that no longer exist), response-distribution shifts with no corresponding flag edit, and flag debt (stale, fully-rolled-out, or dead flags still burning evaluations). Emits findings only when they clear the confidence bar; otherwise writes durable memory and closes out empty. Self-contained peer in the signals-scout-* fleet — no dependencies on other skills.