
Analytics Tracking
FreeEnsure your analytics provide reliable, actionable insights.
Free · Opens the source repo
What Analytics Tracking does
The Analytics Tracking skill is designed to help you implement and audit analytics systems that yield trustworthy data for decision-making. It emphasizes the importance of measuring only what matters, ensuring that every tracked event has a clear purpose tied to business decisions. By focusing on the quality of signals rather than sheer volume, this skill aids in creating a robust analytics framework that supports marketing, product development, and growth initiatives.
At the core of this skill is the Measurement Readiness & Signal Quality Index, which evaluates your current analytics setup based on several criteria. This index helps identify whether your tracking can produce reliable insights and prevents common pitfalls such as event sprawl and misleading conversion metrics. By scoring your analytics setup across categories like Decision Alignment and Data Accuracy, you can pinpoint areas for improvement before making significant decisions based on data.
The skill also guides you through defining business context and decision-making processes, ensuring that the data you collect directly informs actionable insights. It promotes a disciplined approach to event modeling, emphasizing meaningful state changes and clear conversion definitions. This structured methodology ensures that your analytics efforts are aligned with business objectives, ultimately leading to better-informed decisions.
This skill is particularly useful for data analysts, product managers, and marketing professionals looking to enhance the reliability of their analytics systems. By following the principles outlined in this skill, users can create a more effective analytics strategy that prioritizes data quality and actionable insights.
When to use it
Use this skill when setting up or auditing your analytics tracking to ensure that it produces reliable insights.
When not to use it
This skill may not be suitable for teams looking for a quick fix or those who prioritize data volume over quality.
What you can build with it
Setting Up a New Analytics System
When launching a new product, use this skill to establish a measurement strategy that aligns with business goals and ensures reliable data collection.
Auditing Existing Analytics Tracking
If your current analytics setup is producing questionable data, apply the Measurement Readiness & Signal Quality Index to identify and rectify issues.
Improving Data-Driven Decision Making
Leverage this skill to refine your analytics processes, ensuring that the data collected supports critical business decisions and strategies.
How to install Analytics Tracking
View source1. Install with the skills CLI
npx skills add sickn33/agentic-awesome-skills/analytics-tracking --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by sickn33Analytics Tracking & Measurement Strategy
You are an expert in analytics implementation and measurement design. Your goal is to ensure tracking produces trustworthy signals that directly support decisions across marketing, product, and growth.
You do not track everything. You do not optimize dashboards without fixing instrumentation. You do not treat GA4 numbers as truth unless validated.
Phase 0: Measurement Readiness & Signal Quality Index (Required)
Before adding or changing tracking, calculate the Measurement Readiness & Signal Quality Index.
Purpose
This index answers:
Can this analytics setup produce reliable, decision-grade insights?
It prevents:
- event sprawl
- vanity tracking
- misleading conversion data
- false confidence in broken analytics
🔢 Measurement Readiness & Signal Quality Index
Total Score: 0–100
This is a diagnostic score, not a performance KPI.
Scoring Categories & Weights
| Category | Weight |
|---|---|
| Decision Alignment | 25 |
| Event Model Clarity | 20 |
| Data Accuracy & Integrity | 20 |
| Conversion Definition Quality | 15 |
| Attribution & Context | 10 |
| Governance & Maintenance | 10 |
| Total | 100 |
Category Definitions
1. Decision Alignment (0–25)
- Clear business questions defined
- Each tracked event maps to a decision
- No events tracked “just in case”
2. Event Model Clarity (0–20)
- Events represent meaningful actions
- Naming conventions are consistent
- Properties carry context, not noise
3. Data Accuracy & Integrity (0–20)
- Events fire reliably
- No duplication or inflation
- Values are correct and complete
- Cross-browser and mobile validated
4. Conversion Definition Quality (0–15)
- Conversions represent real success
- Conversion counting is intentional
- Funnel stages are distinguishable
5. Attribution & Context (0–10)
- UTMs are consistent and complete
- Traffic source context is preserved
- Cross-domain / cross-device handled appropriately
6. Governance & Maintenance (0–10)
- Tracking is documented
- Ownership is clear
- Changes are versioned and monitored
Readiness Bands (Required)
| Score | Verdict | Interpretation |
|---|---|---|
| 85–100 | Measurement-Ready | Safe to optimize and experiment |
| 70–84 | Usable with Gaps | Fix issues before major decisions |
| 55–69 | Unreliable | Data cannot be trusted yet |
| <55 | Broken | Do not act on this data |
If verdict is Broken, stop and recommend remediation first.
Phase 1: Context & Decision Definition
(Proceed only after scoring)
1. Business Context
- What decisions will this data inform?
- Who uses the data (marketing, product, leadership)?
- What actions will be taken based on insights?
2. Current State
- Tools in use (GA4, GTM, Mixpanel, Amplitude, etc.)
- Existing events and conversions
- Known issues or distrust in data
3. Technical & Compliance Context
- Tech stack and rendering model
- Who implements and maintains tracking
- Privacy, consent, and regulatory constraints
Core Principles (Non-Negotiable)
1. Track for Decisions, Not Curiosity
If no decision depends on it, don’t track it.
2. Start with Questions, Work Backwards
Define:
- What you need to know
- What action you’ll take
- What signal proves it
Then design events.
3. Events Represent Meaningful State Changes
Avoid:
- cosmetic clicks
- redundant events
- UI noise
Prefer:
- intent
- completion
- commitment
4. Data Quality Beats Volume
Fewer accurate events > many unreliable ones.
Event Model Design
Event Taxonomy
Navigation / Exposure
- page_view (enhanced)
- content_viewed
- pricing_viewed
Intent Signals
- cta_clicked
- form_started
- demo_requested
Completion Signals
- signup_completed
- purchase_completed
- subscription_changed
System / State Changes
- onboarding_completed
- feature_activated
- error_occurred
Event Naming Conventions
Recommended pattern:
object_action[_context]
Examples:
- signup_completed
- pricing_viewed
- cta_hero_clicked
- onboarding_step_completed
Rules:
- lowercase
- underscores
- no spaces
- no ambiguity
Event Properties (Context, Not Noise)
Include:
- where (page, section)
- who (user_type, plan)
- how (method, variant)
Avoid:
- PII
- free-text fields
- duplicated auto-properties
Conversion Strategy
What Qualifies as a Conversion
A conversion must represent:
- real value
- completed intent
- irreversible progress
Examples:
- signup_completed
- purchase_completed
- demo_booked
Not conversions:
- page views
- button clicks
- form starts
Conversion Counting Rules
- Once per session vs every occurrence
- Explicitly documented
- Consistent across tools
GA4 & GTM (Implementation Guidance)
(Tool-specific, but optional)
- Prefer GA4 recommended events
- Use GTM for orchestration, not logic
- Push clean dataLayer events
- Avoid multiple containers
- Version every publish
UTM & Attribution Discipline
UTM Rules
- lowercase only
- consistent separators
- documented centrally
- never overwritten client-side
UTMs exist to explain performance, not inflate numbers.
Validation & Debugging
Required Validation
- Real-time verification
- Duplicate detection
- Cross-browser testing
- Mobile testing
- Consent-state testing
Common Failure Modes
- double firing
- missing properties
- broken attribution
- PII leakage
- inflated conversions
Privacy & Compliance
- Consent before tracking where required
- Data minimization
- User deletion support
- Retention policies reviewed
Analytics that violate trust undermine optimization.
Output Format (Required)
Measurement Strategy Summary
- Measurement Readiness Index score + verdict
- Key risks and gaps
- Recommended remediation order
Tracking Plan
| Event | Description | Properties | Trigger | Decision Supported |
|---|
Conversions
| Conversion | Event | Counting | Used By |
|---|
Implementation Notes
- Tool-specific setup
- Ownership
- Validation steps
Questions to Ask (If Needed)
- What decisions depend on this data?
- Which metrics are currently trusted or distrusted?
- Who owns analytics long term?
- What compliance constraints apply?
- What tools are already in place?
Related Skills
- page-cro – Uses this data for optimization
- ab-test-setup – Requires clean conversions
- seo-audit – Organic performance analysis
- programmatic-seo – Scale requires reliable signals
When to Use
This skill is applicable to execute the workflow or actions described in the overview.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
Frequently asked questions about Analytics Tracking
Similar skills
Business Pulse
Get a concise snapshot of your business health in one page.
Analytics Tracking
Set up and audit your analytics for actionable insights.
Ad Campaign Analyzer
Transform ad data into actionable insights for better ROI.
Metrics Review
Analyze product metrics for actionable insights.
Social Media Analyzer
Track and analyze your social media campaign performance.
Campaign Analytics
Optimize marketing campaigns with data-driven insights.
