get-convex

117 mods across 6 repositories, 13k stars between them.

convex-expert

73

get-convex/convex-backend-skill

Agent

Convex backend specialist. Use this agent for any code inside a convex/ directory — function definitions, schemas, indexes, queries, mutations, actions, HTTP endpoints, cron jobs, file storage, auth wiring, and component installation. Knows the object-form function syntax, validator patterns, resource limits, and…

6 4d ago C 78 tokens

convex-reviewer

74

get-convex/convex-backend-skill

Agent

Convex code reviewer — security, auth, validators, performance, and pattern checks for code in a convex/ directory. Use to review or audit Convex functions before shipping.

6 4d ago A 40 tokens

quickstart

75

get-convex/convex-backend-skill

Command

Scaffold a new Convex app from a one-sentence idea and build it live — a Next.js + shadcn app with a floating Chef panel (progress feed, todo checklist, inline refinement questions, feature-request form), dev servers and error watchers already running.

6 4d ago A 54 tokens

SessionStart

76

get-convex/convex-backend-skill

Hook

Runs when a session starts, executing session-start.mjs and convex-freshness.mjs via node (2 commands). From get-convex/convex-backend-skill.

6 4d ago A tokens not measured

PreToolUse

77

get-convex/convex-backend-skill

Hook

Runs before the agent uses a tool for Write, Edit and MultiEdit tool calls, executing convex-lint.mjs via node. From get-convex/convex-backend-skill.

6 4d ago A tokens not measured

Stop

78

get-convex/convex-backend-skill

Hook

Runs when the agent finishes a response, executing convex-typecheck.mjs via node. From get-convex/convex-backend-skill.

6 4d ago A tokens not measured

add

79

get-convex/convex-backend-skill

Skill Claude CodeCodex

Add a capability to the CURRENT Convex app — consults the served Convex capability catalog for always-current procedures (billing, crons, auth, agent, search, …); falls back to built-in hosting or @convex-dev component search. TRIGGER when the user runs /add, or asks to add hosting/publishing or any backend capability…

6 4d ago C 79 tokens

agent

80

get-convex/convex-backend-skill

Skill Claude CodeCodex

Add an AI agent / chatbot / RAG backend on Convex with @convex-dev/agent (durable threads, messages, tools, vector search). TRIGGER when the user wants an AI assistant/chatbot/agent or 'chat with my docs' feature. Calls models through the Convex AI Gateway — no provider key to manage.

6 4d ago A 71 tokens

auth

81

get-convex/convex-backend-skill

Skill Claude CodeCodex

Add authentication to the current Convex + web app — passkeys by default (OAuth/password optional), wired end to end incl. the auth.config.ts that's the #1 auth footgun. TRIGGER when the user wants login / sign-in / accounts / passkeys / OAuth for an existing app.

6 4d ago A 62 tokens

billing

82

get-convex/convex-backend-skill

Skill Claude CodeCodex

Add Stripe billing/payments/subscriptions to a Convex app via @convex-dev/stripe — checkout action, auto-verified webhook, server-side subscription gating. TRIGGER when the user wants payments/billing/subscriptions/a paywall/Stripe.

6 4d ago A 52 tokens

convex-authz

83

get-convex/convex-backend-skill

Skill Claude CodeCodex

Audit and harden a Convex app's authorization: identity-from-arg impersonation, missing per-document ownership checks, public queries leaking data by a client-supplied id, and writes into a parent/container the caller doesn't own. Scans for the 4 shapes, applies requireIdentity/requireOwner, verifies with tsc. TRIGGER…

6 4d ago A 103 tokens

crons

84

get-convex/convex-backend-skill

Skill Claude CodeCodex

Set up recurring scheduled jobs (crons) on Convex — digests, cleanups, polling, retries. TRIGGER when the user wants a recurring/scheduled task ('every day/hour', cron, periodic cleanup). Targets internal functions, idempotent handlers.

6 4d ago A 56 tokens

design

85

get-convex/convex-backend-skill

Skill Claude CodeCodex

