Operations

/convex

Use when working with Convex backend - dev server, deployment, function execution, data import/export. Wraps npx convex CLI. Covers convex, backend, serverless, functions, schema. NOT for: other databases (Supabase, Firebase, etc.), frontend-only work.

$ golems-cli skills install convex
Experimental
89% best pass rate
9 assertions
3 evals
8 workflows

Updated 2 weeks ago

Backend skill wrapping npx convex CLI. Routes to workflows for specific operations.

Project Detection

Run first to verify you're in a Convex project:

[ -d "convex" ] && echo "Convex project detected" || echo "ERROR: No convex/ directory found"

If no convex/ directory: Run npx convex init to initialize.


Quick Actions

What you want to doWorkflow
Start dev serverworkflows/dev.md
Deploy to productionworkflows/deploy.md
Run a Convex functionworkflows/run-function.md
Export dataworkflows/data-export.md
Import dataworkflows/data-import.md
Inspect/validate schemaworkflows/schema.md
Delete user and all dataworkflows/user-deletion.md
Fix errorsworkflows/troubleshooting.md

Available Scripts

Execute directly - they handle errors and edge cases:

ScriptPurposeUsage
scripts/dev.shStart dev server with auto-cleanupbash ~/.claude/commands/convex/scripts/dev.sh [--deployment <name>]
scripts/deploy.shDeploy to productionbash ~/.claude/commands/convex/scripts/deploy.sh [--1p] [--dry-run]
scripts/run-function.shExecute queries/mutations/actionsbash ~/.claude/commands/convex/scripts/run-function.sh api:funcName [--args '{}']
scripts/export-data.shExport database backupbash ~/.claude/commands/convex/scripts/export-data.sh [--path <file>]
scripts/import-data.shImport data (with safety prompts)bash ~/.claude/commands/convex/scripts/import-data.sh --path <file.zip>

Workflows

/convex:data-export/convex:troubleshooting/convex:user-deletion/convex:schema/convex:dev/convex:data-import/convex:run-function/convex:deploy