What problem does it solve? Adding backend capabilities like billing, crons, auth, search, or hosting to an existing Convex app normally requires manually finding the right component and wiring it up, which is error-prone and quickly outdated. ## Core Features & Use Cases - Live Capability Catalog: Fetches the served Convex capability catalog first so procedures stay current without re-releasing the skill. - Automatic Fallback: Falls back to the legacy /add-hosting flow or the /add-component search script when the catalog is unreachable or has no match. - Component Installation: Reads the CANDIDATES list from the search script, installs the best-matching @convex-dev component, and wires it per its README. - Use Case: A developer types /add billing in their Convex project; the skill matches the billing entry in the catalog, fetches its procedure doc, and follows the steps to wire Stripe billing into the app. ## Quick Start Ask the assistant to add a capability such as hosting or billing to your current Convex app, for example by running /add hosting.