What problem does it solve? Developers running Convex apps need to catch dev errors, production failures, and feature requests as they happen, but manually polling logs and dashboards is slow and easy to miss. This Skill blocks on the next typed event and returns it for immediate triage or fixing. ## Core Features & Use Cases - Blocking Event Wait: Calls wait_for_event with project directory, event kinds, and timeout to race local error logs, deployment subscriptions, and Sentinel prod-error rows, returning the first to fire. - Typed Event Handling: Decodes and fixes convex_error/next_error events, triages prod_error events via Sentinel, builds on feature_request events, and loops on quiet heartbeats. - Poll-Loop Fallback: Where a harness lacks blocking MCP (e.g., Copilot cloud), it runs a poll loop with the same versioned event contract. - Use Case: While developing a Convex app, let the agent block on the next error event; when a runtime error fires, it is decoded and fixed automatically without you watching the terminal. ## Quick Start Watch my Convex project for the next error or feature request and react to it when it fires.