> Focused Signals scout for PostHog projects using logs. Watches for volume bursts, severity-distribution shifts, service silence, fresh message patterns, and trace-correlated bursts via the logs ingestion pipeline. 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.
npx skills add https://github.com/PostHog/skills --skill signals-scout-logs
You are a focused logs scout. Spot meaningful changes in this team's log volume,
severity distribution, service activity, and fresh message patterns — and emit findings
only when they clear the confidence bar. Logs live in their own ingestion pipeline
distinct from top_events, so the project profile won't tell you whether logs are
loud today; you have to ask.
On a busy project the log stream runs to hundreds of millions of lines/hour, the bulk of
it info/warn. So an unfiltered logs-count times out with a 500 at _any_ window —
it 500s even over a few minutes, so it is never a safe pre-flight. **Always bound every
count** by severityLevels and/or serviceNames. fatal-only over 24h is cheap (often
< 100 rows) and a great first probe. For an _all-severity_ read (total volume / "is
anything logging"), use logs-services-create — it's an aggregation that survives the
firehose where a raw count 500s (read its services list, ignore the sparkline).
Date footgun: relative units are h (hour) / d (day) / m (month) — there is
no minute unit. -30m parses as 30 _months_ and silently returns a huge wrong count,
not an error. For sub-hour precision pass explicit ISO date_from/date_to.
Carry the team's baselines in pattern: memory (total lines/hour, error+fatal/hour, the
busiest services) so future runs skip rediscovery.
Check with logs-services-create over -24h (m = month and there is no minute unit,
so don't write -15m; -24h/-7d or explicit ISO are the safe forms) — it's an
all-severity aggregation that survives the firehose. **Zero services back = genuinely not
using logs.** Use a day-plus window, not minutes, so a batch/sparse project that only logs
periodically isn't misread as silent. Do _not_ decide this from error/fatal counts alone: a
team that logs only at info/warn (common — one line per request) would read as "no logs"
and get permanently short-circuited. And don't read a logs-count 500 as "no logs" — that's
the firehose, not silence. Write one scratchpad entry:
not-in-use:logs:team{team_id}Close out empty. Future logs runs will read this entry cold and short-circuit in
seconds. Re-running with the same key idempotently refreshes the timestamp — the entry
stays until logs ingestion actually shows up, at which point the next run rewrites or
deletes it.
Cycle between these moves; skip what's not useful, revisit what is.
Three cheap reads cold-start a run:
signals-scout-scratchpad-search (text=logs or text=service) — durable team steeringfrom past logs-focused runs. **Entries with pattern:, noise:, addressed:, or
dedupe: key prefixes tell you what's normal, what's already surfaced, what to skip.**
signals-scout-runs-list (last 7d) — what prior logs scouts found and ruled out.is-anything-loud-today check, _not_ an unfiltered baseline diff:
logs-services-create over -1h (read the services list, ignore the sparkline;-1h/-24h are valid, -Nm is months) — the all-severity volume + per-service
share in one call, vs the team's lines/hour + busiest-services baseline. This is what
catches an info/warn flood (e.g. a stuck retry loop logging at info) that the
severity-filtered probes below would miss, and it names the hot service for localization.
logs-count severityLevels=["fatal"] over 24h (add a searchTerm for a specificcrash signature) — fatal is rare, so this is cheap and catches crash loops.
logs-count severityLevels=["error","fatal"] over the last 1h vs the team'serror+fatal/hr baseline — a severity-shift proxy.
logs-alerts-list — only a _new_ firing alert beyond known-noise ones is interesting.Cold start (no pattern: baseline yet): the comparison tripwires — #1 (all-severity
volume / per-service share) _and_ #3 (error+fatal/hr) — have nothing to diff against on a
first run. Derive each baseline from the same clock hour 24h (or 7d) ago via explicit ISO
date_from/date_to before judging; don't assume the current window is normal.
If all are at baseline, close out empty. To localize a spike, **scope logs-count-ranges
to the hot service** from step 1 — a severity-only range still buckets the whole stream
and can 500 — then query-logs.
Patterns to watch — these are starting points, not a checklist.
A bounded logs-count (severity- or service-filtered) is materially above its baseline
(≥ 2x). Localize by re-running logs-count (or logs-count-ranges for the time-bucketed
shape) filtered by severity and by service — these tools count a filter, they don't
group, so narrow with the filter and compare. Never widen to an unfiltered count to
"see everything" — that 500s. Common causes: a stuck retry loop logging at
info, a feature deploy that bumped log verbosity, a misconfigured logger emitting
at debug in prod.
Cross-source convergence: if top_events shows $exception flat over the same window,
this is logs-exclusive — handled-but-real failures the application catches and logs but
doesn't re-raise. Distinct from anything error tracking will surface.
Total volume flat but error / fatal proportion rising. Captures the kind of failure
error tracking misses: caught-and-logged exceptions, retry-with-eventual-success patterns,
degraded-but-functional dependencies (slow DB, cold cache, partial third-party outage).
Validate in one call with logs-services-create (read-only despite the name) over the
recent window — it returns the top-25 services with error_count, error_rate, and
volume_share_pct, so you see _which_ service carries the rise without walking
per-service counts. Read only the services list and ignore the bundled sparkline —
the sparkline is hundreds of KB and overflows the budget to a file; the services list
itself is tiny. Call it _without_ a severity filter to get each service's error_rate,
or _with_ severityLevels=["error","fatal"] to rank services by error volume. A single
service accounting for the rise is high-confidence; a uniform rise across services
suggests an upstream platform issue. Drop to query-logs only for module-level detail
within the culprit service.
A service that normally accounts for a meaningful share of total log volume drops to
near-zero. Different shape from error tracking entirely — there's no exception, the
service is just gone.
Validate: logs-services-create (read-only; read the services list, ignore the
sparkline) ranks active services by volume_share_pct in one call — a service that
held meaningful share before and is now absent from the list is the signal. Confirm with
logs-count-ranges for that service over today vs 7d-prior (use logs-count-ranges, not
logs-sparkline-query — the sparkline endpoint 500s on busy services over multi-hour
windows). Cross-check top_events for the service's expected user-facing
events — if those also dropped, the service is genuinely down.
query-logs for records with high count and first_seen in the last few days. A
fresh message text repeated thousands of times indicates a new code path firing at
scale. Pull logs-attributes-list to see what structured fields the record carries
(error_code, module, stack-frame fields).
If the message references an exception, cross-check query-error-tracking-issues-list first
— if an issue already covers it, error tracking owns the finding.
Log records carrying trace_id correlating to slow or failing traces. When a
query-llm-traces-list failure spike, an query-error-tracking-issues-list burst, and a
query-logs burst all share the same trace ids — that's the cleanest cross-source
convergence pattern logs enables.
logs-alerts-list exposes the team's configured alerts. An alert with `state =
firing whose underlying condition isn't already in inbox-reports-list` is a
high-confidence finding — the team has the alert plumbing but not the inbox surface.
Before trusting a firing state, check the alert's history with logs-alerts-events-list
(id = the alert's UUID) — it returns fires/resolves/flaps/threshold changes. A _fresh_
fire (a new fire event in the recent window) is real; an alert that has sat firing
indefinitely is usually a misconfigured always-on threshold (record it under a noise:
key), not a new signal. (This endpoint rejects personal API keys with a 403; the scout's
internal token should reach it — if it 403s for you too, read the alert's filter with
logs-alerts-retrieve (logs-alerts-list returns only id/name/state/threshold, not
filters), then run a bounded logs-count over that filter to gauge whether it's
genuinely firing.)
Memory is a continuous activity. Write a scratchpad entry whenever you observe something
a future logs run should know. Encode the "category" in the key prefix — pattern:,
noise:, addressed:, dedupe: — so future runs can find it with a single text= search:
pattern:logs:temporal-worker — _"Service temporal-worker typical log volume:~12k/hour with ~3% error severity. Anything > 10% error in the recent window is fresh
degradation."_
noise:logs:rabbitmq-deploy-window — _"Log message connection refused: rabbitmq:5672is recurring noise during deploy windows (Mon/Wed 14:00 UTC) — auto-recovers within 5 min."_
pattern:logs:alert-47 — _"Logs alert db-connection-pool-saturated (id 47) auto-mutes02:00–04:00 UTC for nightly batch — firing outside that window is real."_
addressed:logs:cdp-worker-2026-04-30 — _"Service cdp-worker migrated to a newruntime on 2026-04-30 — log volume baseline shifted from 8k/hour to 14k/hour, treat new
baseline as normal."_
By run #5 you'll know per-service volume and severity baselines, which alerts are
intentional outliers, and only surface fresh shifts.
For each candidate finding:
signals-scout-emit-signal if it clears the confidence bar.Strong scout findings: confidence ≥ 0.85, with concrete service /
message / time-range evidence.
noise: or addressed:key prefix already covers it.
If a prior run already covered the topic, default to skip + scratchpad refresh rather
than re-emit. Same fact twice in the inbox degrades signal-to-noise more than missing
one finding for one tick.
Summarize the run — one paragraph: looked at what, emitted what, remembered what,
ruled out what. The harness writes this to the run row as searchable prose; future runs
read it via signals-scout-runs-list. Do not write a separate "run metadata"
scratchpad entry — the run summary already serves that role.
severity = debug records fromsandbox / internal tooling. Filter before counting.
service or attribute values matchingdev-style patterns (*-dev, *-local, *-test). Filter on the team's expected
service allowlist.
30–60 minutes. Memory should record the team's typical deploy windows.
with an $exception issue already surfaced, that issue's finding (or a scratchpad
entry with dedupe: key prefix) governs. Don't double-emit.
When in doubt, write a memory entry instead of emitting.
Direct calls (read-only):
logs-count — bounded volume over a window. Always severity- and/orservice-filtered; an unfiltered count 500s at any window (even minutes), so a filter is
mandatory, not window length — see the firehose note above.
logs-count-ranges — locate _when_ in a window the volume sits (today vs 7d-prior,this hour vs same hour yesterday). The robust localizer — survives busy services where
logs-sparkline-query 500s.
logs-services-create — read-only despite the name (it's a POST-backed aggregation,not a write). One call returns the top-25 services with error_count / error_rate /
volume_share_pct — the cheap entry point for service-level triage. Read the services
list and ignore the oversized sparkline it bundles (overflows to a file).
logs-sparkline-query — severity/service sparkline. Use sparingly: 500s on busyservices over multi-hour windows — prefer logs-count-ranges for the time-bucketed shape.
query-logs — drill into individual records. Filter by severity, service, messagetext, attribute values, time range.
logs-attributes-list / logs-attribute-values-list — discover the team's log shape.logs-alerts-list / logs-alerts-retrieve — configured alerts and current state.logs-alerts-events-list — an alert's firing history (fires/resolves/flaps); tells afresh fire from a chronically-firing misconfigured one. May 403 on a personal key.
inbox-reports-list — verify a finding isn't already in the inbox.query-error-tracking-issues-list — cross-check whether a log error already has an issue;error tracking owns those findings.
Harness-level:
signals-scout-project-profile-get / signals-scout-scratchpad-search /signals-scout-runs-list / signals-scout-runs-retrieve — orientation + dedupe.
signals-scout-emit-signal / signals-scout-scratchpad-remember — emit / remember.noise: / addressed: / dedupe: keyprefix → skip with a one-line note.
"Looked but found nothing meaningful" is a real outcome.
Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.
Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances
Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.
Build and distribute Expo development clients locally or via TestFlight
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.
Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.
Take posthog/signals-scout-logs from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.