What problem does it solve?
When a PostHog endpoint fails, returns unexpected rows, or misses cache, you need to know what happened during its runs. This Skill reads the per-run execution log entries stored in PostHog's log_entries store so you can pinpoint errors, versions, and execution paths without guessing.
Core Features & Use Cases
- Failure diagnosis: Filter logs by ERROR level to read the error token (e.g. ResolutionError, HogVMException) and the execution path where the run broke.
- Cache and row analysis: Search key=value tokens like cache=miss or compare rows= and version= across runs to spot regressions after a version bump.
- Trend aggregation: Run SQL against log_entries to compute error rates or run counts over time for a specific endpoint.
- Use Case: A user says "weekly_signups started erroring this morning." The Skill pulls recent ERROR logs, finds version=5 failing with ResolutionError on the inline path, confirms v4 ran fine, and recommends reviewing the v5 query or rolling back.
Quick Start
Ask the agent to show the recent execution logs and errors for your endpoint by name, for example "why is my endpoint weekly_signups failing?"