🎯

convex

🎯Skill

from gmickel/my-claude-skills

VibeIndex|
What it does

Guides developers through Convex backend development with best practices, patterns, and error prevention strategies.

πŸ“¦

Part of

gmickel/my-claude-skills(3 items)

convex

Installation

πŸ“‹ No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add gmickel/my-claude-skills --skill convex
7Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Convex backend development patterns, validators, indexes, actions, queries, mutations, file storage, scheduling, React hooks, and components. Use when writing Convex code, debugging Convex issues, or planning Convex architecture.

Overview

Provide comprehensive Convex development guidance to avoid common mistakes and ensure code compiles on first try.

Key rules (full details in references/guide.md):

Functions: Import from ./_generated/server, use query({ args, handler }) syntax

Indexes: Never use .filter() - use .withIndex(). Never define by_creation_time index

Actions: Add "use node"; at top, never use ctx.db - use ctx.runQuery/ctx.runMutation

Scheduler: Auth does NOT propagate - use internal functions

React: Never call hooks conditionally - use "skip" pattern

  1. Read references/guide.md for comprehensive Convex patterns
  2. Apply patterns to the specific task
  3. Verify against the checklist in section 18 of the guide

Always load: references/guide.md