Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

marketing-product-analytics营销产品分析

Agent Skill

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

总安装

1,568

周安装

66

GitHub Stars

60

下载量

549
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/vasilyu1983/ai-agents-public --skill marketing-product-analytics

简介

用于辅助数据整理、表格处理和指标计算分析。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中进行 CSV/Excel 数据处理。
  • 支持字段清洗、汇总统计和异常检测功能。marketing-product-analytics 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需确认数据来源和时间范围,避免误用样本数据。
  • 涉及敏感数据时应先确认脱敏权限和导出边界。

SKILL.md

Product Analytics - Instrumentation & Measurement OS

Modern Best Practices (January 2026): PostHog-first, session context registration, strict event naming, North Star activation events, privacy-first attribution.

Primary sources live in data/sources.json. If web search is available, refresh time-sensitive details against official docs before giving definitive advice.

No fluff. Only executable steps, templates, and checklists.


When to Use This Skill

  • Event taxonomy design: Naming conventions, event hierarchy, property structure
  • Tracking plan creation: What to track, where, and why
  • Marketing attribution: UTM capture, campaign tracking, source attribution
  • Activation metrics: Defining and measuring user activation
  • Retention analysis: Cohort analysis, churn prediction, engagement scoring
  • Platform setup: PostHog, Pendo, Amplitude, Mixpanel, Heap configuration
  • Data quality: Event validation, debugging, governance

Default Workflow (Use Unless User Overrides)

  1. Clarify goals and constraints: business questions, lifecycle stages, identity model, privacy/consent requirements, platforms (web/mobile/backend).
  2. Define the North Star value event: one canonical event that represents value received (plus the smallest set of supporting events).
  3. Write the tracking plan: use assets/tracking-plan-saas.md as the starting template; define required properties and ownership.
  4. Implement instrumentation: pick the platform guide in Quick Reference (PostHog/Pendo/Amplitude/Mixpanel/Heap; server-side if needed).
  5. QA and harden: use assets/analytics-qa-checklist.md + references/event-quality-rules.md + references/production-hardening.md.

Core Principles

1. North Star Value Event (VITAL)

Every product must have ONE canonical activation event - the single event that means "user received real value."

Product TypeNorth Star EventWhen It Fires
Content/Mediacontent_consumedContent fully loaded and visible
SaaS Toolworkflow_completedUser completes core workflow
E-commercepurchase_completedTransaction successful
Developer Toolintegration_workingFirst successful API call

Rule: Every feature event should collapse into ONE activation event with properties:

// PASS CORRECT: One event, differentiated by property
posthog.capture('value_delivered', { value_type: 'report', value_id: 'rpt_123' });
posthog.capture('value_delivered', { value_type: 'integration', value_id: 'int_456' });

// FAIL WRONG: Fragmented "value" events (harder to unify in retention/funnels)
posthog.capture('report_generated');
posthog.capture('integration_working');

2. Minimum Viable Analytics (MVA)

Start with 5-15 events, not 200. You can always add more.

LayerRequired EventsOptional
Acquisitionpage_viewed, signup_completedcampaign_landed
ActivationYour activation event (1-2 max)onboarding_step_completed
EngagementYour engagement signal (1-2 max)feature_used
Conversionpurchase_completedcheckout_started

For auth-heavy products, add email reliability instrumentation early:

  • auth_email_requested (type: signup_confirm, magic_link, reset_password)
  • auth_email_delivered / auth_email_bounced / auth_email_complained (from provider webhooks)
  • auth_email_link_clicked (completion quality signal, not just send volume)

3. Session Context Registration

Register standard context once per session using posthog.register():

posthog.register({
  app_env: 'prod',
  platform: 'web',
  landing_path: window.location.pathname,
  traffic_source: deriveTrafficSource(),
  utm_source, utm_medium, utm_campaign
});

4. Event Naming Convention

RuleCorrectIncorrect
Lowercase onlyuser_signed_upUser_Signed_Up
Snake_casebutton_clickedbuttonClicked
Object_action formatproject_createdcreateProject

Quick Reference


Implementation Checklist

### Event Correctness
- [ ] Activation event fires only when value is **visible** (not on mount)
- [ ] Event includes required properties defined in the tracking plan (e.g., `object_type`, `object_id`, `surface`, `flow`)
- [ ] Dedupe guard used where re-renders can double-fire (see `references/production-hardening.md`)
- [ ] Event fires in **exactly one place** per feature

