$npx -y skills add waynesutton/convexskills --skill convexUmbrella skill for all Convex development patterns. Routes to specific skills like convex-functions, convex-realtime, convex-agents, etc.
| 1 | # Convex Development Skills |
| 2 | |
| 3 | This is an index skill for Convex development. Use specific skills for detailed guidance: |
| 4 | |
| 5 | ## Core Development |
| 6 | |
| 7 | | Skill | Command | Use When | |
| 8 | |-------|---------|----------| |
| 9 | | Functions | `/convex-functions` | Writing queries, mutations, actions | |
| 10 | | Schema | `/convex-schema-validator` | Defining database schemas and validators | |
| 11 | | Realtime | `/convex-realtime` | Building reactive subscriptions | |
| 12 | | HTTP Actions | `/convex-http-actions` | Webhooks and HTTP endpoints | |
| 13 | |
| 14 | ## Data & Storage |
| 15 | |
| 16 | | Skill | Command | Use When | |
| 17 | |-------|---------|----------| |
| 18 | | File Storage | `/convex-file-storage` | File uploads, serving, storage | |
| 19 | | Migrations | `/convex-migrations` | Schema evolution, data backfills | |
| 20 | |
| 21 | ## Advanced Patterns |
| 22 | |
| 23 | | Skill | Command | Use When | |
| 24 | |-------|---------|----------| |
| 25 | | Agents | `/convex-agents` | Building AI agents with tools | |
| 26 | | Cron Jobs | `/convex-cron-jobs` | Scheduled background tasks | |
| 27 | | Components | `/convex-component-authoring` | Reusable Convex packages | |
| 28 | |
| 29 | ## Security |
| 30 | |
| 31 | | Skill | Command | Use When | |
| 32 | |-------|---------|----------| |
| 33 | | Security Check | `/convex-security-check` | Quick security audit checklist | |
| 34 | | Security Audit | `/convex-security-audit` | Deep security review | |
| 35 | |
| 36 | ## Guidelines |
| 37 | |
| 38 | | Skill | Command | Use When | |
| 39 | |-------|---------|----------| |
| 40 | | Best Practices | `/convex-best-practices` | General patterns and guidelines | |
| 41 | |
| 42 | ## Quick Start |
| 43 | |
| 44 | For most tasks: |
| 45 | 1. Start with `/convex-best-practices` for general patterns |
| 46 | 2. Use `/convex-functions` for writing backend logic |
| 47 | 3. Use `/convex-schema-validator` for data modeling |
| 48 | 4. Use specific skills as needed for your use case |
| 49 | |
| 50 | ## Documentation |
| 51 | |
| 52 | - Primary: https://docs.convex.dev |
| 53 | - LLM-optimized: https://docs.convex.dev/llms.txt |