convex

Routes general Convex requests to the appropriate project-specific Convex skill.

Updated May 28, 2026
One-click install
npx skills add https://github.com/mrisoli/pokerhouse --skill convex-mrisoli
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: convex
Source: https://github.com/mrisoli/pokerhouse/tree/main/packages/backend/.agents/skills/convex
Command: npx skills add https://github.com/mrisoli/pokerhouse --skill convex-mrisoli

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When working with Convex in this repository, it is not always obvious which specialized workflow applies to a given request, and the project may lack up-to-date Convex AI guidance. This Skill acts as a router that installs official Convex AI files and directs underspecified Convex tasks to the correct specialized skill. ## Core Features & Use Cases - AI Guidance Installation: Runs npx convex ai-files install to install or refresh the managed Convex AI files, with a fallback to the hosted convex_rules.txt. - Skill Routing: Directs requests to the right specialized skill, such as convex-quickstart for new projects, convex-setup-auth for authentication, convex-create-component for reusable components, convex-migration-helper for migrations, and convex-performance-audit for performance investigations. - Use Case: A developer asks for help with a vague Convex task in this repo. The Skill first ensures official Convex guidance is installed, then hands off to the matching specialized skill instead of guessing. ## Quick Start Ask the assistant to set up Convex AI guidance in this project and route my Convex request to the right specialized skill.

Frequently Asked Questions about convex

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

FAQPage Schema
How do I set up Convex AI guidance in my project?▼

Run npx convex ai-files install to install or refresh the managed Convex AI files in your project. This is the recommended way to get official Convex guidelines in place, following the setup described in the Convex AI docs.

Which Convex skill should I use for my task?▼

Match the skill to your goal: convex-quickstart for new projects, convex-setup-auth for authentication, convex-create-component for reusable components, convex-migration-helper for migrations, and convex-performance-audit for performance issues.

What if npx convex ai-files install is not available?▼

Use the fallback rules file hosted at convex.link/convex_rules.txt. However, the npx install command is preferred over copying rules by hand whenever possible, since it keeps guidance managed and current.

When should I not use the Convex routing skill?▼

Skip it when you have already named a specific Convex workflow or when another Convex skill obviously fits the request better. The routing skill exists only for general or underspecified Convex tasks.

Does the Convex routing skill implement backend features itself?▼

No, it only installs official Convex AI guidance and delegates to specialized skills. Actual implementation work, such as auth setup or migrations, is handled by the dedicated skill it routes to.