Analytics de Produto
Resumo em PT-BR: Ajuda a definir metricas, eventos e leituras de comportamento do produto.
Titulo original: Product Analytics
Observacao: instrucoes detalhadas, referencias e scripts originais abaixo foram preservados em ingles.
Define, track, and interpret product metrics across discovery, growth, and mature product stages.
When To Use
Use this skill for:
- Metric framework selection (AARRR, North Star, HEART)
- KPI definition by product stage (pre-PMF, growth, mature)
- Dashboard design and metric hierarchy
- Cohort and retention analysis
- Feature adoption and funnel interpretation
Workflow
- Select metric framework
- AARRR for growth loops and funnel visibility
- North Star for cross-functional strategic alignment
- HEART for UX quality and user experience measurement
- Define stage-appropriate KPIs
- Pre-PMF: activation, early retention, qualitative success
- Growth: acquisition efficiency, expansion, conversion velocity
- Mature: retention depth, revenue quality, operational efficiency
- Design dashboard layers
- Executive layer: 5-7 directional metrics
- Product health layer: acquisition, activation, retention, engagement
- Feature layer: adoption, depth, repeat usage, outcome correlation
- Run cohort + retention analysis
- Segment by signup cohort or feature exposure cohort
- Compare retention curves, not single-point snapshots
- Identify inflection points around onboarding and first value moment
- Interpret and act
- Connect metric movement to product changes and release timeline
- Distinguish signal from noise using period-over-period context
- Propose one clear product action per major metric risk/opportunity
KPI Guidance By Stage
Pre-PMF
- Activation rate
- Week-1 retention
- Time-to-first-value
- Problem-solution fit interview score
Growth
- Funnel conversion by stage
- Monthly retained users
- Feature adoption among new cohorts
- Expansion / upsell proxy metrics
Mature
- Net revenue retention aligned product metrics
- Power-user share and depth of use
- Churn risk indicators by segment
- Reliability and support-deflection product metrics
Dashboard Design Principles
- Show trends, not isolated point estimates.
- Keep one owner per KPI.
- Pair each KPI with target, threshold, and decision rule.
- Use cohort and segment filters by default.
- Prefer comparable time windows (weekly vs weekly, monthly vs monthly).
See:
references/metrics-frameworks.md
references/dashboard-templates.md
Cohort Analysis Method
- Define cohort anchor event (signup, activation, first purchase).
- Define retained behavior (active day, key action, repeat session).
- Build retention matrix by cohort week/month and age period.
- Compare curve shape across cohorts.
- Flag early drop points and investigate journey friction.
Retention Curve Interpretation
- Sharp early drop, low plateau: onboarding mismatch or weak initial value.
- Moderate drop, stable plateau: healthy core audience with predictable churn.
- Flattening at low level: product used occasionally, revisit value metric.
- Improving newer cohorts: onboarding or positioning improvements are working.
Tooling
scripts/metrics_calculator.py
CLI utility for:
- Retention rate calculations by cohort age
- Cohort table generation
- Basic funnel conversion analysis
Examples:
python3 scripts/metrics_calculator.py retention events.csv
python3 scripts/metrics_calculator.py cohort events.csv --cohort-grain month
python3 scripts/metrics_calculator.py funnel funnel.csv --stages visit,signup,activate,pay
1---2name: analytics-de-produto3description: Ajuda a definir metricas, eventos e leituras de comportamento do produto.4---56# Analytics de Produto78Resumo em PT-BR: Ajuda a definir metricas, eventos e leituras de comportamento do produto.9Titulo original: `Product Analytics`10Observacao: instrucoes detalhadas, referencias e scripts originais abaixo foram preservados em ingles.111213Define, track, and interpret product metrics across discovery, growth, and mature product stages.1415## When To Use1617Use this skill for:18- Metric framework selection (AARRR, North Star, HEART)19- KPI definition by product stage (pre-PMF, growth, mature)20- Dashboard design and metric hierarchy21- Cohort and retention analysis22- Feature adoption and funnel interpretation2324## Workflow25261. Select metric framework27- AARRR for growth loops and funnel visibility28- North Star for cross-functional strategic alignment29- HEART for UX quality and user experience measurement30312. Define stage-appropriate KPIs32- Pre-PMF: activation, early retention, qualitative success33- Growth: acquisition efficiency, expansion, conversion velocity34- Mature: retention depth, revenue quality, operational efficiency35363. Design dashboard layers37- Executive layer: 5-7 directional metrics38- Product health layer: acquisition, activation, retention, engagement39- Feature layer: adoption, depth, repeat usage, outcome correlation40414. Run cohort + retention analysis42- Segment by signup cohort or feature exposure cohort43- Compare retention curves, not single-point snapshots44- Identify inflection points around onboarding and first value moment45465. Interpret and act47- Connect metric movement to product changes and release timeline48- Distinguish signal from noise using period-over-period context49- Propose one clear product action per major metric risk/opportunity5051## KPI Guidance By Stage5253### Pre-PMF54- Activation rate55- Week-1 retention56- Time-to-first-value57- Problem-solution fit interview score5859### Growth60- Funnel conversion by stage61- Monthly retained users62- Feature adoption among new cohorts63- Expansion / upsell proxy metrics6465### Mature66- Net revenue retention aligned product metrics67- Power-user share and depth of use68- Churn risk indicators by segment69- Reliability and support-deflection product metrics7071## Dashboard Design Principles7273- Show trends, not isolated point estimates.74- Keep one owner per KPI.75- Pair each KPI with target, threshold, and decision rule.76- Use cohort and segment filters by default.77- Prefer comparable time windows (weekly vs weekly, monthly vs monthly).7879See:80- `references/metrics-frameworks.md`81- `references/dashboard-templates.md`8283## Cohort Analysis Method84851. Define cohort anchor event (signup, activation, first purchase).862. Define retained behavior (active day, key action, repeat session).873. Build retention matrix by cohort week/month and age period.884. Compare curve shape across cohorts.895. Flag early drop points and investigate journey friction.9091## Retention Curve Interpretation9293- Sharp early drop, low plateau: onboarding mismatch or weak initial value.94- Moderate drop, stable plateau: healthy core audience with predictable churn.95- Flattening at low level: product used occasionally, revisit value metric.96- Improving newer cohorts: onboarding or positioning improvements are working.9798## Tooling99100### `scripts/metrics_calculator.py`101102CLI utility for:103- Retention rate calculations by cohort age104- Cohort table generation105- Basic funnel conversion analysis106107Examples:108```bash109python3 scripts/metrics_calculator.py retention events.csv110python3 scripts/metrics_calculator.py cohort events.csv --cohort-grain month111python3 scripts/metrics_calculator.py funnel funnel.csv --stages visit,signup,activate,pay112```