analytics-consent-onboarding

A set of rules for using PostHog, a product-analytics service, with cookie consent and a guided first-use tour.

In plain words
What is it for?
Use it when adding event tracking, identifying signed-in users, managing essential, functional, and analytics cookie preferences, or starting an onboarding tour.
Why use it?
It keeps analytics from running before the user agrees to optional analytics cookies and defines how consent choices are stored. It also gives the app consistent events for understanding setup and workflow use.

Cursor rule for Claude Code

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 rules/eliornl/rolemule/analytics-consent-onboarding
Clone the repo
git clone --depth 1 https://github.com/eliornl/rolemule

Made for: Claude Code.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,109 The whole file, excluding the scripts and references it only reads on demand.
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.00000 $0.01109
Opus 5 $0.00000 $0.00554
Sonnet 5 $0.00000 $0.00222
Haiku 4.5 $0.00000 $0.00111

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

Security

Grade A, and why

analytics-consent-onboarding 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.

.claude/rules/analytics-consent-onboarding.mdc · 92 lines

How it starts

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

PostHog Analytics

// Track custom events
Analytics.track('custom_event', { property: 'value' });
Analytics.trackFeature('api_key_setup', 'clicked');

// User identification (automatic on login)
Analytics.identify(userId, { email });

// Workflow events (automatic)
Analytics.trackWorkflowStarted({ inputMethod: 'url' });
Analytics.trackWorkflowCompleted({ matchScore: 0.85 });

Analytics only fires if the user has accepted analytics cookies. Events queue until consent is given.

// Check before storing non-essential data
CookieConsent.hasConsent();  // true/false — accepts analytics cookies

// Get full preferences
CookieConsent.getPreferences();
// { essential: true, functional: false, analytics: false }

// Programmatic consent
CookieConsent.acceptAll();
CookieConsent.rejectAll();
CookieConsent.savePreferences({ functional: true, analytics: true });

Cookie types:

Type Required Purpose
Essential Always Auth, session, security tokens
Functional Optional User preferences, UI state
Analytics Optional PostHog event tracking

Onboarding Tour

Onboarding.start();    // start tour
Onboarding.reset();    // reset + show again
Onboarding.skip();     // skip tour

Tour auto-shows on first dashboard visit when localStorage.onboarding_completed is missing.

Returning users: if the key is missing but GET /api/v1/applications/stats/overview shows total_applications > 0, onboarding auto-completes silently (tour state is browser-local only — without this, clearing storage or switching browsers re-shows the tour).

Tour steps (conditional) — copy lives in ui/src/onboarding/steps.ts:

  • Welcome (always) — RoleMule + tagline One mule for every role.
  • Install Chrome Extension (always) — Analyze This Job + Match Form To Profile + load-unpacked
  • Set Up Your AI Provider (only when needsApiKey — user lacks has_credentials and Vertex is off) — Gemini / OpenAI / Anthropic / Ollama
  • Analyze Job Postings (always) — paste / PDF·TXT·DOCX / extension; five-agent workflow
  • Career Tools & Beyond (always — last step, "Next" becomes "Get Started ✓") — Optimize CV, Mock Session, Outreach, Career Tools, CLI (rolemule)

Read the full file on GitHub · 92 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 · 92 lines · 0 tokens per session scan A 3691630a42db

Subscribe to this mod's changes

analytics-consent-onboarding is a cursor rule published in the GitHub repository eliornl/rolemule (37 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,109 tokens. 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-30.

Related

Other cursor rules, from other repositories

cursorrules

Agent2 is a framework for building production AI agents with typed HTTP APIs. PydanticAI handles the agent loop. Agent2 handles everything else: API, auth, pause/resume, approvals, provider routing, knowledge search.

Artesiana/agent2 · 399 tokens

product-manager

Holistic product leader who owns the full product lifecycle — from discovery and strategy through roadmap, stakeholder alignment, go-to-market, and outcome measurement. Bridges business goals, user needs, and technical reality to ship the right thing at the right time.

Treevu-ai/cli-market-world · 5,350 tokens

api-tester

Expert API testing specialist focused on comprehensive API validation, performance testing, and quality assurance across all systems and third-party integrations.

Treevu-ai/cli-market-world · 23 tokens

developer-advocate

Expert developer advocate specializing in building developer communities, creating compelling technical content, optimizing developer experience (DX), and driving platform adoption through authentic engineering engagement. Bridges product and engineering teams with external developers.

Treevu-ai/cli-market-world · 38 tokens

architectural-and-structural-rules

The project follows a layered architecture with clear separation of concerns.

mrharishkumar/fastapi-cursor-boilerplate · 559 tokens

angular-20

This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.

angular/angular · 0 tokens