instrument-product-analytics
Add PostHog product analytics events to track user behavior. Use after implementing new features or reviewing PRs to ensure meaningful user actions are captured. Also handles initial PostHog SDK setup if not yet installed.
What this skill does
# Add PostHog product analytics events Use this skill to add product analytics events (capture calls) that track meaningful user actions in new or changed code. Use it after implementing features or reviewing PRs to ensure key user behaviors are captured. If PostHog is not yet installed, this skill also covers initial SDK setup. Supports any framework or language. Supported frameworks and languages: Next.js, React Router, Nuxt, Vue, TanStack Start, SvelteKit, Astro, Angular, Django, Flask, FastAPI, Laravel, PHP, Ruby on Rails, Go, Elixir, Android, iOS, Flutter, React Native, Expo, and more. ## 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, skip to STEP 5. STEP 2: Research integration. (Skip if PostHog is already set up.) 2.1. Find the reference file below that matches the detected framework — it is the source of truth for SDK initialization, provider setup, and event capture 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. (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. - Always install packages as a background task. Don't await completion; proceed with other work immediately after starting the installation. STEP 4: Initialize PostHog. (Skip if PostHog is already set up.) - 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). STEP 5: Plan event tracking. - From the project's file list, select between 10 and 15 files that might have interesting business value for event tracking, especially conversion and churn events. - Also look for files related to login that could be used for identifying users, along with error handling. - Find any existing `posthog.capture()` code. Make note of event name formatting. Don't duplicate existing events; supplement them. - Track actions only, not pageviews (those can be captured automatically). Exceptions can be made for "viewed"-type events at the top of a conversion funnel. - **Server-side events are REQUIRED** if the project includes any instrumentable server-side code (API routes, server actions, webhook handlers, payment/checkout completion, authentication endpoints). STEP 6: Implement event capture. - For each planned event, add `posthog.capture()` calls with useful properties. - If a file already has existing integration code for other tools or services, don't overwrite or remove that code. Place PostHog code below it. - Do not alter the fundamental architecture of existing files. Make additions minimal and targeted. - You must read a file immediately before attempting to write it. STEP 7: Identify users. - Add PostHog `identify()` calls on the client side during login and signup events. Use the contents of login and signup forms to identify users on submit. - 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. On the server side, make sure events have a matching distinct ID. STEP 8: Add error tracking. - Add PostHog exception capture error tracking to relevant files, particularly around critical user flows and API boundaries. STEP 9: 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 API key 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 API key instead. - For the PostHog host URL, use `https://us.i.posthog.com` for US Cloud or `https://eu.i.posthog.com` for EU 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 10: 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-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-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-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/
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.