Analytics audit
Skill AtulPurohit/Antigravity-Awesome-Skills/skills/analytics-audit
Installable GitHub library of 300+ professional agentic skills for Claude Code, Antigravity IDE, Gemini CLI, Cursor, and Copilot. Features a custom NPX installer, 9 stack-specific bundles, validation schemas, security auditing, and an interactive catalog explorer app.
npx -y skills add AtulPurohit/Antigravity-Awesome-Skills --skill analytics-auditAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 26 days oldThe repository was created 26 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Audit analytics implementations for tracking gaps and data quality issues.
SKILL.md
2.0 KB, as published. Nobody here has run it
Analytics Auditor
Purpose
Ensure business decisions are based on complete, accurate analytics data.
Audit Checklist
Coverage Audit
// Required events for SaaS product
const REQUIRED_EVENTS = [
// Acquisition
'page_view', 'utm_click', 'sign_up', 'sign_in',
// Activation
'onboarding_step_started', 'onboarding_step_completed', 'activation_event',
// Engagement
'feature_used', 'session_started', 'search_performed',
// Revenue
'upgrade_clicked', 'checkout_started', 'payment_completed', 'subscription_cancelled',
// Retention
'return_visit', 'notification_clicked',
];
Data Quality SQL
-- Check for event volume anomalies
SELECT
DATE(created_at) AS date,
event_name,
COUNT(*) AS count,
LAG(COUNT(*)) OVER (PARTITION BY event_name ORDER BY DATE(created_at)) AS prev_day,
ROUND((COUNT(*) - LAG(COUNT(*)) OVER (PARTITION BY event_name ORDER BY DATE(created_at)))::numeric
/ NULLIF(LAG(COUNT(*)) OVER (PARTITION BY event_name ORDER BY DATE(created_at)), 0) * 100, 1) AS pct_change
FROM analytics_events
WHERE created_at >= NOW() - INTERVAL '30 days'
GROUP BY 1, 2
HAVING ABS(pct_change) > 50 -- Flag 50%+ day-over-day swings
ORDER BY 1 DESC, ABS(pct_change) DESC;
-- Missing user properties
SELECT COUNT(*) FILTER (WHERE user_id IS NULL) / COUNT(*)::float AS pct_anonymous
FROM analytics_events
WHERE event_name = 'purchase_completed';
Outputs
- Analytics coverage report
- Data quality test queries
- Implementation gap priority list
- Analytics governance documentation
- Data validation CI tests