PixelPilot uiux-analytics-setup.instructions.md

A setup guide for Sentry error tracking, PostHog product analytics, and Google Analytics 4 web analytics. It also explains how to request user consent before collecting analytics data.

In plain words
What is it for?
Use it to configure error reporting, product-usage measurement, website analytics, environment variables, cookie consent, and accessible animated feedback.
Why use it?
It helps teams add measurement while protecting privacy and avoiding common mistakes such as loading scripts before consent or exposing secret keys in source code.

Instructions file for GitHub Copilot

Install

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.

agentmods
npx agentmods add instructions/dev-lou/pixelpilot/uiux-analytics-setup
Clone the repo
git clone --depth 1 https://github.com/dev-lou/PixelPilot

Made for: GitHub Copilot.

Per session 3,593 This file is loaded in full into every session.
When invoked 3,593 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.03593 $0.03593
Opus 5 $0.01796 $0.01796
Sonnet 5 $0.00719 $0.00719
Haiku 4.5 $0.00359 $0.00359

Measured yesterday against content hash 1be765329068, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

PixelPilot uiux-analytics-setup.instructions.md 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 yesterday.

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.

vscode/.github/instructions/uiux-analytics-setup.instructions.md · 608 lines

How it starts

The opening of the file, as written. The whole thing — 608 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Analytics Setup Skill

Configure error tracking, product analytics, and web analytics with proper consent management.


CRITICAL RULES

  1. Never load analytics scripts before user consent (GDPR/CCPA).
  2. Store API keys in .env — never hardcode.
  3. Use design tokens for any error UI (toasts, banners).
  4. Respect prefers-reduced-motion in any animated feedback.

ENVIRONMENT VARIABLES

# .env (never commit this file)

# Sentry
SENTRY_DSN=https://[email protected]/xxx
SENTRY_ENVIRONMENT=production
SENTRY_RELEASE=1.0.0

# PostHog
POSTHOG_KEY=phc_xxxxxxxxxxxxxxxxxx
POSTHOG_HOST=https://app.posthog.com

# Google Analytics 4
GA_MEASUREMENT_ID=G-XXXXXXXXXX

1. SENTRY (Error Tracking)

Installation

npm install @sentry/browser
# Or for frameworks:
npm install @sentry/react @sentry/nextjs @sentry/vue

Vanilla JS Setup

// sentry.js
import * as Sentry from '@sentry/browser';

export function initSentry() {
  // Only init if user consented and DSN exists
  const hasConsent = localStorage.getItem('analytics-consent') === 'true';
  const dsn = import.meta.env.VITE_SENTRY_DSN; // or process.env
  
  if (!hasConsent || !dsn) {
    console.log('Sentry: Skipped (no consent or DSN)');
    return;
  }

  Sentry.init({
    dsn,
    environment: import.meta.env.VITE_SENTRY_ENVIRONMENT || 'development',
    release: import.meta.env.VITE_SENTRY_RELEASE,
    
    // Performance monitoring (optional)
    integrations: [
      Sentry.browserTracingIntegration(),
    ],
    tracesSampleRate: 0.1, // 10% of transactions
    
    // Filter out noisy errors
    ignoreErrors: [
      'ResizeObserver loop limit exceeded',
      'Non-Error promise rejection',
      /Loading chunk \d+ failed/,
    ],
    
    // Sanitize sensitive data
    beforeSend(event) {
      // Remove PII from breadcrumbs
      if (event.breadcrumbs) {
        event.breadcrumbs = event.breadcrumbs.map(crumb => {
          if (crumb.data?.url) {
            crumb.data.url = sanitizeUrl(crumb.data.url);
          }
          return crumb;
        });
      }
      return event;
    }
  });

  // Set user context (anonymized)
  Sentry.setUser({
    id: getAnonymousId(), // Hash of user ID, not actual ID
  });
}

function sanitizeUrl(url) {
  try {
    const parsed = new URL(url);
    // Remove sensitive query params
    ['token', 'key', 'password', 'secret'].forEach(param => {
      parsed.searchParams.delete(param);
    });
    return parsed.toString();
  } catch {
    return '[invalid-url]';
  }
}

Read the full file on GitHub · 608 lines

Changes

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.

  1. yesterday First seen · 608 lines · 3,593 tokens per session scan A 1be765329068

Subscribe to this mod's changes

PixelPilot uiux-analytics-setup.instructions.md is an instructions file published in the GitHub repository dev-lou/PixelPilot (2 stars, last pushed 4mo ago), licensed MIT. It adds 3,593 tokens to every session, about $0.0180 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.