
Convex Quickstart
- 92.5k installs
- 41 repo stars
- Updated July 13, 2026
- get-convex/agent-skills
Convex-quickstart is an agent skill that initializes new Convex backend projects or integrates Convex into existing applications.
About
Quickstart skill for initializing new Convex projects or adding Convex to existing applications. Guides through project setup, database configuration, and authentication.
- Start new Convex projects or add to existing applications
- Guided setup for database, auth, and queries
- Works with Cursor, VS Code, Claude Code, Windsurf, Codex
Convex Quickstart by the numbers
- 92,491 all-time installs (skills.sh)
- +4,627 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #6 of 4,386 Backend & APIs skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
convex-quickstart capabilities & compatibility
- Capabilities
- api development · backend setup
- Use cases
- api development
- IDEs
- vscode · cursor ide · jetbrains · zed
- Pricing
- Free
npx skills add https://github.com/get-convex/agent-skills --skill convex-quickstartAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 92.5k |
|---|---|
| repo stars | ★ 41 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 13, 2026 |
| Repository | get-convex/agent-skills ↗ |
How do you add Convex to a new app?
Quickstart skill for initializing new Convex projects or adding Convex to existing applications. Guides through project setup, database configuration, and authentication.
Who is it for?
Getting started with Convex, setting up new projects, or adding Convex to an existing app
Skip if: Repos that already have `convex/` installed or projects needing only auth additions—use convex-setup-auth instead.
When should I use this skill?
Starting a new Convex project or adding Convex to an existing application
What you get
A `convex/` directory, installed dependencies, configured environment variables, and a running `npx convex dev` backend linked to the frontend.
- convex/ directory
- configured .env variables
- running convex dev backend
By the numbers
- Uses `npm create convex@latest` for project scaffolding
- First backend dev session via `npx convex dev`
Files
Convex Quickstart
Set up a working Convex project as fast as possible.
When to Use
- Starting a brand new project with Convex
- Adding Convex to an existing React, Next.js, Vue, Svelte, or other app
- Scaffolding a Convex app for prototyping
When Not to Use
- The project already has Convex installed and
convex/exists - just start
building
- You only need to add auth to an existing Convex app - use the
convex-setup-auth skill
Workflow
1. Determine the starting point: new project or existing app 2. If new project, pick a template and scaffold with npm create convex@latest 3. If existing app, install convex and wire up the provider 4. Run npx convex dev --once to provision a local anonymous deployment, push the current convex/ code, typecheck it, and regenerate types — all in one shot, exiting cleanly. The output tells the agent whether the schema and functions are valid. 5. Ask the user (or, for cloud agents, start in the background) npm run dev — Convex templates wire the watcher and the frontend into a single command. If the project has no combined dev script, use npx convex dev for the watcher and run the frontend separately. 6. Verify the setup works
Path 1: New Project (Recommended)
Use the official scaffolding tool. It creates a complete project with the frontend framework, Convex backend, and all config wired together.
Pick a template
| Template | Stack |
|---|---|
react-vite-shadcn | React + Vite + Tailwind + shadcn/ui |
nextjs-shadcn | Next.js App Router + Tailwind + shadcn/ui |
react-vite-clerk-shadcn | React + Vite + Clerk auth + shadcn/ui |
nextjs-clerk | Next.js + Clerk auth |
nextjs-convexauth-shadcn | Next.js + Convex Auth + shadcn/ui |
nextjs-lucia-shadcn | Next.js + Lucia auth + shadcn/ui |
bare | Convex backend only, no frontend |
If the user has not specified a preference, default to react-vite-shadcn for simple apps or nextjs-shadcn for apps that need SSR or API routes.
You can also use any GitHub repo as a template:
npm create convex@latest my-app -- -t owner/repo
npm create convex@latest my-app -- -t owner/repo#branchScaffold the project
Always pass the project name and template flag to avoid interactive prompts:
npm create convex@latest my-app -- -t react-vite-shadcn
cd my-app
npm installThe scaffolding tool creates files but does not run npm install, so you must run it yourself.
To scaffold in the current directory (if it is empty):
npm create convex@latest . -- -t react-vite-shadcn
npm installProvision the deployment and push code
Run this yourself — it is a one-shot command that exits cleanly:
npx convex dev --onceIn a non-TTY environment (which is true for almost every agent run), this:
- Provisions an _anonymous_ local Convex backend bound to
127.0.0.1. No
browser login, no team/project prompts.
- Writes
CONVEX_DEPLOYMENTand the framework's*_CONVEX_URLvariables to
.env.local.
- Generates
convex/_generated/. - Pushes the current
convex/code to the deployment, typechecks it, and
validates the schema. The agent reads this output to find out if the code it just wrote is broken.
To be explicit (recommended), set CONVEX_AGENT_MODE=anonymous so the behavior does not depend on TTY detection:
CONVEX_AGENT_MODE=anonymous npx convex dev --onceThe deployment lives under ~/.convex/ and persists across runs. Re-running convex dev --once after editing convex/ files is the agent's main feedback loop while the user-launched npm run dev is not in use.
If the template's package.json defines a predev script (Convex Auth templates and similar do), npm run predev runs convex init plus any one-time setup (e.g. minting auth keys). Use it _in addition to_ convex dev --once when present — predev handles the one-time setup, convex dev --once pushes and validates the code.
Start the dev loop
In most Convex templates, npm run dev runs both the Convex watcher and the frontend dev server together (typically convex dev --start 'vite --open' or the Next.js equivalent). That is what the user should run.
npm run devIf the project does not have a combined dev script — e.g. the bare template, or an existing app where you haven't wired the frontend dev server into Convex's --start flag — the user can run the Convex watcher directly:
npx convex devnpx convex dev is the same long-running watcher npm run dev invokes under the hood; it just doesn't start the frontend. Use it when there is no frontend, or when the user prefers to run the frontend in a separate terminal.
Either way, the agent should not invoke the watcher in the foreground because it does not exit. Two options:
- Local development (user is at the keyboard): ask the user to run
npm run dev (or npx convex dev) in a terminal. The deployment provisioned by convex dev --once above is already selected, so the watcher picks up immediately with no prompts.
- Cloud or headless agents: start
npm run dev(ornpx convex dev) in the
background.
Vite apps serve on http://localhost:5173, Next.js on http://localhost:3000.
What you get
After scaffolding, the project structure looks like:
my-app/
convex/ # Backend functions and schema
_generated/ # Auto-generated types (check this into git)
schema.ts # Database schema (if template includes one)
src/ # Frontend code (or app/ for Next.js)
package.json
.env.local # CONVEX_URL / VITE_CONVEX_URL / NEXT_PUBLIC_CONVEX_URLThe template already has:
ConvexProviderwired into the app root- Correct env var names for the framework
- Tailwind and shadcn/ui ready (for shadcn templates)
- Auth provider configured (for auth templates)
Proceed to adding schema, functions, and UI.
Path 2: Add Convex to an Existing App
Use this when the user already has a frontend project and wants to add Convex as the backend.
Install
npm install convexProvision and push
Run npx convex dev --once yourself to provision a local anonymous deployment, write .env.local, generate types, push the current convex/ code, and typecheck it. This is one-shot and exits:
npx convex dev --onceThe output tells you whether the schema and functions are valid — use it as your feedback loop while iterating.
Then ask the user to start the watcher (or, for cloud/headless agents, start it in the background). You have two options:
- Wire Convex into `npm run dev` — change the existing app's
devscript to
convex dev --start '<existing dev command>'. That's the standard pattern Convex templates use; the user then runs a single npm run dev to start both.
- Run them separately — leave
npm run devfor the frontend and tell the
user to run npx convex dev in a second terminal for the Convex watcher.
See "Start the dev loop" above for why the agent should not run the watcher in the foreground.
Wire up the provider
The Convex client must wrap the app at the root. The setup varies by framework.
Create the ConvexReactClient at module scope, not inside a component:
// Bad: re-creates the client on every render
function App() {
const convex = new ConvexReactClient(
import.meta.env.VITE_CONVEX_URL as string,
);
return <ConvexProvider client={convex}>...</ConvexProvider>;
}
// Good: created once at module scope
const convex = new ConvexReactClient(import.meta.env.VITE_CONVEX_URL as string);
function App() {
return <ConvexProvider client={convex}>...</ConvexProvider>;
}React (Vite)
// src/main.tsx
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import { ConvexProvider, ConvexReactClient } from "convex/react";
import App from "./App";
const convex = new ConvexReactClient(import.meta.env.VITE_CONVEX_URL as string);
createRoot(document.getElementById("root")!).render(
<StrictMode>
<ConvexProvider client={convex}>
<App />
</ConvexProvider>
</StrictMode>,
);Next.js (App Router)
// app/ConvexClientProvider.tsx
"use client";
import { ConvexProvider, ConvexReactClient } from "convex/react";
import { ReactNode } from "react";
const convex = new ConvexReactClient(process.env.NEXT_PUBLIC_CONVEX_URL!);
export function ConvexClientProvider({ children }: { children: ReactNode }) {
return <ConvexProvider client={convex}>{children}</ConvexProvider>;
}// app/layout.tsx
import { ConvexClientProvider } from "./ConvexClientProvider";
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>
<ConvexClientProvider>{children}</ConvexClientProvider>
</body>
</html>
);
}Other frameworks
For Vue, Svelte, React Native, TanStack Start, Remix, and others, follow the matching quickstart guide:
Environment variables
The env var name depends on the framework:
| Framework | Variable |
|---|---|
| Vite | VITE_CONVEX_URL |
| Next.js | NEXT_PUBLIC_CONVEX_URL |
| Remix | CONVEX_URL |
| React Native | EXPO_PUBLIC_CONVEX_URL |
npx convex dev writes the correct variable to .env.local automatically.
Agent Mode
CONVEX_AGENT_MODE=anonymous forces an unauthenticated local backend. It is already the implicit default for any non-TTY run of npx convex init or npx convex dev, but set it explicitly so the behavior does not depend on TTY detection:
CONVEX_AGENT_MODE=anonymous npx convex dev --onceUse it for:
- Any AI coding agent (local or cloud).
- CI-like setup scripts.
- Cases where the user is logged in but you do not want to touch their personal
dev deployment.
The resulting backend runs on 127.0.0.1 and is not associated with any team or project until the user later claims it via npx convex login and the npx convex deployment commands.
Verify the Setup
After setup, confirm everything is working:
1. npx convex dev --once exited without errors (deployment provisioned, code pushed, schema validated, typecheck clean) 2. The convex/_generated/ directory exists and has api.ts and server.ts 3. .env.local contains a CONVEX_DEPLOYMENT value and the framework's *_CONVEX_URL variable 4. (If applicable) npm run dev (or npx convex dev for the watcher alone) is running without errors in another terminal or in the background
Writing Your First Function
Once the project is set up, create a schema and a query to verify the full loop works.
convex/schema.ts:
import { defineSchema, defineTable } from "convex/server";
import { v } from "convex/values";
export default defineSchema({
tasks: defineTable({
text: v.string(),
completed: v.boolean(),
}),
});convex/tasks.ts:
import { query, mutation } from "./_generated/server";
import { v } from "convex/values";
export const list = query({
args: {},
handler: async (ctx) => {
return await ctx.db.query("tasks").collect();
},
});
export const create = mutation({
args: { text: v.string() },
handler: async (ctx, args) => {
await ctx.db.insert("tasks", { text: args.text, completed: false });
},
});Use in a React component (adjust the import path based on your file location relative to convex/):
import { useQuery, useMutation } from "convex/react";
import { api } from "../convex/_generated/api";
function Tasks() {
const tasks = useQuery(api.tasks.list);
const create = useMutation(api.tasks.create);
return (
<div>
<button onClick={() => create({ text: "New task" })}>Add</button>
{tasks?.map((t) => (
<div key={t._id}>{t.text}</div>
))}
</div>
);
}Development vs Production
Always use npx convex dev during development. It runs against your personal dev deployment and syncs code on save.
When ready to ship, deploy to production:
npx convex deployThis pushes to the production deployment, which is separate from dev. Do not use deploy during development.
Next Steps
- Add authentication: use the
convex-setup-authskill - Design your schema: see
- Build components: use the
convex-create-componentskill - Plan a migration: use the
convex-migration-helperskill - Add file storage: see
- Set up cron jobs: see Scheduling docs
Checklist
- [ ] Determined starting point: new project or existing app
- [ ] If new project: scaffolded with
npm create convex@latestusing
appropriate template
- [ ] If existing app: installed
convexand wired up the provider - [ ] Agent ran
npx convex dev --once: deployment provisioned, code pushed,
typecheck clean
- [ ]
npm run dev(ornpx convex devfor the watcher alone) is running —
user-launched terminal, or background for cloud agents
- [ ]
convex/_generated/directory exists with types - [ ]
.env.localhas the deployment URL - [ ] Verified a basic query/mutation round-trip works
interface:
display_name: "Convex Quickstart"
short_description:
"Start a new Convex app or add Convex to an existing frontend."
icon_small: "./assets/icon.svg"
icon_large: "./assets/icon.svg"
brand_color: "#F97316"
default_prompt:
"Set up Convex for this project as fast as possible. First decide whether
this is a new app or an existing app, then scaffold or integrate Convex and
verify the setup works."
policy:
allow_implicit_invocation: true
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
<path stroke-linecap="round" stroke-linejoin="round" d="M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"/>
<path stroke-linecap="round" stroke-linejoin="round" d="M15.91 11.672a.375.375 0 0 1 0 .656l-5.603 3.113a.375.375 0 0 1-.557-.328V8.887c0-.286.307-.466.557-.327l5.603 3.112Z"/>
</svg>
Related skills
FAQ
When should convex-quickstart be skipped?
convex-quickstart should be skipped when the project already has Convex installed and a `convex/` directory exists—start building directly. For auth-only additions on an existing Convex app, use the convex-setup-auth skill instead.
Which frontends does convex-quickstart support?
convex-quickstart adds Convex to new projects or existing React, Next.js, Vue, Svelte, and other apps, running `npm create convex@latest` and the first `npx convex dev` with required environment variables.
Is Convex Quickstart safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.