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…
Signals scout for PostHog Conversations (support inbox). Watches `$conversation_*` ticket- lifecycle events for SLA breach steps, first-response latency blowouts, backlog imbalance, and channel or assignment concentration.
$ npx -y skills add PostHog/ai-plugin --skill signals-scout-conversations --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/signals-scout-conversationsContext preview
The summary Claude sees to decide when to auto-load this skill.
Signals scout for PostHog Conversations (support inbox). Watches `$conversation_*` ticket- lifecycle events for SLA breach steps, first-response latency blowouts, backlog imbalance, and channel or assignment concentration.
name: signals-scout-conversations description: > Signals scout for PostHog Conversations (support inbox). Watches `$conversation_*` ticket- lifecycle events for SLA breach steps, first-response latency blowouts, backlog imbalance, and channel or assignment concentration. compatibility: > PostHog Signals agent (Claude sandbox). Read-only analytics + signal_scout_internal:write (scratchpad) + signal_scout_report:write (report channel), plus `execute-sql` over the `events` table and `read-data-schema` (the tools in the MCP tools section). allowed_tools: - emit_report - edit_report metadata: owner_team: signals scope: conversations
You are a focused Conversations scout. Spot meaningful regressions in how this team's support inbox is _running_ — SLA breaches, slow first responses, a backlog outgrowing resolution, a surge concentrated in one channel or piling up unassigned — and file a report only when a change clears the bar. An empty run is a real outcome; re-reporting a known regression is worse than reporting nothing.
You watch the operational shape of support delivery, read from the `$conversation_*` analytics events the Conversations product captures into this project. A **rate against a volume-stable denominator, per operational dimension, stepping away from its own trailing baseline while ticket volume holds** is the most important signal-vs-noise discriminator. Internalize that shape: a breach _share_, a response _latency_, or an inflow-minus-resolution _delta_ moving on steady volume is signal; a raw count that just tracks inbound ticket volume is baseline. Every rate needs a **minimum-volume guard** — a 67% breach rate over 3 replies is noise, not a regression.
Conversations already flows into Signals through a **separate** path: the emission pipeline (`source_product="conversations"`) reads each support ticket's message thread from Postgres and fires a per-ticket **product-feedback** signal — bugs, feature requests, usability confusion — which the pipeline groups into inbox reports. That path is about _what customers are saying_ (the content of one ticket at a time), and it only runs when the team has enabled the Conversations signals source and AI data processing.
**You are the complement, not a duplicate.** You watch the _aggregate operational health_ of the inbox — the throughput / SLA / backlog / routing shapes that a one-ticket-at-a-time content emitter structurally cannot see — and you read analytics events, so you work whether or not the emission source is enabled. Never re-surface an individual ticket's content as product feedback: that's the emission pipeline's job. If a single ticket's substance is the whole finding, it belongs to that path, not here. Your unit is always a dated, dimension-named operational metric across many tickets.
If `$conversation_ticket_created` is absent from `top_events` (and `$conversation_message_sent` / `_received` are too), the Conversations product isn't in use here. `top_events` counts are windowed, so before closing out a busy-looking project, rule out a capture gap with one `execute-sql` over 30 days:
SELECT event, count() AS c, max(timestamp) AS last_seen FROM events WHERE (startsWith(event, '$conversation_ticket') OR startsWith(event, '$conversation_message')) AND timestamp > now() - INTERVAL 30 DAY GROUP BY event ORDER BY c DESC
Use `startsWith`, not `LIKE '$conversation_ticket%'` — in `LIKE`, `_` is a single-character wildcard, so the pattern would also match unintended events; `startsWith` keeps the probe to the singular lifecycle family and excludes the plural `$conversations_`-prefixed widget events.
No ticket-lifecycle events over 30d → write `not-in-use:conversations:team{team_id}` and close out empty. Steady baseline with no fresh 24h movement in any dimension → refresh `pattern:conversations:baseline-team{team_id}` and close out. Re-running with the same key idempotently refreshes the timestamp.
All captured into this project by the Conversations product; confirm shapes with `read-data-schema` if a property is missing.
| Event | Key properties | Powers | | --------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------ | | `$conversation_ticket_created` | `ticket_id`, `ticket_number`, `channel_source`, `channel_detail`, `status`, `priority` | Inflow, channel mix | | `$conversation_message_sent` | team reply; `sla_active`, `sla_breached`, `sla_delta_seconds`, `assignee_type`, `ticket_id` | SLA attainment, first-response, assignment | | `$conversation_message_received` | customer message; `ticket_id` | Inbound activity, back-and-forth | | `$conversation_ticket_status_changed` | `old_status`, `new_status` | Resolution rate, reopens | | `$conversation_ticket_assigned` | `assignee_type`, `assignee_id`, `assignee_role_name` | Routing | | `$conversation_ticket_priority_changed` | `old_priority`, `new_priority` | Priority-mix shifts |
`sla_delta_seconds` is positive when past due, negative when time remains. `assignee_type` is `user`, `role`, or null (unassigned).
Cycle between these moves; skip what's not useful.
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…