# analytics-integration > DataFast and Umami analytics integration. Event tracking, custom metrics, dashboards, and privacy-focused analytics. Use when: adding analytics, tracking events, setting up dashboards. - Author: abdullah1854 - Repository: abdullah1854/ClaudeSuperSkills - Version: 20251226002737 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-07 - Source: https://github.com/abdullah1854/ClaudeSuperSkills - Web: https://mule.run/skillshub/@@abdullah1854/ClaudeSuperSkills~analytics-integration:20251226002737 --- # analytics-integration DataFast and Umami analytics integration. Event tracking, custom metrics, dashboards, and privacy-focused analytics. Use when: adding analytics, tracking events, setting up dashboards. ## Metadata - **Version**: 1.0.0 - **Category**: api - **Source**: workspace ## Tags `analytics`, `tracking`, `umami`, `datafast`, `metrics`, `privacy` ## MCP Dependencies None specified ## Inputs - `provider` (string) (required): Provider: umami, datafast, plausible - `feature` (string) (optional): Feature: setup, events, custom ## Chain of Thought 1. Select analytics provider. 2. Generate setup code. 3. Add event tracking patterns. 4. Configure custom metrics. 5. Ensure privacy compliance. ## Workflow No workflow defined ## Anti-Hallucination Rules None specified ## Verification Checklist None specified ## Usage ```typescript // Execute via MCP Gateway: gateway_execute_skill({ name: "analytics-integration", inputs: { ... } }) // Or via REST API: // POST /api/code/skills/analytics-integration/execute // Body: { "inputs": { ... } } ``` ## Code ```typescript // Analytics Integration Skill const provider = inputs.provider || 'umami'; const analytics = { umami: `## Umami Analytics (Privacy-Focused) ### Setup (Next.js) \`\`\`typescript // app/layout.tsx import Script from 'next/script'; export default function RootLayout({ children }) { return ( \`\`\` ### Custom Events \`\`\`typescript // Track goal plausible('Signup', { props: { plan: 'pro' } }); \`\`\`` }; console.log(analytics[provider] || analytics.umami); ``` --- Created: Tue Dec 23 2025 00:31:32 GMT+0800 (Singapore Standard Time) Updated: Tue Dec 23 2025 00:31:32 GMT+0800 (Singapore Standard Time)