### Session Context
- [ ] `registerSessionContext()` called on app init
- [ ] Includes: `app_env`, `platform`, `landing_path`, `traffic_source`, UTMs

### Type Safety
- [ ] `TrafficSource` uses TypeScript enum, not free string
- [ ] All properties use `snake_case`

### Privacy
- [ ] Person properties contain **no PII** by default
- [ ] Email only stored with explicit consent

Decision Tree

### Not seeing expected events?
├─ PostHog default events visible? ($pageview, autocapture)
│   ├─ Yes -> Custom event bug -> Check component, guards, dedupe
│   └─ No -> SDK issue -> Check env vars, consent, ad blockers
├─ Check DevTools Network -> verify /e/ calls
└─ Check PostHog Live Events (not Activity)

### Can't answer business questions?
├─ Missing events -> Add custom events for key moments
├─ Missing properties -> Enrich with context
├─ No user ID -> Implement identify() calls
└─ Attribution gaps -> Capture UTMs, persist through signup

Anti-Patterns Summary

Anti-PatternInstead
No North Star eventDefine ONE canonical activation event
Excessive *_viewed eventsCollapse into one event with properties
PII in identify()State-based identification only
Event spam from re-rendersUse isPostHogReady() guard + dedupe
Free text sourceUse TypeScript enum for TrafficSource
Non-unique IDsUse stable domain IDs (*_id) or an action_instance_id
Tracking everythingFocus on 5-15 key events (MVA)
Inconsistent namingEnforce lowercase snake_case strictly

See references/event-quality-rules.md for detailed examples.


Metrics and Benchmarks

Default to internal baselines and trendlines; use external benchmarks only when comparing like-for-like segments and definitions.

If you need external references, see data/sources.json -> benchmarks_research.


Templates

TemplatePurpose
tracking-plan-saas.mdComplete SaaS tracking plan
marketing-event-library.mdMarketing attribution events
utm-naming-standards.mdUTM parameter guide
activation-metrics-template.mdActivation metric definition
analytics-qa-checklist.mdData quality checklist

International Markets

This skill uses US/UK market defaults. For international product analytics:

NeedSee Skill
Regional compliance (GDPR, PIPL, LGPD)marketing-geo-localization
Regional analytics platforms (Baidu Analytics)marketing-geo-localization
Privacy requirements by regionmarketing-geo-localization
Cookie consent by jurisdictionmarketing-geo-localization

If your query is primarily about GDPR/PIPL/LGPD or consent configuration, use marketing-geo-localization alongside this skill.


Related Skills


Data Sources

See data/sources.json for official documentation links.

Ops Runbook: Instrumentation Gate (Pre-PR)

Use this to keep analytics changes production-safe and queryable.

Pre-PR Commands

# 1) Find changed tracking calls
rg -n "capture\(|track\(|analytics\.|posthog\." src app lib

# 2) Enforce event/property naming policy
rg -n "[A-Z]" src | rg "capture\(|track\("  # quick camelCase/PascalCase smell

# 3) Validate tracking plan coverage
# (keep a single source of truth file; fail if event is missing)
rg -n "signup_started|signup_completed|checkout_started|trial_started" docs src

# 4) Run analytics gate test (if project defines one)
npm run test:analytics-gate

Post-Deploy Smoke Query Template

-- Replace table names for your warehouse/provider
select event,
       count(*) as events,
       count(distinct distinct_id) as users
from events
where timestamp >= now() - interval '24 hour'
  and event in ('signup_started','signup_completed','checkout_started','trial_started')
group by event
order by events desc;

Event Contract Minimum

Each critical event must include:

  • stable event name (snake_case)
  • actor id (user_id or distinct_id)
  • object id (*_id)
  • source context (surface, entry_point, utm_* when relevant)
  • timestamp from server or trusted client clock

Gate Failure Policy

  • Missing critical event or required property: block merge.
  • Non-critical property drift: allow merge only with follow-up issue.
  • Silent event rename: block merge until dashboard/query migration is prepared.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

27.87%
按下载量换算153

Gemini CLI

24.26%
按下载量换算133

Antigravity

15.25%
按下载量换算84

Cursor

10.96%
按下载量换算60

Codex

8.43%
按下载量换算46

trae

3.21%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills