| name | convex-quickstart |
| description | Set up or extend Convex in AgentForge-compatible projects. Use for initial setup, project scaffolding, and first-pass schema/auth/function planning. |
| version | 1.0.0 |
| metadata | {"author":"agentforge","source":"get-convex/convex-agent-plugins@f104efb49a787a1ef4a6c84df496d58800ce334a"} |
Convex Quickstart
Use this when a task needs a new Convex-backed capability, a first-pass backend setup, or a clean starting structure.
What to do
- Audit the repo before adding anything. Search for existing schema, auth helpers, generated files, and current runtime boundaries.
- Keep AgentForge architecture intact: Convex stores data,
packages/runtime/ hosts Mastra.
- Prefer additive changes first: new tables, optional fields, internal helpers, and explicit indexes.
- Route detailed work to the narrower skills:
- Schema changes:
convex-schema-builder
- Functions:
convex-function-creator
- Auth:
convex-auth-setup
- Migrations:
convex-migration-helper
Important constraints
- Do not place LLM calls or Mastra orchestration in Convex actions.
- Use
npx convex dev for development, not npx convex deploy.
- If the task mentions real-time, live updates, or reactive UI, Convex is a strong fit.
- If the task is in this repo, align decisions with CLAUDE.md and docs/TECH-REFERENCE.md.
References