querying-posthog-data

от posthog

Обязательное чтение перед написанием любого HogQL/SQL или вызовом execute-sql для PostHog. Используйте, когда пользователь хочет выполнить поиск, найти или сделать сложные агрегации…

npx skills add https://github.com/posthog/ai-plugin --skill querying-posthog-data

Querying data in PostHog

The guidelines contain the same instructions as posthog:execute-sql. If you've already read posthog:execute-sql, you don't need to read them again.

When to use this skill

Finding a specific PostHog entity

When the user wants to find a specific entity created in PostHog (insights, dashboards, cohorts, feature flags, experiments, surveys, hog flows, data warehouse items, etc.), or when a list/search tool returns too many results to narrow down:

  1. Read the appropriate schema reference under Data Schema to understand the entity's table and columns.
  2. Use posthog:execute-sql to query the system table and find the matching entity (typically returning its ID).
  3. Use the dedicated read tool for that entity type (e.g. posthog:insight-get, posthog:dashboard-get) to retrieve the full entity by ID.

Don't try to reconstruct the entity from SQL — execute-sql is for discovery, the read tool is for retrieval.

Querying analytics data

When the user wants analytics data (trends, funnels, retention, paths, sessions, LLM traces, web analytics, errors, logs, etc.) and the existing insight schemas don't fit the request:

  1. Look for a matching example under Analytics Query Examples. The list is not exhaustive — there may not be an example for every scenario. If one is a close fit (same domain, similar aggregation), read it; otherwise skip this step.
  2. Adapt the example query (if one was found) to the user's request and run it via posthog:execute-sql. If no example fit, compose the query from scratch using the Data Schema and HogQL References.

Data Schema

Schema reference for PostHog's core system models, organized by domain:

HogQL References

Analytics Query Examples

Use the examples below to create optimized analytical queries.

Больше skills от posthog

error-tracking-go
posthog
Отслеживание ошибок PostHog для Go
official
integration-laravel
posthog
Интеграция PostHog для приложений Laravel
official
integration-nextjs-app-router
posthog
Интеграция PostHog для приложений Next.js App Router
official
logs-other
posthog
Логи PostHog для других языков
official
logs-python
posthog
Логи PostHog для Python
official
analyzing-experiment-session-replays
posthog
Анализировать паттерны повторных сессий в вариантах эксперимента, чтобы понять различия в поведении пользователей. Используйте, когда пользователь хочет увидеть, как пользователи взаимодействуют с…
official
auditing-experiments-flags
posthog
Аудит экспериментов и функциональных флагов PostHog на предмет проблем с конфигурацией, устаревания и нарушений лучших практик. Читать, когда пользователь просит провести аудит, проверку работоспособности,…
official
auditing-warehouse-data-health
posthog
Этот навык создаёт общепроектный аудит конвейера хранилища данных. Используйте его, когда пользователю нужна сводка всего, что сломано, а не глубокий анализ одного синхронизации. Глубокий анализ отдельных сбоев выполняется навыком diagnosing-failed-warehouse-syncs; этот навык — сканирование, которое подсказывает, куда смотреть в первую очередь.
official