What problem does it solve? Building a backend with Convex involves many distinct tasks—writing functions, adding auth or billing, migrating live data, monitoring production—and generic AI knowledge of Convex is often stale. This Skill acts as the central router that directs each Convex task to the correct specialized skill or to a served capability catalog that stays current without reinstalling anything. ## Core Features & Use Cases - Task Routing: Directs work to the right bundled skill—convex-expert for writing code under convex/, convex-quickstart for new apps, convex-add for new capabilities, convex-reviewer/convex-authz for hardening, and convex-monitor/convex-migrate/convex-cost for live operations. - Served Capability Catalog: Fetches always-current procedures from the hosted catalog for capabilities like billing, crons, auth, AI agents, search, email, and domains, with fallback to bundled procedures if the catalog is unreachable. - Full Lifecycle Coverage: Spans prototyping, feature additions, authorization audits, live-data migrations, cost analysis, and production error capture and self-healing. - Use Case: You want to add Stripe billing to your existing Convex app. This Skill routes you to convex-add, which matches the request against the served catalog and follows the current billing procedure. ## Quick Start Ask the assistant to add authentication to my Convex app and let it route to the appropriate Convex capability procedure.