Omnibus
Skill 66 of 200
How to explore and make sense of PostHog Signals scouts — the scheduled agents that scan a project and write reports into the Signals inbox.
24 minutes · 5,389 words · 15 sections
Install
npx skills add PostHog/skills --skill exploring-scoutsnpx skills add PostHog/skills/plugin marketplace add PostHog/skillsThe first command installs just this skill, by the name in its SKILL.md; the second installs the whole repository.
A scout is a scheduled agent that wakes on its own interval, looks at one PostHog project, decides what’s genuinely worth surfacing, and either writes it into the Signals inbox as a report or closes out empty (a real, valid outcome).
PostHog ships a fleet of canonical scouts — a cross-product generalist (signals-scout-general) plus per-surface specialists (error tracking, logs, AI observability, experiments, feature flags, session replay, web analytics, surveys, and more).
A project may also have custom scouts beyond the canonical fleet — any signals-scout-* skill a team authored (e.g. -brand-mentions, -mcp-feedback) shows up here too, so don’t assume a fixed roster: scout-config-list is the authoritative roster for a project.
(One caveat: a just-authored scout has no config row until the coordinator’s next tick auto-registers one — or until someone registers it via the write-side scout-config-create — so a brand-new scout may briefly be missing from the list.)
This skill helps you understand and explore what a project’s scouts are doing and how they’re performing — entirely through read-only MCP tools.
It is the observability counterpart to the authoring-scouts skill (which teaches writing and tuning) and to the inbox-exploration skill (which covers the inbox reports scouts feed into).
(The scout tools were recently renamed from signals-scout-* to scout-*; if a scout-* name comes back unknown, the server may still expose it under the legacy signals-scout-* name — search the tool catalog and call whichever name it returns.)
A scout’s output is inbox reports, written 1:1. Scouts list emit_report / edit_report in their allowed_tools and author or edit inbox reports directly; a run’s output shows up as emitted_report_ids (reports it authored) and edited_report_ids (reports it updated).
The run rows also carry emitted_count / emitted_finding_ids — legacy fields from the deprecated signal-emitting channel (weak emit_signal findings a pipeline consolidated). On a report-channel scout they stay 0 / empty even on a productive run; a non-zero tally means the run came from a scout still on the legacy channel (an old custom scout, or a canonical scout not yet ported) — real output for that run, not noise. When unsure of a scout's channel, check its allowed_tools via skill-get.
Never read emitted_count: 0 as “did nothing” — check the report columns and the run summary first.
A scout whose config carries a structured_output_schema has a third output channel next to reports: schema-validated measurement records, recorded as $scout_structured_output events in the project (only scalar top-level payload keys flatten to output_<key> properties — object and array fields live solely inside the full output property, so a missing output_<key> is not a missing value; subject names the judged entity) rather than as run-row columns.
The events are the ground truth — metadata.derived.has_structured_output says the run had at least one batch accepted, which is a fast per-run screen but not delivery confirmation (a rare capture failure after acceptance leaves it true with fewer or no events behind it), so count the events when the number of records matters. See references/scout-data-model.md (opens in a new tab) for the event shape.
Each run also carries a metadata map. Top-level: the provenance set harness_prompt_version / report_channel (none, emit, edit, or both) / skill_origin / github_guidance, saying which instructions the run was given; plus routing keys (model / runtime_adapter / reasoning_effort / service_tier) only when a gate or pin overrode the default. Nested under metadata.derived: booleans the harness computes at the end of the run (has_emit_report, has_edit_report, has_self_improvement, has_chart, has_self_validation, has_structured_output).
When comparing runs (before/after a prompt change, one model against another), segment on all four provenance values first: runs differing on any of harness_prompt_version, report_channel, skill_origin, or github_guidance were given different instructions and aren’t a like-for-like population. Runs predating this field have none of them, so treat missing provenance as unknown and exclude those runs from a comparison rather than pooling them.
For “what kind of run was this?” questions — did it author a self-improvement report, did it validate its follow-up queue — read derived rather than parsing the prose summary. It’s computed server-side from what the run actually did, so it can’t disagree with the run’s own output — with one exception: has_structured_output tracks batches the run had accepted, not events delivered, so it alone can be true with fewer or no records behind it (count the events, as above). No derived map at all means unknown, not “all false” — the run predates the field, failed before finishing, or its stamp failed. Most runs from before this shipped have no map, so don’t read their absence as a finding.
There are six things you can observe about the fleet, each with its own tool:
| What you want to know | Tool | What it tells you |
|---|---|---|
| Which scouts run, how often, in what posture | scout-config-list | One row per scout: schedule (run_interval_minutes or run_cron_schedule), enabled, status / pause_reason, emit, output_destinations, write_scopes, mcp_gateway_server_ids, last_run_at, consecutive_failure_count, description, scout_origin, owners, tags |
| What the scouts actually did, run by run | scout-runs-list / -retrieve | Per-run status, timing, end-of-run summary, emitted_report_ids / edited_report_ids, error / failure_reason on a failed run, deep-link; scope with skill_name |
| What the fleet has learned across runs | scout-scratchpad-search | Durable per-team memory (baselines, noise, allowlists) |
| What the team has told the fleet | scout-notes-list | Steering notes humans/agents left for scouts (per-scout or fleet-wide, newest first) |
| Which reports a run wrote or edited | the run row itself | emitted_report_ids / edited_report_ids; resolve each id via inbox-reports-retrieve |
| What the scouts surfaced to the user | inbox-reports-list | The scout-written reports, as the user sees them (scout: "<skill_name>" for one scout; source_product: "signals_scout" for the fleet) |
scout-config-list takes a tags parameter (comma-separated) to narrow the roster to the scouts carrying any of the given labels — useful on a large fleet when the question is scoped to one area, e.g. tags=revenue.
scout-runs-list takes skill_name (and optionally skill_version) to scope the dump to one scout, which is the normal way to answer any question about a single scout without paging through the fleet.
The orienting tool is scout-project-profile-get — the deterministic snapshot of “what’s true about this project” that every scout cold-starts from.
When a scout found nothing, this is usually why.
Two of these tools — scout-runs-list and especially tasks-runs-session-logs-retrieve — routinely return payloads that overflow an MCP client’s token budget and get spilled to a file.
This is the normal path, not an error.
Plan for it up front rather than discovering it after a failed call:
limit small on scout-runs-list (~10–15).
Each row carries a long prose summary, and runs come back newest-first across the whole fleet, so even a modest page is large.call --json (so the saved file is real JSON, not the pretty text format — jq-able) and read the saved file with jq / a script rather than inline.scripts/ do the reconstruction for you — see below.Don’t assume the project has scouts.
The fleet only runs on teams enrolled via the signals-scout feature flag, and a project may have no configs, all-disabled scouts, or scouts stuck in dry-run.
Run this first whenever a user asks about their scouts for the first time in a session.
scout-config-listRead the result against three cases:
The config list is unpaginated — it comes back as { results: [...] } (a bare array), with no count field.
Read the result against three cases:
Empty (results: []) — no scouts are registered.
The project isn’t enrolled in the scout fleet (or hasn’t ticked yet).
Say so plainly; don’t go fishing for runs.
Point the user at the Signals scout settings / PostHog Desktop onboarding rather than inventing activity.
Configs exist but all enabled: false — the fleet is registered but paused.
Nothing is running.
Tell the user which scouts exist and that they’re all off — and say who switched each one off, which status carries: paused_by_user means a person (or a launch seed posture) turned it off, paused_by_system means an automatic pause with its cause in pause_reason (no_output / ignored / repeated_failures).
Either kind resumes with enabled: true via scout-config-update.
A repeated_failures pause is the failure breaker: the streak of scheduled failures (consecutive_failure_count; manual and workflow-triggered runs don’t count) ran one past what the schedule fits in twelve hours, clamped to 5–25 (daily: 5, rolling hourly interval: 13, hourly cron: 15, since cron slots are counted over a window padded for daylight-saving shifts). It is half-open, so the coordinator probes the scout once a day and resumes it on a clean run (unless the project is at its enabled-scout cap, which leaves the row paused after a clean probe); read the newest run’s failure_reason to say what kept failing.
At least one enabled: true — the fleet is registered and that scout is allowed to run.
For each enabled scout note its cadence (run_cron_schedule when set, else run_interval_minutes; the cron wins), emit (false = dry-run, runs but writes nothing to the inbox), and last_run_at.
A status of pending_pause means the scout still runs but the system has flagged it to pause soon (cause in pause_reason); any config edit clears the warning.
One caveat before reporting “it’s live”: runs are gated by the signals-scout feature flag, not by enabled.
A project that was enrolled and later drained from the flag keeps its enabled: true rows, but the coordinator no longer plans runs for it — so a stale or null last_run_at on an enabled scout usually means the project is no longer enrolled, not that the scout is idle.
last_run_at is a dispatch stamp, not proof a run executed. The coordinator advances it the moment it enqueues a child workflow for a due scout — before any worker picks the run up.
Child dispatch is fire-and-forget, so if workers are saturated or down the children just queue and no run ever materializes, yet last_run_at keeps marching forward each tick.
So a recent last_run_at means “dispatched this tick,” not “a run is genuinely happening.”
The authoritative liveness signal is the newest actual run row in scout-runs-list, not the config stamp.
Cross-check them: if last_run_at is fresh (minutes ago) but no run row has appeared for that scout in well over its run_interval_minutes, the fleet is dispatching but not running — workers backed up / down, or runs stranded — a real reliability problem, not a live scout.
Don’t report “it’s running” off last_run_at alone.
A scout that is enabled: true but emit: false is the most common source of “my scout isn’t doing anything” confusion: it is running and reasoning every tick, it just isn’t allowed to post reports yet.
Always surface the emit posture when reporting on a scout.
See references/scout-data-model.md (opens in a new tab) for every field on a config, run, and scratchpad entry, the run status values, and how the pieces link together.
“What scouts do I have / what are they doing?” — lead with scout-config-list, then enrich with the most recent run per scout so the user sees liveness, not just configuration.
scout-config-list — the roster.scout-runs-list once with a small limit and pick the newest run per skill_name (runs come back newest-first across the whole fleet, so one call usually covers everyone); for a scout that doesn’t appear in that page, call again with skill_name set.
Report status and how long ago it ran.Present it as a table the user can scan — scout, cadence, posture, last run, last outcome — and call out anything anomalous (never run, last run errored, stuck in dry-run for a long time).
“How does my error-tracking scout work / how is it doing?”
scout-config-list for signals-scout-error-tracking: schedule, posture, last run.posthog:skill-get {"skill_name": "signals-scout-error-tracking"} returns the team’s actual instruction set (which may be a canonical default or a diverged, hand-edited row).
This is what the agent is told to do every run — its signal-vs-noise discriminator, explore patterns, and disqualifiers.
To understand why a scout behaves the way it does, read its body.scout-runs-list with skill_name set to the scout (add text to search its summaries for a topic).
The end-of-run summary on each run is the scout’s own account of what it looked at and decided; a failed run carries failure_reason instead.scout-scratchpad-search (see below).
The memory entries a scout wrote reveal the baselines and noise it has internalized about this project.scout-notes-list {"skill_name": "signals-scout-error-tracking"} returns the steering notes humans left for this scout plus the general fleet-wide ones — exactly what its runs read as prior context.
Each note carries an origin: human for one left directly, or a derived kind the inbox forwarded automatically: report_dismissal (a dismiss/snooze note), report_discussion (a question typed into a report’s Discuss box), report_feedback (a note left with a thumbs rating), report_reviewer_correction (someone added or removed a suggested reviewer). Derived notes expire after ~30 days, and the list hides them from a caller without report read access (task:read), since they quote report content, so a credential with only signal_scout:read sees the human notes alone.
Notes addressed to pipeline:report-research steer the report pipeline’s research stage, not this scout, so they won’t appear here.
A behavior change that doesn’t trace to a skill edit or a scratchpad entry often traces to a note.
When asked to steer a scout with a note (rather than observe), hand off to the authoring-scouts skill, which covers the notes channel’s write side.scout-runs-list returns the most recent runs across the whole fleet, newest first (capped at 100).
Use it to answer “what happened lately?”
skill_name (and skill_version to isolate the runs of one body version): the primary scoping path whenever the question is about a single scout.date_from / date_to (ISO-8601; inclusive lower, exclusive upper on created_at).
Walk backwards by passing an earlier date_to.text — a case-insensitive substring match on each run’s end-of-run summary.
This is how the headless scout dedupes, and it’s how you find “did any run already look at the checkout error spike?”emitted — emitted=true returns only runs that authored at least one report (or, on legacy runs, emitted a finding), emitted=false only the runs that authored nothing.
This is the direct way to answer “which runs actually wrote something?” without parsing prose.
One caveat: a run that only edited an existing report doesn’t count as emitted=true — check edited_report_ids before calling such a run quiet.Each summary row carries run_id, skill_name, skill_version, status, started_at, completed_at, emitted_report_ids / edited_report_ids (the reports the run wrote or edited, its output), emitted_count / emitted_finding_ids (the legacy signal-channel tally, 0 / empty on current scouts), task_url (a deep-link into the Tasks UI for the full transcript), the summary prose, and, on a run that didn’t complete cleanly, error (the full TaskRun error) plus failure_reason (a concise derived one-liner).
Lead with the summary when narrating to the user — it’s the scout’s own plain-language close-out — and always offer the task_url for the full reasoning.
When the user wants the full story of one run (or pastes a run id / Tasks URL):
scout-runs-retrieve
{ "id": "<uuid>" }Note the field name flip: scout-runs-list returns each run’s id as run_id, but scout-runs-retrieve takes it as id.
Pass the run_id value through as id.
Returns the full run: status, started_at / completed_at (compute duration from these), skill_name / skill_version (what ran, at what body version), the end-of-run summary, emitted_report_ids / edited_report_ids, metadata, and task_url.
The transcript — the actual tool calls and reasoning — lives in the Tasks UI behind task_url, not in this payload; hand the user that link when they want to see every step.
A failed run has an empty summary; read failure_reason first (a one-line diagnosis: a timeout at the run budget, a tool that kept erroring, a sandbox that never started) and error for the full TaskRun error text.
Those two fields answer most “why did it fail?” questions on their own; reach for the transcript when the failure needs the sequence of calls that led to it.
You don’t have to open the UI for that: tasks-runs-session-logs-retrieve returns the run’s session log (every tool call, message, and reasoning step) as data — handy when you’re diagnosing a failure or want to trace exactly what a run did without leaving the conversation.
Pass the run’s task_run_id as id and its task_id (both are on the run row).
The raw stream is large (hundreds of KB to a few MB) and will overflow inline, so fetch it with call --json and let it spill to a file, then run it through scripts/render_run_report.py rather than parsing it by hand.
The tool returns 100 entries by default and at most 5000 per call, and its pagination state is not in the body, so pass limit: 5000 and repeat, advancing offset by the number of entries the previous page actually returned (not by limit), until a page comes back empty, then concatenate the pages before rendering; a short page is not the end, since a page also closes early at a byte cap, and stepping by limit past one would skip the entries it left out, so a single default page can drop the failure tail.
⚠️ Do not reach for exclude_types: "tool_call_update,…" to slim it down. It is tempting — the stream is dominated by incremental tool_call_update chunks — but each tool’s actual input lives only in those chunks: the base tool_call event carries an empty rawInput, and the streamed updates build the input (and the final rawOutput) token by token.
Excluding them leaves you with tool names but no idea what the scout actually queried.
Fetch the full log and let the script reassemble each call (it groups by toolCallId, keeps the richest rawInput, and attaches the completion’s rawOutput/status).
Whether a run wrote anything is a first-class field: emitted_report_ids / edited_report_ids. A non-empty emitted_report_ids lists the reports the run authored via emit_report, in order; edited_report_ids lists the reports it mutated via edit_report (which can target any inbox report, not just ones a scout authored).
A productive run typically has one id there and a summary like Report authored: <id>; resolve any id via inbox-reports-retrieve to read the report itself.
Don’t parse the prose summary for output — a phrase like “already reported P1 … did not re-file” describes a prior run, so substring-matching the summary is unreliable; the id columns are the authoritative tally.
One scout shape breaks the equivalence between “no report ids” and “wrote nothing”: a measurement scout files no report on a normal run because its output is the record stream, so check metadata.derived.has_structured_output (and the events themselves) before calling such a run empty.
Legacy runs: emitted_count / emitted_finding_ids. Runs from the deprecated signal-emitting channel (a scout without the allowed_tools opt-in — an old custom scout, or a canonical scout not yet ported) tally their output as emitted_count weak findings instead; each finding_id maps to a Signal with source_id = run:<run_id>:finding:<finding_id>.
For those runs only, scout-runs-emission-reports (pass the run_id) maps each emitted finding to the inbox report its signal grouped into (or null if it never surfaced).
On report-channel scouts these fields are always 0 / empty — don't diagnose off them.
See references/scout-data-model.md (opens in a new tab) for the full field reference.
A run with status complete and an empty-handed summary (“surface at baseline, nothing to report”) is a healthy outcome, not a failure — most runs should close out empty.
Treat a stream of empty close-outs as the fleet doing its job, not as the fleet being broken.
The scratchpad is the fleet’s durable, per-team memory — prose entries scouts write so future runs get smarter and quieter. Reading it tells you what the fleet believes about this project.
scout-scratchpad-search
{ "text": "error_tracking" }Returns entries newest-first: 20 by default, limit up to 1000; text matches content and key case-insensitively.
Omit text to browse everything; pass keys_only=true for a cheap scan of what memories exist, or content_max_chars to preview long bodies, and date_to set to the oldest entry’s updated_at to walk past the cap.
Expired entries (an expires_at in the past) are excluded unless include_expired=true; every entry also carries created_by_skill, the original creator (a scout’s skill name, or pipeline:report-research / pipeline:implementation for a pipeline stage). It is lineage, not authorship of the current text: an upsert by another writer on the same team-wide key keeps both the original creator and created_by_run_id, so neither field names the current writer of a shared key; treat it as unknown rather than attributing the content to that skill.
Each entry’s key carries a category prefix that tells you what kind of learning it is:
| Prefix | Meaning |
|---|---|
pattern: | A baseline: how this team’s data normally shapes |
watch: | A live issue being tracked but still below the report bar |
followup: | A scout’s validation queue: a probe a later run re-runs to confirm a fix or a recurrence |
noise: | A pattern the fleet has decided to ignore (dev-only, single-user…) |
addressed: | Something the team fixed or moved on from |
dedupe: | A gate on re-filing a specific issue / fingerprint |
allowlist: | Vetted entities never to re-surface |
not-in-use: | A product/surface this team doesn’t use (close-out memo) |
mcp-gap: | A tooling gap a scout noticed worth raising later |
improve: | A custom scout’s suggested change to its own skill body, awaiting owner review |
reported: | A canonical scout’s record of a skill gap already fed back upstream to PostHog |
report: | A report a scout authored: stores the report_id so later runs edit/dedup against it |
reviewer: | A resolved owner (GitHub login) for an area, cached for suggested_reviewers routing |
This is the common vocabulary, not a closed set — scouts coin their own prefixes and <domain> labels as needed (the live fleet uses watch: heavily, for example), so treat an unfamiliar prefix as just another category.
Entries cross-reference each other with [[key]] wikilinks.
Keys follow <prefix>:<domain>:<entity> (e.g. dedupe:error_tracking:019e8375-…).
When a user asks “why isn’t my scout flagging X anymore?”, search the scratchpad for noise:, addressed:, dedupe:, and allowlist: entries — the fleet may have deliberately learned to suppress it.
The canonical prefix vocabulary and the four-state dedupe classifier the fleet reasons in terms of are documented in the authoring-scouts skill (references/dedupe-and-memory.md).
Custom scouts self-report skill improvements. A custom (team-authored) scout is invited by the harness to write an improve:<skill-name>:<topic> entry when a run produces concrete evidence its own skill body steered it wrong — the suggested change, the evidence, and a dated observed line, re-confirmed in place on later runs.
A custom scout on the report channel escalates recurring or material suggestions further: it files an inbox report about itself (titled Scout self-improvement: <skill-name> – <topic>) and stashes the report_id in the improve: entry — so the strongest suggestions reach the owner through the inbox like any other report, not only via the scratchpad.
When assessing a custom scout, search {"text": "improve:"} and surface these to the user: an entry re-confirmed across several runs is the highest-signal edit the owner can make.
Reviewing and applying them is a write operation — hand off to the authoring-scouts skill.
Canonical scouts never write improve: entries (their skill bodies are synced from PostHog’s fleet), so an improve: entry under a canonical scout’s domain is itself worth flagging.
Instead, a canonical scout routes skill-content gaps upstream to the PostHog team via the agent-feedback MCP tool (feedback_type: "scout"), generalized so no project data travels, and keeps a reported:<skill-name>:<topic> entry as its local record of what it already submitted — so a reported: entry tells you a gap has been raised with PostHog, not with this team.
Scout output reaches the user as inbox reports. Filter the inbox to one scout by its skill name (comma-separate several):
inbox-reports-list
{ "scout": "signals-scout-error-tracking", "limit": 20 }Each row also carries scout_name, so a fleet-wide page tells you which scout authored what.
For the whole fleet at once, filter on the source instead: { "source_product": "signals_scout", "limit": 20 }.
Every report a scout authors carries backing signals tagged source_product="signals_scout", and that filter keeps any report whose contributing signals include the tag, so the result is the set of reports the fleet has authored.
Neither filter captures edit-only work: a scout that edits an existing non-scout report (appending a note to a pipeline report, say) adds no signals_scout signal, so that report won’t match; trace edits through the run rows’ edited_report_ids instead.
Suppressed reports are hidden by default, so add include_all_statuses: true (or status: "suppressed") when judging how much of a scout’s output got filtered. Even then both the scout and the source_product filter miss a report the safety judge suppressed, because each resolves reports through their signals and an unsafe report’s signals are never indexed; the run rows’ emitted_report_ids are the complete enumeration for a signal-to-noise audit.
An empty result means the fleet hasn’t authored any reports (yet), not that the filter is broken.
Scouts hold a high bar — most runs close out without writing — so on a quiet or newly enrolled project zero scout reports is the normal, expected state.
Note the inbox only shows surfaced reports: a report the safety judge suppressed (or one filed as not_actionable) persists with status SUPPRESSED but doesn’t appear in the default inbox view.
For the per-run view, work from the runs instead: scout-runs-list?emitted=true lists every run that authored a report, and each run’s emitted_report_ids / edited_report_ids name exactly which reports it wrote or updated — resolve them via inbox-reports-retrieve.
The flip side matters when explaining a gap: a run can narrate “authored a report” in its summary yet have the write silently dropped by a preflight gate (dry-run at the time, the org hasn’t approved AI processing, or the signals_scout source is disabled) — those leave emitted_report_ids empty, so a claimed-but-absent report is itself a diagnostic.
To browse the inbox more broadly, use the inbox-exploration skill (statuses, suggested reviewers, drilling into a report’s underlying signals).
The report contract behind each report — the report bar, evidence, actionability, reviewer routing — is documented in the authoring-scouts skill (references/report-contract.md).
A report’s status is not its whole state: read its checks too. A check is a follow-up measurement a scout or the report pipeline attached to a report — an expectation plus a time to test it — so a report can be resolved and still under measurement.
inbox-report-checks-list returns every check on one report, newest first, with its status (pending, active, passed, failed, errored, expired, cancelled), its last_outcome, and its schedule (next_run_at, run_interval_minutes, runs_remaining, expires_at); inbox-report-checks-retrieve returns one check with its full config.
Read the rows this way:
pending — the check is waiting for the report to resolve before its clock starts.active with a future next_run_at — a verdict is on its way. Don’t re-derive the answer by hand; say when it lands.authoring-scouts.The verdicts themselves are not on the check row: each one is a check_result artefact on the report, so read them through the report’s artefact list.
query and baseline_value read as null for a credential that cannot read the data they describe.
A failed check on a resolved report usually has a fresh report behind it as well (the breach is re-surfaced as a new report linked to the resolved one), so look for that before reporting the relapse as unhandled.
The full mechanics — the two check kinds, the soak window, what each verdict does next — are in the authoring-scouts skill (references/report-checks.md).
“Is my scout actually working / earning its cost?”
There’s no single metric — judge a scout over a window of runs.
Pull the runs (scout-runs-list with a date_from), then reason across the dimensions below.
The full playbook, including how to read each signal and the common failure modes, is in references/assessing-performance.md (opens in a new tab).
run_interval_minutes, or on each run_cron_schedule slot?
Judge a cron scout against its slots, not its interval: a weekday-only scout’s weekend gap is the schedule, not a stall, and assess_health.py skips interval-based scoring for it (its cadence column reads cron).
Large gaps mean the coordinator is skipping it (disabled, drained from the flag, or capped out on busy ticks) — or it’s dispatching but the runs aren’t materializing.
Tell the two apart with last_run_at: if the config’s last_run_at is also stale, the coordinator stopped planning it; if last_run_at is fresh but the newest run row is hours old, it’s the dispatch-vs-execution divergence above (workers backed up / down, or runs stranded), which scout-runs-list alone hides.status vs. error out?
A run of errors is a broken scout, not a quiet one; group the failed runs by failure_reason to see whether it is one cause repeating.emitted_report_ids / edited_report_ids per run (or split the window with runs-list?emitted=true / ?emitted=false, remembering edit-only runs read as not-emitted).
Near-zero over a long window on a live surface can mean the discriminator is too strict (or the surface really is quiet); near-100% usually means it’s too noisy.
Don’t score a measurement scout on this at all — a near-zero report rate is its designed behavior, so read its record stream instead.
Most healthy scouts write rarely.emitted_report_ids via inbox-reports-retrieve and read the report statuses — across a window, the share of authored reports that are live and non-suppressed is the scout’s hit rate.pattern: / noise: / dedupe: entries over time.
A scout with an empty scratchpad after many runs isn’t learning.The skill bundles three pure formatters under scripts/ (opens in a new tab) for the most common asks.
They do no network I/O — they are the back half of an “agent fetches, script formats” split.
The pattern is always the same:
call --json (raw JSON, not the pretty text format) and save it to a file.
For the big ones (scout-runs-list, tasks-runs-session-logs-retrieve) this is mandatory anyway — they overflow inline and spill to a file you can point the script at.All three are stdlib-only Python 3.11+ and print plain text to stdout (or --out) — designed to read well in a terminal, so save them as .txt.
scripts/render_run_report.py — drill into one runProduces the kind of detailed write-up you’d want when inspecting a single run: header (status, duration, posture), a narrated timeline that interleaves the agent’s narration with each tool call and its real input, the end-of-run summary, and any scratchpad memory.
# fetch (note --json), saving each to a file:
# call --json scout-runs-retrieve { "id": "<run_id>" } -> run.json
# call --json tasks-runs-session-logs-retrieve { "id": "<task_run_id>", "task_id": "<task_id>", "limit": 5000, "offset": 0 } -> log.json (FULL, no exclude_types; page with offset until an empty page, then concatenate)
# (optional) call --json scout-scratchpad-search { ... } -> mem.json
# (optional) call --json scout-config-list {} -> cfg.json
python scripts/render_run_report.py --run run.json --log log.json \
--scratchpad mem.json --config cfg.json --out report.txtModes (--mode, default detailed):
| Mode | Contains | --log needed? |
|---|---|---|
summary | header + posture + close-out prose | no |
detailed | + narrated timeline with tool inputs + tool tally + scratchpad | yes |
full | + each tool call’s (truncated) output inline | yes |
Other flags: --show-output (outputs in detailed mode), --input-width / --output-width (truncation), --no-art (skip the hedgehog banner), --base-url (defaults to us.posthog.com).
scripts/fleet_survey.py — survey the whole fleetOne scannable table — scout, enabled, posture, cadence, last run, last outcome — with a “worth a look” section that flags never-run, stuck-in-dry-run, and last-run-failed scouts.
# call --json scout-config-list {} -> cfg.json
# (optional) call --json scout-runs-list { "limit": 30 } -> runs.json (small limit!)
python scripts/fleet_survey.py --config cfg.json --runs runs.json --now <current-ISO-time>Pass --now (the current time, ISO-8601) to get relative “ago” columns; the last-outcome column reads what the run wrote straight off emitted_report_ids / edited_report_ids on the run row.
scripts/assess_health.py — health over a window of runsImplements the “assess health and performance” workflow above: a per-scout table (runs, success %, report rate, cadence gap vs interval, adherence, median duration, memory growth) plus a “worth a look” section flagging all-failed scouts, timeout-shaped failures, cadence stalls, staleness, and empty scratchpads.
# call --json scout-runs-list { "limit": 100, "date_from": "<ISO>" } -> runs.json
# (optional) call --json scout-config-list {} -> cfg.json
# (optional) call --json scout-scratchpad-search {} -> mem.json
python scripts/assess_health.py --runs runs.json --config cfg.json \
--scratchpad mem.json --now <current-ISO-time> [--skill signals-scout-general]--config is what lets it score cadence adherence (the expected interval; a scout with a run_cron_schedule is marked cron and exempt from the interval-based adherence, stall, and staleness flags) and staleness (the authoritative last_run_at, which the windowed runs can miss when the 100-row cap truncates the newest runs).
Without --scratchpad the memory column shows n/a and no memory flags fire.
The report rate reads the run rows’ emitted_report_ids / edited_report_ids directly, so it’s exact — but it only counts writes; judge signal-to-noise by the resulting report statuses via inbox-reports-list.
emit posture. “Running but in dry-run” is the single most common reason a user thinks a scout is broken when it isn’t.emitted_report_ids / edited_report_ids per run (or filter with runs-list?emitted=true) to find what was written, without parsing the prose summary.
The source_product: "signals_scout" inbox filter lists the reports the fleet surfaced; an empty result there means it hasn’t written anything yet (scouts hold a high bar), not that the filter is broken.emitted_count: 0 does not mean “did nothing”. emitted_count / emitted_finding_ids are legacy signal-channel fields — they stay 0 / empty on report-channel scouts, productive or not.
Judge output by the report columns; a non-zero legacy tally means the run came from a scout still on the legacy channel, and is that run's real output.failed run that lasted ~15 minutes is usually a timeout, not a broken scout. The per-run budget is 15 minutes; completed runs finish in a couple.
failure_reason names a timeout outright, so check it before reasoning from duration.
Most often the scout over-investigated and ran the full budget (the fleet self-corrects by writing “tight-run recipe” scratchpad entries) — but some are false timeouts where the scout actually finished in a few minutes and the run then hung on a dropped close-out.
The session log (above) tells them apart: real over-investigation shows tool calls right up to the wall; a false timeout goes silent long before it.
Don’t assume over-investigation from duration alone.summary, then offer task_url for the full transcript — don’t dump raw run rows at the user.last_run_at: null means the coordinator has never dispatched the scout, not that it has never run: manual (scout-run-now) and workflow-triggered runs leave the stamp untouched, so check scout-runs-list before calling a scout never-run. Then check it’s enabled and the project is enrolled (a cron scout also simply waits for its first slot after creation).scout-project-profile-get shows whether the surface it watches is even in use — a logs scout on a project with no logs has nothing to do.authoring-scouts skill — it covers scout-config-update and the skills-store edit path.How to explore and make sense of PostHog Signals scouts — the scheduled agents that scan a project and write reports into the Signals inbox. Use when a user wants to understand what scouts they have, how each one is behaving, and whether the fleet is actually working. Covers surveying the fleet and its schedules, reading recent scout runs and drilling into a single run's reasoning, inspecting the durable scratchpad memory the fleet has built up, tracing a run to the reports it wrote or edited, reading the follow-up checks still measuring a report, and assessing a scout's health and performance over time (cadence, success rate, report rate, signal-to-noise). Read-only and exploratory — to write or tune a scout, use `authoring-scouts` instead. Trigger on "what are my scouts doing", "how is my <x> scout performing", "show me recent scout runs", "why did this scout find/report nothing", "what has the fleet learned", "explore scout run <id>", "is my scout working".
The verbatim description from this skill’s front matter — the string an agent matches on to decide whether to load it.
main, last pushed 23 September 2026.SKILL.md, not by matching a directory convention. 2 distinct layouts observed: skills/omnibus/*/SKILL.md, skills/posthog/all/skills/*/SKILL.md.h1 and no skipped levels:.claude-plugin/marketplace.json by PostHog, declaring 6 plugins. It is read for editorial metadata only — never as the skill index, which is always the repository tree./PostHog/skills.md, and each skill at its own .md URL.5 files · 92 KB
Everything this skill ships beside its prose. All of it is set here, as subchapters of skill 66.
Documentation the agent loads on demand, rather than up front.
Executable code the skill can run.