Analytics strategy

Design measurement frameworks including event taxonomy, KPI hierarchy, dashboard architecture, attribution models, and analytics implementation strategy.

Analytics strategy — Creative Direction skill highlight diagram. Navy header card reads 'Impactful Creative Direction' with the subtitle… (from the rampstackco/claude-skills README)

From the rampstackco/claude-skills README — shows the whole collection, not only this skill. · view on GitHub

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/analytics-strategy, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit rampstackco/claude-skills/skills/analytics-strategy#main ~/.claude/skills/analytics-strategy

For one project only, change the path to .claude/skills/analytics-strategy. This skill also uses analytics-tracking-plan.md — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Analytics strategy

Show the full text231 lines
namedescriptioncategorycatalog_summarydisplay_order
analytics-strategyDesign measurement frameworks including event taxonomy, KPI hierarchy, dashboard architecture, attribution models, and analytics implementation strategy. Use this skill whenever the user wants to plan analytics, design dashboards, build event taxonomies, define KPIs, set up tracking, or audit existing measurement. Triggers on analytics strategy, measurement plan, event taxonomy, tracking plan, KPI framework, dashboard design, north star metric, attribution model, conversion tracking, GA4 setup, Mixpanel setup, analytics audit. Also triggers when the user has data but no clear way to use it, or wants to make decisions but doesn't know what to track.growthMeasurement frameworks, dashboard design, event taxonomy1

Analytics Strategy

Design measurement frameworks that produce decisions, not just dashboards. Stack-agnostic. Tool-agnostic.

This skill is for measurement planning. For conversion optimization, use cro-optimization. For SEO measurement specifically, use seo-onpage and adjacent SEO skills.


When to use

  • Setting up analytics on a new product or site
  • Auditing existing analytics setup
  • Designing dashboards for a team or business
  • Defining KPIs and a north star metric
  • Building event taxonomies for product analytics
  • Designing attribution models for marketing
  • Translating business questions into measurement plans

When NOT to use

  • Conversion testing or optimization (use cro-optimization)
  • SEO performance measurement (use SEO skills)
  • Pure data infrastructure decisions (different domain)

Required inputs

  • The business or product context (what does success look like)
  • The audience for the analytics (who needs to make what decisions)
  • The current measurement state (existing tools, tracking, gaps)
  • The questions the team needs to answer

The framework: 4 layers

A complete measurement strategy covers all four. Each layer feeds the next.

1. North star and KPI hierarchy

The single metric that captures the most important outcome, plus the supporting metrics.

North star metric:

  • One metric. Singular.
  • Captures customer-perceived value.
  • Leads to revenue, but isn't revenue itself (revenue is too far downstream).
  • Examples: weekly active users, completed jobs, revenue-generating sessions, hours of value delivered.

Underneath the north star, the KPI hierarchy:

North star metric
├── Acquisition KPI (how new users enter)
├── Activation KPI (when new users get value)
├── Engagement KPI (how often users return)
├── Retention KPI (how many stick over time)
└── Monetization KPI (how value translates to revenue)

This is the "AARRR" or "pirate metrics" framework. It works because it covers the full lifecycle.

2. Event taxonomy

The vocabulary the product uses to describe what users do.

Event design principles:

  • Verb + noun. signed_up, created_project, completed_checkout. Past tense, snake_case.
  • One event per discrete action. Not "interacted_with_modal" - too vague. Specifically opened_modal_X, closed_modal_X, confirmed_in_modal_X.
  • Properties capture context. Each event has properties (key-value pairs) for context. signed_up has properties like signup_method, referrer, plan.
  • Standardize property names. user_id everywhere, not userId here and id there.
  • Document everything. A tracking plan that lives nowhere is a tracking plan no one follows.

