gmickel/my-claude-skills · Archived

convex

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.

First seen Jan 27, 2026

Installation

$ npx skills add gmickel/my-claude-skills --skill convex

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from gmickel/my-claude-skills.

npx skills add gmickel/my-claude-skills

Browse all from gmickel/my-claude-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 4
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,158 B
  • docs SUMMARY.md 243 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 10 installs

SKILL.md

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

<quick_reference> 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 bycreationtime 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 </quickreference>

<process>

  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

</process>

<requiredreading> Always load: references/guide.md </requiredreading>