mcpbeat Sign in

Omnibus Instrument Integration Agent Skill

>- 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.

314k tokens
context cost
the whole folder, loaded on every use
61
files
instructions only
0
copies elsewhere
how many repositories repackaged it
57
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/PostHog/skills --skill omnibus-instrument-integration

What comes with it

893 546 bytes besides the instruction
references/EXAMPLE-android.md
references/EXAMPLE-angular.md
references/EXAMPLE-astro-hybrid.md
references/EXAMPLE-astro-ssr.md
references/EXAMPLE-astro-static.md
references/EXAMPLE-astro-view-transitions.md
references/EXAMPLE-django.md
references/EXAMPLE-expo.md
references/EXAMPLE-fastapi.md
references/EXAMPLE-flask.md
references/EXAMPLE-javascript-node.md
references/EXAMPLE-javascript-web.md
references/EXAMPLE-laravel.md
references/EXAMPLE-next-app-router.md
references/EXAMPLE-next-pages-router.md
references/EXAMPLE-nuxt-3.6.md
references/EXAMPLE-nuxt-4.md
references/EXAMPLE-python.md
references/EXAMPLE-react-native.md
references/EXAMPLE-react-react-router-6.md
references/EXAMPLE-react-react-router-7-data.md
references/EXAMPLE-react-react-router-7-declarative.md
references/EXAMPLE-react-react-router-7-framework.md
references/EXAMPLE-react-tanstack-router-code-based.md
references/EXAMPLE-react-tanstack-router-file-based.md
references/EXAMPLE-react-vite.md
references/EXAMPLE-ruby-on-rails.md
references/EXAMPLE-ruby.md
references/EXAMPLE-sveltekit.md
references/EXAMPLE-swift.md
references/EXAMPLE-tanstack-start.md
references/EXAMPLE-vue-3.md
references/android.md
references/angular.md
references/astro.md
references/django.md
references/flask.md
references/identify-users.md
references/ios.md
references/js.md

The instruction itself

4 sections, as written by the author

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: Next.js, React, React Router, Vue, Nuxt, TanStack Start, SvelteKit, Astro, Angular, Django, Flask, FastAPI, Laravel, Ruby on Rails, Android, Swift, 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, requirements.txt, Gemfile, composer.json, go.mod, etc.) to determine the framework and language.
  • Look for lockfiles (pnpm-lock.yaml, package-lock.json, yarn.lock, bun.lockb) 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.
  • Always install packages as a background task. Don't await completion; proceed with other work immediately after starting the installation.

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.

  • Store the PostHog API key and host in environment variables (e.g. .env or framework-specific env files).
  • 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.

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-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/laravel.md - Laravel - 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/react-native.md - React native - docs
  • references/identify-users.md - Identify users - docs

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.

Other skills for the same job

different authors, same section of the catalogue
MCP Builder
by anthropics
vendor ×13

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

30k tokens scripts
Changelog Generator
by frostant
×9

Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.

774 tokens
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
MCP Builder
by JayZeeDesign
×7

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

37k tokens scripts
Vercel React Native Skills
by vercel-labs
vendor ×6

React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.

39k tokens
Vercel React Best Practices
by ratacat
×5

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

34k tokens
Next Best Practices
by vercel-labs
vendor ×4

Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling

20k tokens
Using Git Worktrees
by ZhanlinCui
×4

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

1k tokens

How to use it

Copy the folder

Take posthog/omnibus-instrument-integration from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

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.