Event coverage:

  • All key user actions tracked
  • All conversion points tracked
  • All errors tracked
  • All page views tracked (with consistent properties)
  • All button clicks that matter (not all button clicks - that's noise)

Anti-patterns:

  • 500+ events with no documentation
  • Inconsistent naming (buttonClicked, Button Clicked, clicked_button)
  • Property keys that vary across events
  • Events fired client-side that should be server-side (and vice versa)
  • PII in event properties (privacy issue and tooling issue)
3. Dashboards and reports

The interface between data and decisions.

Dashboard design principles:

  • One audience per dashboard. Executive dashboard != product team dashboard. Different metrics, different cadence.
  • One question per chart. A chart should answer one question, not three.
  • Annotations matter. Note launches, experiments, holidays, outages. A spike means nothing without context.
  • Context comparisons. "10,000 signups this month" - compared to what? Last month, last year, target?
  • Lead with the action. What does this dashboard help someone decide?

Common dashboard types:

Dashboard Audience Metrics Cadence
Executive Leadership North star, top 3 KPIs, big-picture trends Weekly review
Product Product team Funnel metrics, feature adoption, retention Daily / weekly
Marketing Marketing team Acquisition by channel, CAC, attribution Daily / weekly
Operations Ops / on-call Performance, errors, capacity Real-time
Custom (per team) Specific team Their specific KPIs Their cadence
4. Attribution and segmentation

How to connect cause and effect.

Attribution models:

  • First-touch. Credit the first interaction. Useful for awareness understanding.
  • Last-touch. Credit the final interaction before conversion. Default in many tools, often misleading.
  • Linear. Spread credit equally across touches. Avoids over-crediting any single channel.
  • Time-decay. Recent touches get more credit. Reasonable middle ground.
  • Position-based. First and last get more credit, middle touches less.
  • Data-driven (algorithmic). Tools like Google Analytics 4 use ML. Black box but increasingly the default.

For most businesses: pick one primary attribution model, use multiple secondary models for validation.

Segmentation principles:

  • Segment by what causes different behavior, not by what's easy to track
  • Useful segments: source/channel, plan tier, geography, device, cohort (signup date)
  • Less useful: demographic guesses without behavioral validation

The tracking plan document

Output of the analytics strategy. A living document.

Structure:

  1. Goals and KPIs. Business objectives, north star, KPI hierarchy.
  2. Event catalog. Every event, with properties, when fired, why tracked.
  3. User properties. Persistent attributes (plan, signup_date, role).
  4. Page taxonomy. Page categories, page properties.
  5. Naming conventions. Snake_case, verb_noun, etc.
  6. Implementation notes. Client-side vs server-side, SDK details, sampling.
  7. Privacy and compliance. PII rules, consent handling, data retention.
  8. Governance. Who can add events, review process, change log.

Workflow

  1. Define the questions. What does the team need to answer? Working backward from questions to metrics works better than starting from metrics.
  2. Define the north star. One metric. Tested against the criteria above.
  3. Build the KPI hierarchy. Acquisition, activation, engagement, retention, monetization.
  4. Audit existing tracking. What's there? What's broken? What's missing?
  5. Design the event taxonomy. Cover the user journey. Document everything.
  6. Implement with care. Test each event. Verify properties. Catch issues in staging.
  7. Build dashboards. One per audience. Lead with action.
  8. Establish review cadence. Weekly business review, monthly KPI review, quarterly strategy review.
  9. Govern. Who adds events, who reviews, how changes propagate.

Failure patterns

  • Tracking everything. Noise overwhelms signal.
  • Tracking nothing strategic. Page views and that's it. Cannot answer real questions.
  • No documentation. Tracking plan lives in someone's head.
  • Inconsistent naming. Same concept, three names. Reports become detective work.
  • Events fired but never reviewed. Tracking debt accumulates.
  • Dashboards no one looks at. Built for vanity, not decisions.
  • Single attribution model treated as truth. All models lie. Some lie usefully.
  • PII in events. Compliance and tooling problems.
  • Client-side only. Critical business events should be server-side too. Ad blockers, network issues, edge cases lose client-side events.
  • No connection to business outcomes. Metrics exist in a silo, never connected to revenue, retention, or strategic decisions.

Output format

Default output: a markdown tracking plan at analytics-tracking-plan.md plus a dashboard inventory.

Tracking plan structure:

# Tracking Plan

## North star metric
[Definition, calculation, target]

## KPI hierarchy
[Each KPI with definition, calculation, owner]

## Event catalog
| Event | When fired | Properties | Owner | Status |
|---|---|---|---|---|
| user_signed_up | After successful signup form submit | source, plan, referrer | Marketing | Live |
| project_created | When user clicks Create Project | project_type, template_used | Product | Live |
| ... | | | | |

## User properties
[List with definitions]

## Naming conventions
[Rules]

## Privacy and compliance
[Rules]

## Governance
[Process]

Reference files

1---
2name: analytics-strategy
3description: "Design measurement frameworks including event taxonomy, KPI hierarchy, dashboard architecture, attribution models, and analytics implementation strategy. Use this skill whenever the user wants to plan analytics, design dashboards, build event taxonomies, define KPIs, set up tracking, or audit existing measurement. Triggers on analytics strategy, measurement plan, event taxonomy, tracking plan, KPI framework, dashboard design, north star metric, attribution model, conversion tracking, GA4 setup, Mixpanel setup, analytics audit. Also triggers when the user has data but no clear way to use it, or wants to make decisions but doesn't know what to track."
4category: growth
5catalog_summary: "Measurement frameworks, dashboard design, event taxonomy"
6display_order: 1
7---
8 
9# Analytics Strategy
10 
11Design measurement frameworks that produce decisions, not just dashboards. Stack-agnostic. Tool-agnostic.
12 
13This skill is for measurement planning. For conversion optimization, use `cro-optimization`. For SEO measurement specifically, use `seo-onpage` and adjacent SEO skills.
14 
15---
16 
17## When to use
18 
19- Setting up analytics on a new product or site
20- Auditing existing analytics setup
21- Designing dashboards for a team or business
22- Defining KPIs and a north star metric
23- Building event taxonomies for product analytics
24- Designing attribution models for marketing
25- Translating business questions into measurement plans
26 
27## When NOT to use
28 
29- Conversion testing or optimization (use `cro-optimization`)
30- SEO performance measurement (use SEO skills)
31- Pure data infrastructure decisions (different domain)
32 
33---
34 
35## Required inputs
36 
37- The business or product context (what does success look like)
38- The audience for the analytics (who needs to make what decisions)
39- The current measurement state (existing tools, tracking, gaps)
40- The questions the team needs to answer
41 
42---
43 
44## The framework: 4 layers
45 
46A complete measurement strategy covers all four. Each layer feeds the next.
47 
48### 1. North star and KPI hierarchy
49 
50The single metric that captures the most important outcome, plus the supporting metrics.
51 
52**North star metric:**
53 
54- One metric. Singular.
55- Captures customer-perceived value.
56- Leads to revenue, but isn't revenue itself (revenue is too far downstream).
57- Examples: weekly active users, completed jobs, revenue-generating sessions, hours of value delivered.
58 
59**Underneath the north star, the KPI hierarchy:**
60 
61```
62North star metric
63├── Acquisition KPI (how new users enter)
64├── Activation KPI (when new users get value)
65├── Engagement KPI (how often users return)
66├── Retention KPI (how many stick over time)
67└── Monetization KPI (how value translates to revenue)
68```
69 
70This is the "AARRR" or "pirate metrics" framework. It works because it covers the full lifecycle.
71 
72### 2. Event taxonomy
73 
74The vocabulary the product uses to describe what users do.
75 
76**Event design principles:**
77 
78- **Verb + noun.** `signed_up`, `created_project`, `completed_checkout`. Past tense, snake_case.
79- **One event per discrete action.** Not "interacted_with_modal" - too vague. Specifically `opened_modal_X`, `closed_modal_X`, `confirmed_in_modal_X`.
80- **Properties capture context.** Each event has properties (key-value pairs) for context. `signed_up` has properties like `signup_method`, `referrer`, `plan`.
81- **Standardize property names.** `user_id` everywhere, not `userId` here and `id` there.
82- **Document everything.** A tracking plan that lives nowhere is a tracking plan no one follows.
83 
84**Event coverage:**
85 
86- All key user actions tracked
87- All conversion points tracked
88- All errors tracked
89- All page views tracked (with consistent properties)
90- All button clicks that matter (not all button clicks - that's noise)
91 
92**Anti-patterns:**
93 
94- 500+ events with no documentation
95- Inconsistent naming (`buttonClicked`, `Button Clicked`, `clicked_button`)
96- Property keys that vary across events
97- Events fired client-side that should be server-side (and vice versa)
98- PII in event properties (privacy issue and tooling issue)
99 
100### 3. Dashboards and reports
101 
102The interface between data and decisions.
103 
104**Dashboard design principles:**
105 
106- **One audience per dashboard.** Executive dashboard != product team dashboard. Different metrics, different cadence.
107- **One question per chart.** A chart should answer one question, not three.
108- **Annotations matter.** Note launches, experiments, holidays, outages. A spike means nothing without context.
109- **Context comparisons.** "10,000 signups this month" - compared to what? Last month, last year, target?
110- **Lead with the action.** What does this dashboard help someone decide?
111 
112**Common dashboard types:**
113 
114| Dashboard | Audience | Metrics | Cadence |
115|---|---|---|---|
116| Executive | Leadership | North star, top 3 KPIs, big-picture trends | Weekly review |
117| Product | Product team | Funnel metrics, feature adoption, retention | Daily / weekly |
118| Marketing | Marketing team | Acquisition by channel, CAC, attribution | Daily / weekly |
119| Operations | Ops / on-call | Performance, errors, capacity | Real-time |
120| Custom (per team) | Specific team | Their specific KPIs | Their cadence |
121 
122### 4. Attribution and segmentation
123 
124How to connect cause and effect.
125 
126**Attribution models:**
127 
128- **First-touch.** Credit the first interaction. Useful for awareness understanding.
129- **Last-touch.** Credit the final interaction before conversion. Default in many tools, often misleading.
130- **Linear.** Spread credit equally across touches. Avoids over-crediting any single channel.
131- **Time-decay.** Recent touches get more credit. Reasonable middle ground.
132- **Position-based.** First and last get more credit, middle touches less.
133- **Data-driven (algorithmic).** Tools like Google Analytics 4 use ML. Black box but increasingly the default.
134 
135For most businesses: pick one primary attribution model, use multiple secondary models for validation.
136 
137**Segmentation principles:**
138 
139- Segment by what causes different behavior, not by what's easy to track
140- Useful segments: source/channel, plan tier, geography, device, cohort (signup date)
141- Less useful: demographic guesses without behavioral validation
142 
143---
144 
145## The tracking plan document
146 
147Output of the analytics strategy. A living document.
148 
149**Structure:**
150 
1511. **Goals and KPIs.** Business objectives, north star, KPI hierarchy.
1522. **Event catalog.** Every event, with properties, when fired, why tracked.
1533. **User properties.** Persistent attributes (plan, signup_date, role).
1544. **Page taxonomy.** Page categories, page properties.
1555. **Naming conventions.** Snake_case, verb_noun, etc.
1566. **Implementation notes.** Client-side vs server-side, SDK details, sampling.
1577. **Privacy and compliance.** PII rules, consent handling, data retention.
1588. **Governance.** Who can add events, review process, change log.
159 
160---
161 
162## Workflow
163 
1641. **Define the questions.** What does the team need to answer? Working backward from questions to metrics works better than starting from metrics.
1652. **Define the north star.** One metric. Tested against the criteria above.
1663. **Build the KPI hierarchy.** Acquisition, activation, engagement, retention, monetization.
1674. **Audit existing tracking.** What's there? What's broken? What's missing?
1685. **Design the event taxonomy.** Cover the user journey. Document everything.
1696. **Implement with care.** Test each event. Verify properties. Catch issues in staging.
1707. **Build dashboards.** One per audience. Lead with action.
1718. **Establish review cadence.** Weekly business review, monthly KPI review, quarterly strategy review.
1729. **Govern.** Who adds events, who reviews, how changes propagate.
173 
174---
175 
176## Failure patterns
177 
178- **Tracking everything.** Noise overwhelms signal.
179- **Tracking nothing strategic.** Page views and that's it. Cannot answer real questions.
180- **No documentation.** Tracking plan lives in someone's head.
181- **Inconsistent naming.** Same concept, three names. Reports become detective work.
182- **Events fired but never reviewed.** Tracking debt accumulates.
183- **Dashboards no one looks at.** Built for vanity, not decisions.
184- **Single attribution model treated as truth.** All models lie. Some lie usefully.
185- **PII in events.** Compliance and tooling problems.
186- **Client-side only.** Critical business events should be server-side too. Ad blockers, network issues, edge cases lose client-side events.
187- **No connection to business outcomes.** Metrics exist in a silo, never connected to revenue, retention, or strategic decisions.
188 
189---
190 
191## Output format
192 
193Default output: a markdown tracking plan at `analytics-tracking-plan.md` plus a dashboard inventory.
194 
195Tracking plan structure:
196 
197```markdown
198# Tracking Plan
199 
200## North star metric
201[Definition, calculation, target]
202 
203## KPI hierarchy
204[Each KPI with definition, calculation, owner]
205 
206## Event catalog
207| Event | When fired | Properties | Owner | Status |
208|---|---|---|---|---|
209| user_signed_up | After successful signup form submit | source, plan, referrer | Marketing | Live |
210| project_created | When user clicks Create Project | project_type, template_used | Product | Live |
211| ... | | | | |
212 
213## User properties
214[List with definitions]
215 
216## Naming conventions
217[Rules]
218 
219## Privacy and compliance
220[Rules]
221 
222## Governance
223[Process]
224```
225 
226---
227 
228## Reference files
229 
230- [`references/event-taxonomy-template.md`](references/event-taxonomy-template.md) - Starter event catalog with patterns for common product types.
231 

Discussion

Alternatives

Also in Roadmap & prioritiesSee all 277 in Product →