Skip to content
Development
Skill

/instrument-error-tracking

Add PostHog error tracking to capture and monitor exceptions. Use after implementing features or reviewing PRs to ensure errors are tracked with stack traces and source maps. Also handles initial PostHog SDK setup if not yet installed.

From plugin
posthog
84164 skills1 agent3 commands2 hooks
+1
Install
$ npx -y skills add PostHog/ai-plugin --skill instrument-error-tracking --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/instrument-error-tracking

Context preview

The summary Claude sees to decide when to auto-load this skill.

Add PostHog error tracking to capture and monitor exceptions. Use after implementing features or reviewing PRs to ensure errors are tracked with stack traces and source maps. Also handles initial PostHog SDK setup if not yet installed.

SKILL.md

instrument-error-tracking.SKILL.md
name: instrument-error-tracking
description: >-
  Add PostHog error tracking to capture and monitor exceptions. Use after
  implementing features or reviewing PRs to ensure errors are tracked with stack
  traces and source maps. Also handles initial PostHog SDK setup if not yet
  installed.
metadata:
  author: PostHog

Add PostHog error tracking

Use this skill to add PostHog error tracking that captures and monitors exceptions in your application. Use it after implementing features or reviewing PRs to ensure errors are tracked with full stack traces and source maps. If PostHog is not yet installed, this skill also covers initial SDK setup. Supports any platform or language.

Supported platforms: React, Next.js, Web (JavaScript), Node.js, Python, PHP, Ruby, Ruby on Rails, Go, Elixir, Angular, Svelte, Nuxt, React Native, Flutter, iOS, Android, and Hono.

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, go.mod, Gemfile, composer.json, mix.exs, etc.) to determine the language and framework. - 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 (SDK initialization, env vars, etc.). If PostHog is already installed and initialized, skip to STEP 4.

STEP 2: Research instrumentation. (Skip if PostHog is already set up.) 2.1. Find the reference file below that matches the detected platform — it is the source of truth for SDK initialization, exception autocapture, and framework-specific error tracking 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 and initialize the PostHog SDK. (Skip if PostHog is already set up.)

  • Add the PostHog SDK package for the detected platform. Do not manually edit package.json — use the package manager's install command.
  • Follow the framework reference for where and how to initialize.

STEP 4: Enable exception autocapture.

  • Follow the platform reference to enable exception autocapture. This automatically captures unhandled exceptions without additional code.

STEP 5: Add manual error captures.

  • Identify error boundaries, catch blocks, and critical user flows where errors should be explicitly captured.
  • Add `posthog.captureException()` or the platform-equivalent at these locations.
  • Do not alter the fundamental architecture of existing error handling. Make additions minimal and targeted.
  • You must read a file immediately before attempting to write it.

STEP 6: Upload source maps (frontend/mobile only).

  • Configure source map uploads so stack traces resolve to original source code, not minified bundles.
  • Follow the platform-specific reference for upload configuration (build plugins, CI scripts, etc.).

STEP 7: 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 using the framework's naming convention.
  • Reference these environment variables in code instead of hardcoding them.

STEP 8: 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/react.md` - React error tracking installation - docs
  • `references/web.md` - Web error tracking installation - docs
  • `references/nextjs.md` - Next.js error tracking installation - docs
  • `references/node.md` - Node.js error tracking installation - docs
  • `references/python.md` - Python error tracking installation - docs
  • `references/django.md` - Django - docs
  • `references/flask.md` - Flask - docs
  • `references/php.md` - Php error tracking installation - docs
  • `references/laravel.md` - Laravel - docs
  • `references/ruby.md` - Ruby error tracking installation - docs
  • `references/ruby-on-rails.md` - Ruby on rails error tracking installation - docs
  • `references/ruby-on-rails.md` - Ruby on rails - docs
  • `references/go.md` - Go error tracking installation - docs
  • `references/dotnet.md` - .net error tracking installation - docs
  • `references/dotnet.md` - .net - docs
  • `references/elixir.md` - Elixir error tracking installation - docs
  • `references/angular.md` - Angular error tracking installation - docs
  • `references/svelte.md` - Sveltekit error tracking installation - docs
  • `references/nuxt-3-7.md` - Nuxt error tracking installation (v3.7 and above) - docs
  • `references/nuxt-3-6.md` - Nuxt error tracking installation (v3.6 and below) - docs
  • `references/react-native.md` - React native error tracking installation - docs
  • `references/flutter.md` - Flutter error tracking installation - docs
  • `references/ios.md` - Ios error tracking installation - d
Read more
Ships withposthog

Official PostHog plugin for AI clients. Access PostHog products directly from your AI coding tool.

Get the whole plugin

Other skills on posthog.