convex-add

Adds backend capabilities to an existing Convex app via a served capability catalog.

Updated Sep 17, 2026
One-click install
npx skills add https://github.com/Tehzeeb07/CodeRush --skill convex-add-tehzeeb07
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: convex-add
Source: https://github.com/Tehzeeb07/CodeRush/tree/main/.agents/skills/convex-add
Command: npx skills add https://github.com/Tehzeeb07/CodeRush --skill convex-add-tehzeeb07

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Adding features like billing, crons, auth, search, or hosting to an existing Convex app normally requires manually finding the right component and wiring it up. This Skill automates that by consulting a live capability catalog with always-current procedures, so instructions never go stale. ## Core Features & Use Cases - Live Capability Catalog: Fetches the served catalog at basic-anteater-667.convex.site and matches the user's request against capability titles, summaries, and triggers. - Always-Current Procedures: Follows the fetched capability document's Procedure and Rules sections instead of relying on baked-in knowledge. - Graceful Fallback: If the catalog is unreachable or has no match, falls back to wiring @convex-dev/static-hosting for hosting requests or running the component search script for anything else. - Use Case: A developer types "/add billing" in their Convex project; the Skill fetches the billing capability doc and follows its current installation procedure, or falls back to installing the best-matching @convex-dev component. ## Quick Start Ask the assistant to add a capability such as billing, auth, or hosting to your current Convex app using the /add command.

Frequently Asked Questions about convex-add

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I add a capability like billing or auth to my Convex app?▼

Run the /add command followed by the capability name, such as /add billing. The Skill fetches the served Convex capability catalog, matches your request, and follows the current installation procedure from the capability document.

How do I add hosting to a Convex project?▼

Request hosting via /add hosting and the Skill checks the capability catalog first. If no catalog entry matches, it falls back to wiring the @convex-dev/static-hosting component and confirms the resulting URL.

What happens if the Convex capability catalog is unreachable?▼

The Skill never hard-fails on a catalog miss. It falls back to the legacy behavior: hosting requests wire @convex-dev/static-hosting, and other requests run the component search script to install the best-matching @convex-dev component.

Does convex-add work without network access?▼

No, fetching the capability catalog requires network access via curl or bash. If the sandbox blocks network calls, the Skill instructs you to re-run with network access enabled or auto-approve the request.

Can I hardcode which Convex component gets installed?▼

No, the Skill explicitly forbids hardcoding component mappings. It always uses the live CANDIDATES list from the search script or the served catalog procedure to select the best-matching component.