Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

instrument-product-analytics仪器产品分析

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

1,011

周安装

43

GitHub Stars

28

下载量

354
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:instrument-product-analytics(仪器产品分析)
来源仓库:https://github.com/posthog/ai-plugin
仓库路径:skills/instrument-product-analytics
安装命令:
npx skills add https://github.com/posthog/ai-plugin --skill instrument-product-analytics
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/posthog/ai-plugin --skill instrument-product-analytics

简介

用于辅助数据整理、表格处理、CSV/Excel 分析和图表准备。

  • 适合清洗字段、汇总数据、发现异常或生成统计口径。
  • 使用时需确认数据来源、字段含义和时间范围。
  • 涉及敏感数据或批量写回时需先确认权限和脱敏边界。
  • instrument-product-analytics 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

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: Next.js, React Router, Nuxt, Vue, TanStack Start, SvelteKit, Astro, Angular, Django, Flask, FastAPI, Laravel, Ruby on Rails, Android, iOS, 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, 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, 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-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/svelte.md - Svelte - docs
  • references/astro.md - Astro - docs
  • references/angular.md - Angular - docs
  • 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 docs: Follow the framework reference's initialization and capture patterns exactly.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.58%
按下载量换算119

Claude

33.57%
按下载量换算119

Cursor

21.47%
按下载量换算76

Gemini CLI

8.88%
按下载量换算31

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills