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…
How to get real jobs done with PostHog Signals scouts — the scheduled agents that watch a project and write reports into the Signals inbox — and how to steer and customize the fleet over time. Use when a user wants to delegate a watching job ("have a scout keep an eye on X",
$ npx -y skills add PostHog/ai-plugin --skill working-with-scouts --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/working-with-scoutsContext preview
The summary Claude sees to decide when to auto-load this skill.
How to get real jobs done with PostHog Signals scouts — the scheduled agents that watch a project and write reports into the Signals inbox — and how to steer and customize the fleet over time. Use when a user wants to delegate a watching job ("have a scout keep an eye on X",
name: working-with-scouts
description: >
How to get real jobs done with PostHog Signals scouts — the scheduled agents that watch a
project and write reports into the Signals inbox — and how to steer and customize the fleet
over time. Use when a user wants to delegate a watching job ("have a scout keep an eye on X",
"tell me if Y spikes"), wants a recurring judged metric from a scout ("score X on a
schedule", "measure quality of Y"), wants to know which scout covers a surface, asks how to
act on what scouts report, complains the fleet is noisy or quiet, or wants the fleet to get
smarter over time (feedback loops, calibration, promoting one-off steers into policy). The
operating manual for the human–scout working relationship; routes to `authoring-scouts` for
write mechanics, `exploring-scouts` for run observability, and `inbox-exploration` for report
triage. Trigger on "work with my scouts", "get more out of scouts", "have a scout watch X",
"what do I do with this scout report", "calibrate/review my scout fleet".
metadata:
owner_team: signalsA **scout** is a scheduled agent that wakes on its own interval, looks at one PostHog project, and either writes a finding into the Signals inbox as a **report** or closes out empty. Think of the fleet as a team of junior analysts you've hired to watch things for you: they work unattended, they hold a high evidence bar, and — critically — **they get better the more you work with them**. Every dismissal reason you write, every note you leave, every report you act on feeds back into what they do next.
This skill is the operating manual for that working relationship: how to delegate a watching job, how to act on what comes back, and how to steer the fleet so it converges on what your team actually cares about. Three sibling skills carry the mechanics — reach for them when a workflow below hands off:
| Skill | Covers | | ------------------- | --------------------------------------------------------------------------------------------------- | | `authoring-scouts` | Writing, editing, and tuning scouts: skill bodies, config, the notes write side, the test loop | | `exploring-scouts` | Read-only observability: the fleet roster, run history, scratchpad memory, health assessment | | `inbox-exploration` | The inbox itself: triaging, drilling into, acting on, and resolving / dismissing / snoozing reports |
Don't delegate to a fleet that isn't there. Two reads answer it: `posthog:scout-metadata-get` says whether the project is **enrolled** to run scouts at all, and `posthog:scout-config-list` is the roster — one row per scout with its schedule, `enabled`, `emit` posture, and `description`. Check enrollment first, whatever the roster shows — config rows outlive enrollment, so a drained project can carry a roster of enabled scouts that never run (stale `last_run_at` across the board is the tell). (Scout tools were recently renamed from `signals-scout-*` to `scout-*`; if a `scout-*` name comes back unknown, try the legacy `signals-scout-*` name.) One access rule covers everything here: scout rows live on the project's **canonical parent**, so every scout read and write — this roster read included, plus the notes and config steering below — returns 403 for a credential scoped only to a child environment; work from the parent project (or a credential that covers it).
A paused or dry-run scout explains most "scouts aren't doing anything" complaints before any deeper digging. Also check `emit_eligibility` on `posthog:scout-project-profile-get`: when `can_emit` is false (the org hasn't approved AI processing, or the `signals_scout` source is disabled), every scout write is silently dropped even on an enabled `emit: true` scout — surface its `remediation` line before promising coverage. (For read callers the profile is a cached snapshot built by scout runs, so a 404 means no fresh profile exists — not ineligibility; fall back to checking the `signals_scout` source config via `posthog:inbox-source-configs-list` and treat eligibility as unknown rather than blocking on the profile.)
The `description` on each row says what that scout watches — scan it to answer "which scout covers X?" without loading any skill bodies. (A row with an empty description is usually an orphan whose skill was since deleted — it can't run, so don't count it as coverage.) PostHog ships specialists for most product surfaces (error tracking, logs, web analytics, AI observability, experiments, feature flags, session replay, surveys, revenue, and more) plus a cross-product generalist, and teams add custom `signals-scout-*` skills beyond that.
Everything in this skill is one loop, run continuously:
1. **Delegate** — decide what the fleet should watch, and get the right scout watching it. 2. **Receive** — reports land in the inbox, routed to a suggested reviewer when the scout could name one. 3. **Act** — verify the finding, fix it (or decide not to), and record the outcome on the report. 4. **Feed back** — the outcome and your written reasons flow back to the scout, along with any notes you leave. 5. **Calibrate** — periodically review fleet health and promote recurring steers into permanent policy.
The single most important habit: **never let a report just sit**. Acting on reports
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…