adding-warehouse-perso…
Sync columns from a synced data warehouse table onto PostHog person or group properties, so warehouse data becomes usable anywhere person and group properties…
Audit the health of a PostHog project's data warehouse sources and syncs — find every broken or degraded source connection, sync schema, and webhook channel. Use when the user asks "why are my imports failing?", "what's broken with my sources?", "why is my warehouse data
$ npx -y skills add PostHog/ai-plugin --skill auditing-warehouse-source-health --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/auditing-warehouse-source-healthContext preview
The summary Claude sees to decide when to auto-load this skill.
Audit the health of a PostHog project's data warehouse sources and syncs — find every broken or degraded source connection, sync schema, and webhook channel. Use when the user asks "why are my imports failing?", "what's broken with my sources?", "why is my warehouse data
name: auditing-warehouse-source-health description: > Audit the health of a PostHog project's data warehouse sources and syncs — find every broken or degraded source connection, sync schema, and webhook channel. Use when the user asks "why are my imports failing?", "what's broken with my sources?", "why is my warehouse data stale?", or wants a one-shot triage of source/sync health before deciding where to dig in. Produces a prioritized report grouped by severity, with recommended next steps. For materialized-view health use `auditing-warehouse-view-health`; for a single failing sync use `diagnosing-failed-warehouse-syncs`.
This skill produces a project-wide audit of the **source and sync** side of the data warehouse pipeline — source connections, sync schemas, and webhook push channels. Use it when the user wants a **summary of what's broken with their imports**, not a deep-dive on one sync. The deep-dive on individual failures is `diagnosing-failed-warehouse-syncs`; this skill is the scan that tells them where to look first.
The same underlying endpoint (`data-warehouse-data-health-issues-retrieve`) also reports materialized-view, batch-export-destination, and transformation issues. Materialized views are covered by `auditing-warehouse-view-health`. Destinations (batch exports) and transformations are owned by other products — surface them if they appear, but route them to the relevant team rather than diagnosing here.
| Tool | Purpose | | --------------------------------------------- | ------------------------------------------------------------------ | | `data-warehouse-data-health-issues-retrieve` | One-shot: all failed/degraded items across the whole pipeline | | `external-data-sources-list` | All sources with status and latest error | | `external-data-schemas-list` | All schemas with status, last_synced_at, latest_error | | `external-data-sources-webhook-info-retrieve` | Check per-source webhook state (not covered by data-health-issues) |
The `data-health-issues` endpoint aggregates across the whole pipeline — it's the fastest path to a summary. Filter its results to the `source` and `external_data_sync` types for this audit. Use the list endpoints when you need more context than the summary provides (row counts, non-failing items, schema-level detail).
From the data-health endpoint, this audit cares about two of the five categories:
| `type` | Trigger | Typical urgency | | -------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | | `source` | `ExternalDataSource.status = Error` — whole source connection broken | High | | `external_data_sync` | schema in Failed or BillingLimitReached state (the data-health endpoint returns `status: "failed"` or `status: "billing_limit"` respectively) | Medium–High |
Each entry includes `id`, `name`, `type`, `status`, `error`, `failed_at`, `url`, and `source_type`.
The other categories the endpoint returns are out of scope for this skill:
Note the data-health endpoint only reports _active failures_. For source/sync health it doesn't flag:
push channel is silently broken (deregistered, disabled on the remote side, failing signature verification). These don't surface in `data-health-issues` — check per-source with `webhook-info-retrieve`.
If the user asks about staleness or unused items, reach beyond this endpoint — see Step 4.
Call `data-warehouse-data-health-issues-retrieve` and keep the `source` and `external_data_sync` entries.
If there are no source/sync issues, tell the user their sources are healthy and stop. Don't invent problems.
1. **Sources in Error first.** A source failure cascades — every schema under it is effectively dead until the source reconnects. Fix these first. 2. **Sync schemas next**, in this order:
Render a prioritized report. Don't dump the raw JSON — human-readable table per category:
## Data warehouse source health — 4 issues ### 🔴 Sources (1) - Stripe — authentication failed (failed 2h ago). All 8 tables under it are currently dead. → `diagnosing-failed-warehouse-syncs` on this source ### 🟠 Sync schemas (3) - postgres_prod.orders (Failed 6h ago) — column "updated_at" does not exist - postgres_prod.invoices (Fai
Official PostHog plugin for AI clients. Access PostHog products directly from your AI coding tool.
Repo: PostHog/ai-plugin
Sync columns from a synced data warehouse table onto PostHog person or group properties, so warehouse data becomes usable anywhere person and group properties…
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…
Analyze session replay patterns across experiment variants to understand user behavior differences. Use when the user wants to see how users interact with…
Split a completed PostHog task run into activity records — what the agent tried, whether it worked, what blocked it — and record each one through the…
Assesses what a page's heatmap is telling you and recommends concrete changes. Pulls click / rageclick / scroll-depth data for a URL, names the hot elements by…
Audit every endpoint in a PostHog project for staleness, failed materialisations, and unused materialised versions. Use when the user asks "what endpoints can…