convex-quickstart

Scaffold Convex projects or integrate Convex into existing frontends.

1|Updated Mar 23, 2026
One-click install
npx skills add https://github.com/Atemndobs/ops-central --skill convex-quickstart-atemndobs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: convex-quickstart
Source: https://github.com/Atemndobs/ops-central/tree/main/.agents/skills/convex-quickstart
Command: npx skills add https://github.com/Atemndobs/ops-central --skill convex-quickstart-atemndobs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates the onboarding process for Convex by scaffolding a new project or integrating Convex into an existing frontend.

Core Features & Use Cases

  • Scaffolds a new Convex project using npm create convex@latest and sets up the backend and frontend together.
  • Adds Convex to existing React, Next.js, Vue, Svelte, or other frontends with provider wiring and environment variable configuration.
  • Supports running npx convex dev to connect a deployment and start the development loop.

Quick Start

Choose whether you are starting a new project or adding Convex to an existing app, then scaffold with npm create convex@latest or install convex and wire up the provider, and finally start the dev loop with npx convex dev.

Frequently Asked Questions about convex-quickstart

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scaffold a new Convex project from scratch?

You can scaffold a new Convex project by running npm create convex@latest, which automatically sets up and configures both the backend and frontend together.

Can I add Convex to an existing React or Next.js frontend?

Yes, you can add Convex to existing React, Next.js, Vue, or Svelte apps by installing the convex package, wiring up the provider, and configuring the deployment URL environment variable.

How do I start the Convex development loop after project setup?

To start the Convex development loop, run npx convex dev to connect your local project to a deployment and enable live backend updates during development.

Does Convex integration support Vue and Svelte frameworks?

Yes, Convex integration supports Vue and Svelte, allowing you to wire the Convex provider and configure deployment environment variables across these frameworks.

What is the best way to configure Convex deployment URLs in frontend environments?

The best way to configure Convex deployment URLs is through environment variables during the provider wiring step, ensuring your frontend correctly targets the active backend deployment.