Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add LuuOW/meridian-mcp --skill analyticsgit clone --depth 1 https://github.com/LuuOW/meridian-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/luuow/meridian-mcp/analytics)<a href="https://agentmods.dev/skills/luuow/meridian-mcp/analytics"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/analytics.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00033 | $0.01852 |
| Opus 5 | $0.00016 | $0.00926 |
| Sonnet 5 | $0.00007 | $0.00370 |
| Haiku 4.5 | $0.00003 | $0.00185 |
Grade A, and why
analytics scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 207 lines — stays where its author put it; the contents beside it link to each section on GitHub.
analytics
Covers measurement, attribution, and reporting for growth systems: web analytics, conversion funnels, cohort analysis, and revenue tracking.
1) GA4 event taxonomy
// Standardised event naming: object_action
gtag('event', 'article_view', { article_slug, word_count, cluster });
gtag('event', 'email_signup', { source, form_id, article_slug });
gtag('event', 'purchase', { value, currency, product_id, funnel_stage });
gtag('event', 'outbound_click', { link_url, link_text, page_path });
gtag('event', 'scroll_depth', { percent_scrolled: 75, article_slug });
// Conversion events (mark as Key Events in GA4)
// email_signup, purchase, trial_start, demo_booked
2) Conversion funnel tracking
# Funnel stages — track at each transition
FUNNEL = [
("landing", "user hits any page"),
("engaged", "scroll > 60% or time > 90s"),
("intent", "visits pricing, about, or contact page"),
("signup", "email captured"),
("activated", "completes onboarding action"),
("converted", "purchase or subscription"),
("retained", "returns within 30 days"),
]
# Supabase funnel query
FUNNEL_QUERY = """
WITH events AS (
SELECT user_id, event_name, created_at
FROM analytics_events
WHERE created_at >= NOW() - INTERVAL '30 days'
)
SELECT
COUNT(DISTINCT CASE WHEN event_name = 'page_view' THEN user_id END) AS landing,
COUNT(DISTINCT CASE WHEN event_name = 'engaged' THEN user_id END) AS engaged,
COUNT(DISTINCT CASE WHEN event_name = 'email_signup' THEN user_id END) AS signup,
COUNT(DISTINCT CASE WHEN event_name = 'purchase' THEN user_id END) AS converted
FROM events;
"""
3) Attribution models
# First-touch: credit goes to first touchpoint
# Last-touch: credit goes to last touchpoint (GA4 default)
# Linear: equal credit to all touchpoints
# Time-decay: more credit to recent touchpoints
# Data-driven: ML-based (GA4 Pro only)
# Simple first/last-touch implementation
def attribute_conversion(touchpoints: list[dict], model: str = "linear") -> dict[str, float]:
if not touchpoints:
return {}
if model == "first_touch":
return {touchpoints[0]["source"]: 1.0}
if model == "last_touch":
return {touchpoints[-1]["source"]: 1.0}
if model == "linear":
weight = 1.0 / len(touchpoints)
result: dict[str, float] = {}
for t in touchpoints:
result[t["source"]] = result.get(t["source"], 0.0) + weight
return result
raise ValueError(f"Unknown model: {model}")
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 207 lines · 33 tokens per session scan A d103d7cb2bf8
analytics is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed 2d ago), licensed MIT. It adds 33 tokens to every session and 1,852 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
agent-analytics
Product analytics with your AI agent: set up consent-based tracking, read funnels, paths, retention, experiments, and context, then recommend the smallest growth action using the official Agent Analytics CLI.
conversion-tracker
Set up affiliate conversion tracking with UTM parameters and link tagging. Triggers on: "set up tracking", "create UTM links", "track my affiliate links", "tracking pixels", "click attribution", "organize my links", "UTM parameters", "tag my links", "campaign tracking", "link tracking setup", "prepare for launch"…
product-analytics
A/B test evaluation, cohort retention analysis, funnel metrics, and experiment-driven product decisions. Use when analyzing experiments, measuring feature adoption, diagnosing conversion drop-offs, or evaluating statistical significance of product changes.
analytics
Use when instrumenting product or web analytics — GA4/PostHog SDK wiring, event taxonomy, funnels, double-counted events, consent gating, PII scrubbing. NOT charting that data (that is dashboard), NOT choosing which metrics matter (that is kpi-framework), NOT experiment math (that is ab-testing), NOT cookie-policy…
landing-page-copy-writer
Writes the complete copy for a newsletter subscribe page — headline, subheadline, value proposition, social proof block, what-to-expect section, and call-to-action button text — optimised for conversion without resorting to hype or false urgency.
ga4-attribution-advisor
This skill should be used when the user asks to "choose an attribution model", "compare DDA vs last-click", "configure attribution windows", or mentions "cross-channel attribution", "first-click vs position-based", or "GA4 model comparison". Do NOT use for: conversion import to Google Ads (use ga4-conversion-import)…