analytics
Installation
SKILL.md
Analytics Instrumentation
Add analytics events to Sentry's frontend UI using established patterns.
Answering "How Many People Do X?"
When the user asks about usage, adoption, or interaction counts for a feature:
- Find the event: search Amplitude first (fastest), fall back to grepping the codebase.
- If the Amplitude MCP is connected, query the data directly and report results.
- If no matching event exists, tell the user the event is not tracked — then use
AskUserQuestionto ask whether they want to instrument it. Do not proceed to instrumentation without explicit confirmation.
Read references/amplitude-mcp.md for the full discovery and querying workflow.
Before Any Change: Search First
NEVER create a new event without checking if one already exists.