IonWarp logoIonWarp
Product agent

Analytics Review

Details

Runs on every pull request, on GitHub

Agent Prompt

Reviews GitHub PRs for missing analytics tracking events. Scans diff for user-facing interactions (form submissions, button clicks, navigation, API mutations) and posts CodeRabbit-style review comments with suggested instrumentation.

Ask for it
  • Review PR {number} for analytics
Sample Output

What a Analytics Review report looks like.

IonWarpbotcommented 2 min ago

IonWarp Review — PR #256

3 issues| 2 P1 1 P2
#SevIssueFile
1Click event missing on pricing CTApricing.tsx
2utm params dropped on signup redirectauth/signup.ts
3Page view fires twice on hash changeapp.tsx
app/pricing.tsx
88899091
+  
<button onClick={upgrade}>Upgrade to Pro</button><button onClick={() => { track("pricing_cta_click"); upgrade(); }}>  Upgrade to Pro</button>

CTA click missing analytics event · Analytics Review

The "Upgrade to Pro" button has no event. You will lose the pricing → signup conversion signal in PostHog.

Suggested fixAI fix prompt