Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

posthogposthog 分析

Agent Skill

posthog 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

494

周安装

20

GitHub Stars

8

下载量

155
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/phrazzld/claude-config --skill posthog

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持基于关键词、任务场景或来源线索进行信息检索与筛选。
  • 可通过 npx skills add 命令从 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • posthog 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/posthog

World-class PostHog integration. Audit, fix, verify—every time.

What This Does

Examines your PostHog integration, identifies every gap, implements fixes, and verifies event tracking works end-to-end. No partial modes. Every run does the full cycle.

Branching

Assumes you start on master/main. Before making code changes:

git checkout -b fix/posthog-$(date +%Y%m%d)

Configuration-only changes (env vars, dashboard settings) don't require a branch. Code changes do.

Process

0. Environment Check

Verify PostHog is reachable and configured:

~/.claude/skills/posthog/scripts/detect-environment.sh

This checks:

  • NEXT_PUBLIC_POSTHOG_KEY is set
  • NEXT_PUBLIC_POSTHOG_HOST is set (or defaults correctly)
  • PostHog API is reachable
  • MCP connection is active

1. Audit

Spawn the auditor. Use the posthog-auditor subagent for deep parallel analysis. It examines:

  • Configuration — Env vars on all deployments, cross-platform parity
  • SDK Setup — Initialization, provider placement, privacy settings
  • Event Quality — Events defined, consistent naming, not too noisy
  • Privacy Compliance — PII masking, consent handling, GDPR readiness
  • Feature Flags — Active flags, stale flags, evaluation patterns
  • Integration Health — Events flowing, no ingestion warnings

Use MCP tools for live data:

mcp__posthog__event-definitions-list — See what events are tracked
mcp__posthog__feature-flag-get-all — Audit active feature flags
mcp__posthog__list-errors — Check for error tracking issues
mcp__posthog__logs-query — Search for SDK/ingestion errors

Research first. Before assuming current patterns are correct, check PostHog docs:

mcp__posthog__docs-search query="[topic]"

2. Plan

From audit findings, build a complete remediation plan:

Finding TypeAction
Missing env varsFix directly with Vercel/Convex CLI
SDK misconfigurationDelegate to Codex with clear specs
Missing eventsDefine event schema, implement tracking
Privacy gapsApply references/privacy-checklist.md
Feature flag cleanupArchive stale flags via MCP

Prioritize:

  1. Critical — Events not sending, SDK not initialized
  2. High — Privacy issues, PII leakage, missing masking
  3. Medium — Suboptimal patterns, missing events
  4. Low — Cleanup, organization, dashboards

3. Execute

Fix everything. Don't stop at a report.

Configuration fixes (do directly):

# Missing env var on Vercel
printf '%s' 'phc_xxx' | vercel env add NEXT_PUBLIC_POSTHOG_KEY production

# Missing env var on Convex (for server-side tracking)
npx convex env set --prod POSTHOG_API_KEY "phc_xxx"

SDK setup fixes (delegate to Codex):

codex exec --full-auto "Fix PostHog initialization. \
File: lib/analytics/posthog.ts. \
Problem: [what's wrong]. \
Solution: [what it should do]. \
Reference: ~/.claude/skills/posthog/references/sdk-patterns.md. \
Verify: pnpm typecheck && pnpm test" \
--output-last-message /tmp/codex-fix.md 2>/dev/null

Event schema updates: Use mcp__posthog__action-create to define composite events.

Feature flag cleanup: Use mcp__posthog__delete-feature-flag to remove stale flags.

4. Verify

Prove it works. Not "looks right"—actually works.

Configuration verification:

# Check env vars exist
vercel env ls --environment=production | grep POSTHOG
npx convex env list --prod | grep POSTHOG

Event flow verification using MCP:

# Check recent events are flowing
mcp__posthog__query-run with TrendsQuery for last 24h

# Check for ingestion warnings
mcp__posthog__list-errors

# Verify event definitions exist
mcp__posthog__event-definitions-list

SDK initialization verification:

  1. Open browser DevTools → Network tab
  2. Filter for posthog or i.posthog.com
  3. Trigger an action → verify event sent
  4. Check PostHog Live Events → verify event received

Privacy verification:

  1. Session Replay shows masked inputs (***)
  2. Person profiles show only user ID, not email/name
  3. Autocapture text is masked

If any verification fails, go back and fix it.

Common Issues & Fixes

Events Not Sending

Symptoms: No events in PostHog, network requests failing

Debug steps:

  1. Check if PostHog initialized: posthog.__loaded in console
  2. Check network tab for blocked requests (ad blockers)
  3. Enable debug mode: posthog.debug() in console
  4. Test with webhook.site to isolate SDK vs network issues

Fixes:

  • Set up reverse proxy (/ingest → PostHog) to bypass ad blockers
  • Ensure initPostHog() called in provider
  • Check NEXT_PUBLIC_POSTHOG_KEY is actually public (has NEXT_PUBLIC_ prefix)

Bot Detection Blocking Dev Events

Symptoms: Events work in production but not local dev

Cause: Chrome launched from debugger triggers bot detection

Fix:

posthog.init(key, {
  opt_out_capturing_by_default: false,
  // For development only:
  bootstrap: { isIdentifiedAnonymous: true },
});

Identify Called Before Init

Symptoms: User not linked to events, anonymous users everywhere

Fix:

// WRONG
posthog.identify(userId); // Called before init completes

// RIGHT
posthog.init(key, {
  loaded: (ph) => {
    if (userId) ph.identify(userId);
  },
});

Missing Reverse Proxy

Symptoms: Events blocked by ad blockers in production

Fix (Next.js):

// next.config.js
module.exports = {
  async rewrites() {
    return [
      {
        source: '/ingest/:path*',
        destination: 'https://us.i.posthog.com/:path*',
      },
    ];
  },
};

Then update init:

posthog.init(key, {
  api_host: '/ingest',
});

MCP Tool Reference

ToolPurpose
mcp__posthog__event-definitions-listList all tracked events
mcp__posthog__query-runRun trends/funnels queries
mcp__posthog__feature-flag-get-allList feature flags
mcp__posthog__create-feature-flagCreate new flag
mcp__posthog__list-errorsCheck error tracking
mcp__posthog__logs-querySearch logs for issues
mcp__posthog__docs-searchSearch PostHog docs
mcp__posthog__entity-searchFind insights/dashboards/flags
mcp__posthog__projects-getList available projects
mcp__posthog__switch-projectChange active project

Default Stack

Assumes Next.js + TypeScript + Convex + Vercel + Clerk. Adapts gracefully to other stacks.

What You Get

When complete:

  • Working event tracking (events visible in PostHog Live Events)
  • Proper SDK initialization with privacy settings
  • Reverse proxy configured for ad blocker bypass
  • User identification linked to auth (Clerk/etc)
  • Feature flags ready to use
  • Standard events defined and tracking
  • All configuration in place (dev and prod)
  • Deep verification passing

Sources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.75%
按下载量换算60

Claude

30.34%
按下载量换算47

Cursor

17.54%
按下载量换算27

Gemini CLI

8.97%
按下载量换算14

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

未通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills