product-analytics
alirezarezvani/claude-skills
AARRR、North Star、HEARTなどのフレームワークを活用し、製品の発見段階、成長段階、成熟段階にわたる製品指標を定義、追跡、分析する。
...すべて拡張しますプロダクト分析
製品の発見段階、成長段階、成熟段階にわたって、製品指標を定義、追跡、分析します。
活用すべき場面
このスキルは以下の場合に活用します:
- 指標フレームワークの選定(AARRR、ノーススター、HEART)
- 製品ステージ別KPIの定義(PMF前、成長期、成熟期)
- ダッシュボードの設計と指標の階層化
- コホート分析およびリテンション分析
- 機能の採用状況とファネルの解釈
ワークフロー
- 指標フレームワークの選定
- 成長ループとファネルの可視化におけるAARRR
- 部門横断的な戦略的整合性のための「ノーススター」
- UXの品質とユーザー体験の測定にはHEART
- 各ステージに適したKPIを定義する
- PMF達成前:アクティベーション、初期リテンション、定性的な成功
- 成長期:獲得効率、拡大、コンバージョン速度
- 成熟期:継続率の深さ、収益の質、業務効率
- ダッシュボードのレイヤーを設計する
- 経営層向けレイヤー:方向性を示す指標5~7項目
- プロダクト健全性レイヤー:獲得、アクティベーション、リテンション、エンゲージメント
- 機能レイヤー:採用率、利用深度、リピート利用率、成果との相関
- コホート分析および継続率分析の実施
- 登録コホートまたは機能接触コホートごとにセグメント化
- 単一時点のスナップショットではなく、リテンション曲線を比較する
- オンボーディングやファーストバリューモーメント周辺の転換点を特定する
- 解釈し、対応する
- 指標の変動を、製品の変更やリリースタイムラインと関連付ける
- 期間ごとのコンテキストを活用して、シグナルとノイズを区別する
- 主要な指標のリスク/機会ごとに、明確な製品改善策を1つ提案する
ステージ別KPIガイダンス
PMF前
- アクティベーション率
- 第1週のリテンション率
- 初回価値実現までの時間
- 問題と解決策の適合性に関するインタビュー評価スコア
成長
- ステージ別ファネルコンバージョン率
- 月間継続ユーザー数
- 新規コホートにおける機能採用率
- 拡大/アップセルの指標(代用指標)
成熟
- 純収益の維持率と連動した製品指標
- パワーユーザーの割合と利用の深さ
- セグメント別の解約リスク指標
- 信頼性およびサポート依頼の回避に関する製品指標
ダッシュボードの設計原則
- 孤立した点推定値ではなく、トレンドを示す。
- KPIごとに担当者を1名に限定する。
- 各KPIに目標値、閾値、および決定ルールを紐付ける。
- デフォルトでコホートおよびセグメントのフィルターを使用する。
- 比較可能な時間枠(週単位対週単位、月単位対月単位)を優先する。
参照:
references/metrics-frameworks.mdreferences/dashboard-templates.md
コホート分析手法
- コホートのアンカーイベント(登録、アクティベーション、初回購入)を定義します。
- リテンション行動を定義する(アクティブ日、主要アクション、セッションの繰り返し)。
- コホートごとの週/月および経過期間別にリテンションマトリックスを作成する。
- コホート間の曲線の形状を比較する。
- 早期離脱ポイントを特定し、ジャーニー上の摩擦要因を調査する。
リテンション曲線の解釈
- 初期の急激な減少、低い横ばい:オンボーディングのミスマッチ、または初期価値の低さ。
- 緩やかな減少、安定したプラトー:健全なコアユーザー層であり、解約率は予測可能。
- 低水準で横ばい:製品がたまにしか利用されていないため、価値指標を見直す。
- 新規コホートの改善:オンボーディングやポジショニングの改善が奏功している。
アンチパターン
| アンチパターン | 改善策 |
|---|---|
| 見せかけの指標 — アクティベーションの文脈を考慮せずにページビューや総登録者数を追跡すること | 獲得指標は常にアクティベーション率およびリテンション率と組み合わせて測定する |
| 単一時点のリテンション — 「30日間のリテンション率は20%」といった報告 | 孤立したスナップショットではなく、コホート間のリテンション曲線を比較する |
| ダッシュボードの過負荷 — 1つの画面に30以上の指標を表示 | 経営層:5~7つの指標。機能層:機能ごとの指標のみ |
| 意思決定ルールがない — 閾値やアクションプランのないKPIを追跡している | すべてのKPIには、目標値、閾値、責任者、および「Xを下回った場合はYを行う」というルールが必要 |
| セグメント間の平均化 — セグメント間の差異を隠してしまう混合指標の報告 | 常にコホート、プラン階層、チャネル、または地域ごとにセグメント化すること |
| 季節性を無視している — 調整せずに今週と先週を比較している | 前年同期との比較を、前年同期の文脈を踏まえて行う |
ツール
scripts/metrics_calculator.py
CSVデータからのリテンション、コホート、ファネル分析を行うCLIユーティリティ。テキストおよびJSON形式の出力をサポートしています。
# Retention analysis
python3 scripts/metrics_calculator.py retention events.csv
python3 scripts/metrics_calculator.py retention events.csv --format json
# Cohort matrix
python3 scripts/metrics_calculator.py cohort events.csv --cohort-grain month
python3 scripts/metrics_calculator.py cohort events.csv --cohort-grain week --format json
# Funnel conversion
python3 scripts/metrics_calculator.py funnel funnel.csv --stages visit,signup,activate,pay
python3 scripts/metrics_calculator.py funnel funnel.csv --stages visit,signup,activate,pay --format json
リテンション/コホート用のCSV形式:
user_id,cohort_date,activity_date
u001,2026-01-01,2026-01-01
u001,2026-01-01,2026-01-03
u002,2026-01-02,2026-01-02
ファネル分析用のCSV形式:
user_id,stage
u001,visit
u001,signup
u001,activate
u002,visit
u002,signup
関連項目
- 関連項目:
product-team/experiment-designer— 指標の改善機会を特定した後のA/Bテスト計画立案用 - 関連:
product-team/product-manager-toolkit— 指標主導型機能のRICEによる優先順位付けについて - 関連:
product-team/product-discovery— 指標から未知の要素が明らかになった際の仮説の整理 - 関連:
finance/saas-metrics-coach— SaaS特有の指標(ARR、MRR、解約率、LTV)について
---
name: product-analytics
description: Define, track, and interpret product metrics across discovery, growth, and mature product stages using frameworks like AARRR, North Star, and HEART.
---
# Product Analytics
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
1. 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
2. Define stage-appropriate KPIs
- Pre-PMF: activation, early retention, qualitative success
- Growth: acquisition efficiency, expansion, conversion velocity
- Mature: retention depth, revenue quality, operational efficiency
3. Design dashboard layers
- Executive layer: 5-7 directional metrics
- Product health layer: acquisition, activation, retention, engagement
- Feature layer: adoption, depth, repeat usage, outcome correlation
4. 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
5. 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
1. Define cohort anchor event (signup, activation, first purchase).
2. Define retained behavior (active day, key action, repeat session).
3. Build retention matrix by cohort week/month and age period.
4. Compare curve shape across cohorts.
5. 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.
## Anti-Patterns
| Anti-pattern | Fix |
|---|---|
| **Vanity metrics** — tracking pageviews or total signups without activation context | Always pair acquisition metrics with activation rate and retention |
| **Single-point retention** — reporting "30-day retention is 20%" | Compare retention curves across cohorts, not isolated snapshots |
| **Dashboard overload** — 30+ metrics on one screen | Executive layer: 5-7 metrics. Feature layer: per-feature only |
| **No decision rule** — tracking a KPI with no threshold or action plan | Every KPI needs: target, threshold, owner, and "if below X, then Y" |
| **Averaging across segments** — reporting blended metrics that hide segment differences | Always segment by cohort, plan tier, channel, or geography |
| **Ignoring seasonality** — comparing this week to last week without adjusting | Use period-over-period with same-period-last-year context |
## Tooling
### `scripts/metrics_calculator.py`
CLI utility for retention, cohort, and funnel analysis from CSV data. Supports text and JSON output.
```bash
# Retention analysis
python3 scripts/metrics_calculator.py retention events.csv
python3 scripts/metrics_calculator.py retention events.csv --format json
# Cohort matrix
python3 scripts/metrics_calculator.py cohort events.csv --cohort-grain month
python3 scripts/metrics_calculator.py cohort events.csv --cohort-grain week --format json
# Funnel conversion
python3 scripts/metrics_calculator.py funnel funnel.csv --stages visit,signup,activate,pay
python3 scripts/metrics_calculator.py funnel funnel.csv --stages visit,signup,activate,pay --format json
```
**CSV format for retention/cohort:**
```csv
user_id,cohort_date,activity_date
u001,2026-01-01,2026-01-01
u001,2026-01-01,2026-01-03
u002,2026-01-02,2026-01-02
```
**CSV format for funnel:**
```csv
user_id,stage
u001,visit
u001,signup
u001,activate
u002,visit
u002,signup
```
## Cross-References
- Related: `product-team/experiment-designer` — for A/B test planning after identifying metric opportunities
- Related: `product-team/product-manager-toolkit` — for RICE prioritization of metric-driven features
- Related: `product-team/product-discovery` — for assumption mapping when metrics reveal unknowns
- Related: `finance/saas-metrics-coach` — for SaaS-specific metrics (ARR, MRR, churn, LTV)
すべてのファイル
0件のファイルproduct-analyticsをインストール
スキルファイルをダウンロードし、.claude/skills/ ディレクトリに解凍してください。
ZIPをダウンロードリポジトリをクローンし、スキルファイルをプロジェクトにコピーしてください。
git clone https://github.com/alirezarezvani/claude-skills/tree/main/product-team/skills/product-analytics # Copy SKILL.md to your .claude/skills/ directory
コピー





家
