querying-posthog-data

द्वारा posthog

PostHog के विरुद्ध कोई भी HogQL/SQL लिखने या execute-sql कॉल करने से पहले आवश्यक पठन। जब भी उपयोगकर्ता खोज, ढूंढ़ना या जटिल एकत्रीकरण करना चाहे तब उपयोग करें…

npx skills add https://github.com/posthog/skills --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.

posthog की और Skills

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 लॉग्स फॉर पायथन
official
analyzing-experiment-session-replays
posthog
प्रयोग वेरिएंट में सत्र रीप्ले पैटर्न का विश्लेषण करें ताकि उपयोगकर्ता व्यवहार में अंतर को समझा जा सके। इसका उपयोग तब करें जब उपयोगकर्ता यह देखना चाहे कि उपयोगकर्ता कैसे इंटरैक्ट करते हैं...
official
auditing-experiments-flags
posthog
PostHog प्रयोगों और फीचर फ्लैग्स का ऑडिट करें, कॉन्फ़िगरेशन समस्याओं, पुरानेपन और सर्वोत्तम-अभ्यास उल्लंघनों के लिए। तब पढ़ें जब उपयोगकर्ता ऑडिट, स्वास्थ्य-जांच, ... के लिए पूछे।
official
auditing-warehouse-data-health
posthog
यह कौशल डेटा वेयरहाउस पाइपलाइन का एक प्रोजेक्ट-व्यापी ऑडिट तैयार करता है। इसका उपयोग तब करें जब उपयोगकर्ता सब कुछ खराब होने का सारांश चाहता है, न कि किसी एक सिंक की गहन जांच। व्यक्तिगत विफलताओं की गहन जांच diagnosing-failed-warehouse-syncs है; यह कौशल वह स्कैन है जो उन्हें बताता है कि पहले कहाँ देखना है।
official