What problem does it solve? Static code review can only guess at performance problems, while a live Convex deployment already knows which functions hit read limits, scan too many bytes, or suffer OCC write contention. This Skill reads the deployment's own 72-hour insight events and turns each one into an evidence-backed, root-caused finding with a concrete fix. ## Core Features & Use Cases - Runtime insight analysis: Reads typed 72h health events (documentsReadLimit, bytesReadThreshold, occRetried, occFailedPermanently) via the official Convex MCP tools. - Code-level root cause: Traces each event to the exact function and line, identifying unindexed filters, missing pagination, or read-modify-write hotspots. - Structured findings: Emits findings with severity, evidence, and fix capability on a findings bus so fixers can be dispatched. - Use Case: Your messages:list query read 4.2MB from the messages table 31 times yesterday. The advisor pinpoints the missing index, recommends .withIndex or .paginate, and applies the fix on confirmation. ## Quick Start Ask the advisor to check my Convex deployment's recent insights and root-cause any performance or contention issues it finds.