Design and build reactive, type-safe, production-grade backends on Convex. Covers schema, queries/mutations/actions, indexes, auth, file storage, scheduling, real-time multiplayer, mobile backends, and LLM/agent workflows on Convex's one-platform stack.

6 4d ago C 57 tokens

domains

86

get-convex/convex-backend-skill

Skill Claude CodeCodex

Wire a domain the user ALREADY OWNS (GoDaddy/Namecheap/Cloudflare/…) to their Convex app: exact DNS records, custom-domain attachment, auth-origin rebind. TRIGGER when the user owns a domain and wants it pointing at their app ('point my domain at this', 'use my own domain', 'set up example.com'). Never asks for…

6 4d ago A 81 tokens

env

87

get-convex/convex-backend-skill

Skill Claude CodeCodex

Set + wire deployment env vars / secrets (API keys) for a Convex app — stored in Convex env, read in actions, never hardcoded. TRIGGER when the user needs an API key/secret/env var ('add my OpenAI key', 'set an env var').

6 4d ago A 60 tokens

get-convex/convex-backend-skill

Skill Claude CodeCodex

Send THIS coding session's transcript (Claude Code or Codex) to the Convex quickstart backend (anteater) for an AI post-mortem that improves the whole system — the runbook, bootstrap script, and skills. Use after a quickstart run (success or failure), or whenever the user wants to "send feedback", "report how that…

6 4d ago C 89 tokens

labs-quickstart

89

get-convex/convex-backend-skill

Skill Claude CodeCodex

LABS — the FULL Convex quickstart: scaffold a Next.js + shadcn app from one sentence with passkey sign-in and an in-app feedback panel pre-baked, build it live, then PUBLISH to a public convex.app URL (with the user's confirmation).

6 4d ago C 61 tokens

migrate

90

get-convex/convex-backend-skill

Skill Claude CodeCodex

Safely migrate the schema + backfill data on a deployed Convex app with @convex-dev/migrations. TRIGGER when changing the schema on a live app, backfilling data, or after a schema-validation error from a change. SKIP a fresh local app.

6 4d ago A 59 tokens

quickstart

91

get-convex/convex-backend-skill

Skill Claude CodeCodex

Scaffold a brand-new Convex app from a one-sentence idea and build it live — a running Next.js + shadcn app with convex dev + next dev and error watchers already armed, going from idea to running app in under a minute (locally).

6 4d ago B 62 tokens

seed

92

get-convex/convex-backend-skill

Skill Claude CodeCodex

Seed the Convex database with starter/fixture data or import an existing dataset (CSV/JSON). TRIGGER when the user wants sample/seed data or to import a dataset into Convex. Idempotent, schema-matching.

6 4d ago A 49 tokens

suggest

93

get-convex/convex-backend-skill

Skill Claude CodeCodex

Proactively suggest the right Convex component when the user hand-rolls what already exists: setInterval polling → crons, counter increments → sharded-counter, .collect() counts → aggregate, email → resend, DB-counter rate limiting → rate-limiter, uploads → storage, search, presence, multi-step actions → workflow…

6 4d ago A 107 tokens

test

94

get-convex/convex-backend-skill

Skill Claude CodeCodex

Generate tests for Convex functions with convex-test (queries/mutations/auth/scheduling, in-memory). TRIGGER when the user wants tests / a test suite for their Convex backend / 'how do I test this'.

6 4d ago A 46 tokens

workflow

95

get-convex/convex-backend-skill

Skill Claude CodeCodex

Build a durable multi-step pipeline on Convex where each step runs in order and is retried independently on failure (transcribe→summarize→email, ETL, order fulfillment, any 'do A then B then C, retry each' job). Use @convex-dev/workflow — do NOT hand-roll a chain of scheduler calls or a custom jobs table. TRIGGER on…

6 4d ago A 97 tokens

convex-plugin

96

get-convex/convex-codex-plugin

MCP server Claude CodeCodexCursor +2

MCP server "convex-plugin" as configured in get-convex/convex-codex-plugin. Runs mcp/convex-monitor-mcp.mjs with node.

5 4d ago A tokens not measured