What problem does it solve? Building a backend involves choosing and correctly wiring a database, server functions, auth, scheduling, storage, and realtime sync, and generic AI knowledge of Convex is often stale. This Skill acts as the entry point for Convex work, routing each request to the right specialized procedure so the generated TypeScript backend code typechecks and works on the first try. ## Core Features & Use Cases - Task Routing: Directs work to bundled convex-* skills such as convex-expert for writing functions, convex-quickstart for new apps, convex-add for capabilities like auth, billing, crons, and AI agents, and convex-reviewer or convex-authz for audits. - Served Capability Catalog: Fetches an always-current catalog of capability procedures from a hosted endpoint, so new capabilities are available without updating the Skill. - Lifecycle Coverage: Supports the full app lifecycle from prototyping and schema migrations on live data to production error monitoring, cost analysis, and self-healing fix PRs. - Use Case: You want to add Stripe billing to an existing Convex app. The Skill routes to convex-add, which matches billing in the served catalog and follows the current procedure for checkout, webhook, and gating setup. ## Quick Start Ask the agent to add authentication to my Convex app or scaffold a new full-stack Convex project from a one-sentence idea.