Add PostHog SDK integration
Use this skill to add the PostHog SDK to an application. Use it when setting up PostHog for the first time, or reviewing PRs that need PostHog initialization. Covers SDK installation, provider setup, and basic configuration. Supports any framework or language.
Supported frameworks and languages: Next.js, React, React Router, Vue, Nuxt, TanStack Start, SvelteKit, Astro, Angular, Django, Flask, FastAPI, Laravel, PHP, Ruby on Rails, Go, Elixir, Android, iOS, Swift, Flutter, React Native, Expo, Node.js, and vanilla JavaScript.
Instructions
Follow these steps IN ORDER:
STEP 1: Analyze the codebase and detect the platform.
Look for dependency files (package.json, pubspec.yaml, Podfile, Package.swift, requirements.txt, Gemfile, composer.json, go.mod, mix.exs, etc.) to determine the framework and language.
Look for lockfiles (pnpm-lock.yaml, package-lock.json, yarn.lock, bun.lockb, go.sum, pubspec.lock, Podfile.lock, Package.resolved, mix.lock) to determine the package manager.
- Check for existing PostHog setup. If PostHog is already installed and initialized, do not modify its code. Inform the user and skip to verification.
STEP 2: Research integration.
2.1. Find the reference file below that matches the detected framework — it is the source of truth for SDK initialization, provider setup, and configuration patterns. Read it now.
2.2. If no reference matches, fall back to your general knowledge and web search. Use posthog.com/docs as the primary search source.
STEP 3: Install the PostHog SDK.
- Add the PostHog SDK package for the detected platform. Do not manually edit package.json — use the package manager's install command.
STEP 4: Initialize PostHog.
- Follow the framework reference for where and how to initialize. This varies significantly by framework (e.g., instrumentation-client.ts for Next.js 15.3+, AppConfig.ready() for Django, create_app() for Flask).
- Set up the PostHog provider/wrapper component if the framework requires one.
STEP 5: Identify users.
- Add PostHog
identify() calls on the client side during login and signup events.
- If both frontend and backend exist, pass the client-side session and distinct ID using
X-POSTHOG-DISTINCT-ID and X-POSTHOG-SESSION-ID headers to the server-side code.
STEP 6: Set up environment variables.
- Check if the project already has PostHog environment variables configured (e.g. in
.env, .env.local, or framework-specific env files). If valid values already exist, skip this step.
- If the PostHog project token is missing, use the PostHog MCP server's
projects-get tool to retrieve the project's api_token. If multiple projects are returned, ask the user which project to use. If the MCP server is not connected or not authenticated, ask the user for their PostHog project token instead.
- For the PostHog host URL: check the
projects-get MCP response for a region field — US maps to https://us.i.posthog.com, EU maps to https://eu.i.posthog.com. If the region is not available from the MCP response or from existing project configuration, ask the user: "Are you on PostHog US Cloud or EU Cloud?" Do not assume US Cloud.
- Write these values to the appropriate env file (e.g.
.env.local for Next.js, .env for others) using the framework's naming convention.
- Reference these environment variables in code instead of hardcoding them.
STEP 7: Verify and clean up.
- Check the project for errors. Look for type checking or build scripts in package.json.
- Ensure any components created were actually used.
- Run any linter or prettier-like scripts found in the package.json, but ONLY on the files you have edited or created during this session. Never run formatting or linting across the entire project's codebase.
Reference files
references/EXAMPLE-next-app-router.md - next-app-router example project code
references/EXAMPLE-next-pages-router.md - next-pages-router example project code
references/EXAMPLE-react-react-router-6.md - react-react-router-6 example project code
references/EXAMPLE-react-react-router-7-framework.md - react-react-router-7-framework example project code
references/EXAMPLE-react-react-router-7-data.md - react-react-router-7-data example project code
references/EXAMPLE-react-react-router-7-declarative.md - react-react-router-7-declarative example project code
references/EXAMPLE-react-vite.md - react-vite example project code
references/EXAMPLE-nuxt-3-6.md - nuxt-3-6 example project code
references/EXAMPLE-nuxt-4.md - nuxt-4 example project code
references/EXAMPLE-vue-3.md - vue-3 example project code
references/EXAMPLE-react-tanstack-router-file-based.md - react-tanstack-router-file-based example project code
references/EXAMPLE-react-tanstack-router-code-based.md - react-tanstack-router-code-based example project code
references/EXAMPLE-tanstack-start.md - tanstack-start example project code
references/EXAMPLE-sveltekit.md - sveltekit example project code
references/EXAMPLE-astro-static.md - astro-static example project code
references/EXAMPLE-astro-view-transitions.md - astro-view-transitions example project code
references/EXAMPLE-astro-ssr.md - astro-ssr example project code
references/EXAMPLE-astro-hybrid.md - astro-hybrid example project code
references/EXAMPLE-angular.md - angular example project code
references/EXAMPLE-javascript-node.md - javascript-node example project code
references/EXAMPLE-javascript-web.md - javascript-web example project code
references/EXAMPLE-django.md - django example project code
references/EXAMPLE-flask.md - flask example project code
references/EXAMPLE-fastapi.md - fastapi example project code
references/EXAMPLE-python.md - python example project code
references/EXAMPLE-laravel.md - laravel example project code
references/EXAMPLE-php.md - php example project code
references/EXAMPLE-ruby-on-rails.md - ruby-on-rails example project code
references/EXAMPLE-ruby.md - ruby example project code
references/EXAMPLE-android.md - android example project code
references/EXAMPLE-swift.md - swift example project code
references/EXAMPLE-react-native.md - react-native example project code
references/EXAMPLE-expo.md - expo example project code
references/next-js.md - Next.js - docs
references/react.md - React - docs
references/react-router-v6.md - React router v6 - docs
references/react-router-v7-framework-mode.md - React router v7 framework mode (remix v3) - docs
references/react-router-v7-data-mode.md - React router v7 data mode - docs
references/react-router-v7-declarative-mode.md - React router v7 declarative mode - docs
references/nuxt-js-3-6.md - Nuxt.js (v3.0 to v3.6) - docs
references/nuxt-js.md - Nuxt.js - docs
references/vue-js.md - Vue.js - docs
references/tanstack-start.md - Tanstack start - docs
references/svelte.md - Svelte - docs
references/astro.md - Astro - docs
references/angular.md - Angular - docs
references/js.md - JavaScript web - docs
references/posthog-js.md - PostHog JavaScript web SDK
references/node.md - Node.js - docs
references/posthog-node.md - PostHog Node.js SDK
references/django.md - Django - docs
references/flask.md - Flask - docs
references/python.md - Python - docs
references/posthog-python.md - PostHog python SDK
references/dotnet.md - .net - docs
references/elixir.md - Elixir - docs
references/go.md - Go - docs
references/laravel.md - Laravel - docs
references/php.md - Php - docs
references/ruby-on-rails.md - Ruby on rails - docs
references/ruby.md - Ruby - docs
references/android.md - Android - docs
references/ios.md - Ios - docs
references/usage.md - Ios SDK usage - docs
references/configuration.md - Ios SDK configuration - docs
references/flutter.md - Flutter - docs
references/react-native.md - React native - docs
references/identify-users.md - Identify users - docs
references/COMMANDMENTS.md - Framework-specific rules the integration must follow
Each framework reference contains SDK-specific installation, initialization, and usage patterns. Find the one matching the user's stack.
Key principles
- Environment variables: Always use environment variables for PostHog keys. Never hardcode them.
- Minimal changes: Add PostHog code alongside existing integrations. Don't replace or restructure existing code.
- Match the example: Your implementation should follow the example project's patterns as closely as possible.
- Analytics contract: Treat event names, property names, and feature flag keys as part of an analytics contract. Reuse existing names and patterns found in the project. When introducing new ones, make them clear, descriptive, and consistent with existing conventions.
1---2name: instrument-integration3description: Add PostHog SDK integration to your application. Use when setting up PostHog for the first time or reviewing PRs that need PostHog initialization. Covers SDK installation, provider setup, and basic configuration for any framework.4---5
6# Add PostHog SDK integration
7
8Use this skill to add the PostHog SDK to an application. Use it when setting up PostHog for the first time, or reviewing PRs that need PostHog initialization. Covers SDK installation, provider setup, and basic configuration. Supports any framework or language.
9
10Supported frameworks and languages: Next.js, React, React Router, Vue, Nuxt, TanStack Start, SvelteKit, Astro, Angular, Django, Flask, FastAPI, Laravel, PHP, Ruby on Rails, Go, Elixir, Android, iOS, Swift, Flutter, React Native, Expo, Node.js, and vanilla JavaScript.
11
12## Instructions
13
14Follow these steps IN ORDER:
15
16STEP 1: Analyze the codebase and detect the platform.
17 -
18 Look for dependency files (package.json, pubspec.yaml, Podfile, Package.swift, requirements.txt, Gemfile, composer.json, go.mod, mix.exs, etc.) to determine the framework and language.
19 -
20 Look for lockfiles (pnpm-lock.yaml, package-lock.json, yarn.lock, bun.lockb, go.sum, pubspec.lock, Podfile.lock, Package.resolved, mix.lock) to determine the package manager.
21 - Check for existing PostHog setup. If PostHog is already installed and initialized, do not modify its code. Inform the user and skip to verification.
22
23STEP 2: Research integration.
24 2.1. Find the reference file below that matches the detected framework — it is the source of truth for SDK initialization, provider setup, and configuration patterns. Read it now.
25 2.2. If no reference matches, fall back to your general knowledge and web search. Use posthog.com/docs as the primary search source.
26
27STEP 3: Install the PostHog SDK.
28 - Add the PostHog SDK package for the detected platform. Do not manually edit package.json — use the package manager's install command.
29
30STEP 4: Initialize PostHog.
31 - Follow the framework reference for where and how to initialize. This varies significantly by framework (e.g., instrumentation-client.ts for Next.js 15.3+, AppConfig.ready() for Django, create_app() for Flask).
32 - Set up the PostHog provider/wrapper component if the framework requires one.
33
34STEP 5: Identify users.
35 - Add PostHog `identify()` calls on the client side during login and signup events.
36 - If both frontend and backend exist, pass the client-side session and distinct ID using `X-POSTHOG-DISTINCT-ID` and `X-POSTHOG-SESSION-ID` headers to the server-side code.
37
38STEP 6: Set up environment variables.
39 - Check if the project already has PostHog environment variables configured (e.g. in `.env`, `.env.local`, or framework-specific env files). If valid values already exist, skip this step.
40 - If the PostHog project token is missing, use the PostHog MCP server's `projects-get` tool to retrieve the project's `api_token`. If multiple projects are returned, ask the user which project to use. If the MCP server is not connected or not authenticated, ask the user for their PostHog project token instead.
41 - For the PostHog host URL: check the `projects-get` MCP response for a `region` field — `US` maps to `https://us.i.posthog.com`, `EU` maps to `https://eu.i.posthog.com`. If the region is not available from the MCP response or from existing project configuration, ask the user: "Are you on PostHog US Cloud or EU Cloud?" Do not assume US Cloud.
42 - Write these values to the appropriate env file (e.g. `.env.local` for Next.js, `.env` for others) using the framework's naming convention.
43 - Reference these environment variables in code instead of hardcoding them.
44
45STEP 7: Verify and clean up.
46 - Check the project for errors. Look for type checking or build scripts in package.json.
47 - Ensure any components created were actually used.
48 - Run any linter or prettier-like scripts found in the package.json, but ONLY on the files you have edited or created during this session. Never run formatting or linting across the entire project's codebase.
49
50## Reference files
51
52- `references/EXAMPLE-next-app-router.md` - next-app-router example project code
53- `references/EXAMPLE-next-pages-router.md` - next-pages-router example project code
54- `references/EXAMPLE-react-react-router-6.md` - react-react-router-6 example project code
55- `references/EXAMPLE-react-react-router-7-framework.md` - react-react-router-7-framework example project code
56- `references/EXAMPLE-react-react-router-7-data.md` - react-react-router-7-data example project code
57- `references/EXAMPLE-react-react-router-7-declarative.md` - react-react-router-7-declarative example project code
58- `references/EXAMPLE-react-vite.md` - react-vite example project code
59- `references/EXAMPLE-nuxt-3-6.md` - nuxt-3-6 example project code
60- `references/EXAMPLE-nuxt-4.md` - nuxt-4 example project code
61- `references/EXAMPLE-vue-3.md` - vue-3 example project code
62- `references/EXAMPLE-react-tanstack-router-file-based.md` - react-tanstack-router-file-based example project code
63- `references/EXAMPLE-react-tanstack-router-code-based.md` - react-tanstack-router-code-based example project code
64- `references/EXAMPLE-tanstack-start.md` - tanstack-start example project code
65- `references/EXAMPLE-sveltekit.md` - sveltekit example project code
66- `references/EXAMPLE-astro-static.md` - astro-static example project code
67- `references/EXAMPLE-astro-view-transitions.md` - astro-view-transitions example project code
68- `references/EXAMPLE-astro-ssr.md` - astro-ssr example project code
69- `references/EXAMPLE-astro-hybrid.md` - astro-hybrid example project code
70- `references/EXAMPLE-angular.md` - angular example project code
71- `references/EXAMPLE-javascript-node.md` - javascript-node example project code
72- `references/EXAMPLE-javascript-web.md` - javascript-web example project code
73- `references/EXAMPLE-django.md` - django example project code
74- `references/EXAMPLE-flask.md` - flask example project code
75- `references/EXAMPLE-fastapi.md` - fastapi example project code
76- `references/EXAMPLE-python.md` - python example project code
77- `references/EXAMPLE-laravel.md` - laravel example project code
78- `references/EXAMPLE-php.md` - php example project code
79- `references/EXAMPLE-ruby-on-rails.md` - ruby-on-rails example project code
80- `references/EXAMPLE-ruby.md` - ruby example project code
81- `references/EXAMPLE-android.md` - android example project code
82- `references/EXAMPLE-swift.md` - swift example project code
83- `references/EXAMPLE-react-native.md` - react-native example project code
84- `references/EXAMPLE-expo.md` - expo example project code
85- `references/next-js.md` - Next.js - docs
86- `references/react.md` - React - docs
87- `references/react-router-v6.md` - React router v6 - docs
88- `references/react-router-v7-framework-mode.md` - React router v7 framework mode (remix v3) - docs
89- `references/react-router-v7-data-mode.md` - React router v7 data mode - docs
90- `references/react-router-v7-declarative-mode.md` - React router v7 declarative mode - docs
91- `references/nuxt-js-3-6.md` - Nuxt.js (v3.0 to v3.6) - docs
92- `references/nuxt-js.md` - Nuxt.js - docs
93- `references/vue-js.md` - Vue.js - docs
94- `references/tanstack-start.md` - Tanstack start - docs
95- `references/svelte.md` - Svelte - docs
96- `references/astro.md` - Astro - docs
97- `references/angular.md` - Angular - docs
98- `references/js.md` - JavaScript web - docs
99- `references/posthog-js.md` - PostHog JavaScript web SDK
100- `references/node.md` - Node.js - docs
101- `references/posthog-node.md` - PostHog Node.js SDK
102- `references/django.md` - Django - docs
103- `references/flask.md` - Flask - docs
104- `references/python.md` - Python - docs
105- `references/posthog-python.md` - PostHog python SDK
106- `references/dotnet.md` - .net - docs
107- `references/elixir.md` - Elixir - docs
108- `references/go.md` - Go - docs
109- `references/laravel.md` - Laravel - docs
110- `references/php.md` - Php - docs
111- `references/ruby-on-rails.md` - Ruby on rails - docs
112- `references/ruby.md` - Ruby - docs
113- `references/android.md` - Android - docs
114- `references/ios.md` - Ios - docs
115- `references/usage.md` - Ios SDK usage - docs
116- `references/configuration.md` - Ios SDK configuration - docs
117- `references/flutter.md` - Flutter - docs
118- `references/react-native.md` - React native - docs
119- `references/identify-users.md` - Identify users - docs
120- `references/COMMANDMENTS.md` - Framework-specific rules the integration must follow
121
122Each framework reference contains SDK-specific installation, initialization, and usage patterns. Find the one matching the user's stack.
123
124## Key principles
125
126- **Environment variables**: Always use environment variables for PostHog keys. Never hardcode them.
127- **Minimal changes**: Add PostHog code alongside existing integrations. Don't replace or restructure existing code.
128- **Match the example**: Your implementation should follow the example project's patterns as closely as possible.
129- **Analytics contract**: Treat event names, property names, and feature flag keys as part of an analytics contract. Reuse existing names and patterns found in the project. When introducing new ones, make them clear, descriptive, and consistent with existing conventions.