Marketplace convex-create-component
Designs and builds Convex components with isolated tables, clear boundaries, and app-facing wrappers. Use this skill when creating a new Convex component, extracting reusable backend logic into a component, building a third-party integration that owns its own tables, packaging Convex functionality for reuse, or when the user mentions defineComponent, app.use, ComponentApi, ctx.runQuery/runMutation across component boundaries, or wants to separate concerns into isolated Convex modules.
git clone https://github.com/aiskillstore/marketplace
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/get-convex/convex-create-component" ~/.claude/skills/aiskillstore-marketplace-convex-create-component && rm -rf "$T"
skills/get-convex/convex-create-component/SKILL.mdConvex Create Component
Create reusable Convex components with clear boundaries and a small app-facing API.
When to Use
- Creating a new Convex component in an existing app
- Extracting reusable backend logic into a component
- Building a third-party integration that should own its own tables and workflows
- Packaging Convex functionality for reuse across multiple apps
When Not to Use
- One-off business logic that belongs in the main app
- Thin utilities that do not need Convex tables or functions
- App-level orchestration that should stay in
convex/ - Cases where a normal TypeScript library is enough
Workflow
- Ask the user what they are building and what the end goal is. If the repo already makes the answer obvious, say so and confirm before proceeding.
- Choose the shape using the decision tree below and read the matching reference file.
- Decide whether a component is justified. Prefer normal app code or a regular library if the feature does not need isolated tables, backend functions, or reusable persistent state.
- Make a short plan for:
- what tables the component owns
- what public functions it exposes
- what data must be passed in from the app (auth, env vars, parent IDs)
- what stays in the app as wrappers or HTTP mounts
- Create the component structure with
,convex.config.ts
, and function files.schema.ts - Implement functions using the component's own
imports, not the app's generated files../_generated/server - Wire the component into the app with
. If the app does not already haveapp.use(...)
, create it.convex/convex.config.ts - Call the component from the app through
usingcomponents.<name>
,ctx.runQuery
, orctx.runMutation
.ctx.runAction - If React clients, HTTP callers, or public APIs need access, create wrapper functions in the app instead of exposing component functions directly.
- Run
and fix codegen, type, or boundary issues before finishing.npx convex dev
Choose the Shape
Ask the user, then pick one path:
| Goal | Shape | Reference |
|---|---|---|
| Component for this app only | Local | |
| Publish or share across apps | Packaged | |
| User explicitly needs local + shared library code | Hybrid | |
| Not sure | Default to local | |
Read exactly one reference file before proceeding.
Default Approach
Unless the user explicitly wants an npm package, default to a local component:
- Put it under
convex/components/<componentName>/ - Define it with
in its owndefineComponent(...)convex.config.ts - Install it from the app's
withconvex/convex.config.tsapp.use(...) - Let
generate the component's ownnpx convex dev
files_generated/
Component Skeleton
A minimal local component with a table and two functions, plus the app wiring.
// convex/components/notifications/convex.config.ts import { defineComponent } from "convex/server"; export default defineComponent("notifications");
// convex/components/notifications/schema.ts import { defineSchema, defineTable } from "convex/server"; import { v } from "convex/values"; export default defineSchema({ notifications: defineTable({ userId: v.string(), message: v.string(), read: v.boolean(), }).index("by_user", ["userId"]), });
// convex/components/notifications/lib.ts import { v } from "convex/values"; import { mutation, query } from "./_generated/server.js"; export const send = mutation({ args: { userId: v.string(), message: v.string() }, returns: v.id("notifications"), handler: async (ctx, args) => { return await ctx.db.insert("notifications", { userId: args.userId, message: args.message, read: false, }); }, }); export const listUnread = query({ args: { userId: v.string() }, returns: v.array( v.object({ _id: v.id("notifications"), _creationTime: v.number(), userId: v.string(), message: v.string(), read: v.boolean(), }) ), handler: async (ctx, args) => { return await ctx.db .query("notifications") .withIndex("by_user", (q) => q.eq("userId", args.userId)) .filter((q) => q.eq(q.field("read"), false)) .collect(); }, });
// convex/convex.config.ts import { defineApp } from "convex/server"; import notifications from "./components/notifications/convex.config.js"; const app = defineApp(); app.use(notifications); export default app;
// convex/notifications.ts (app-side wrapper) import { v } from "convex/values"; import { mutation, query } from "./_generated/server"; import { components } from "./_generated/api"; import { getAuthUserId } from "@convex-dev/auth/server"; export const sendNotification = mutation({ args: { message: v.string() }, returns: v.null(), handler: async (ctx, args) => { const userId = await getAuthUserId(ctx); if (!userId) throw new Error("Not authenticated"); await ctx.runMutation(components.notifications.lib.send, { userId, message: args.message, }); return null; }, }); export const myUnread = query({ args: {}, handler: async (ctx) => { const userId = await getAuthUserId(ctx); if (!userId) throw new Error("Not authenticated"); return await ctx.runQuery(components.notifications.lib.listUnread, { userId, }); }, });
Note the reference path shape: a function in
convex/components/notifications/lib.ts is called as components.notifications.lib.send from the app.
Critical Rules
- Keep authentication in the app, because
is not available inside components.ctx.auth - Keep environment access in the app, because component functions cannot read
.process.env - Pass parent app IDs across the boundary as strings, because
types become plain strings in the app-facingId
.ComponentApi - Do not use
for app-owned tables inside component args or schema, because the component has no access to the app's table namespace.v.id("parentTable") - Import
,query
, andmutation
from the component's ownaction
, not the app's generated files../_generated/server - Do not expose component functions directly to clients. Create app wrappers when client access is needed, because components are internal and need auth/env wiring the app provides.
- If the component defines HTTP handlers, mount the routes in the app's
, because components cannot register their own HTTP routes.convex/http.ts - If the component needs pagination, use
frompaginator
instead of built-inconvex-helpers
, because.paginate()
does not work across the component boundary..paginate() - Add
andargs
validators to all public component functions, because the component boundary requires explicit type contracts.returns
Patterns
Authentication and environment access
// Bad: component code cannot rely on app auth or env const identity = await ctx.auth.getUserIdentity(); const apiKey = process.env.OPENAI_API_KEY;
// Good: the app resolves auth and env, then passes explicit values const userId = await getAuthUserId(ctx); if (!userId) throw new Error("Not authenticated"); await ctx.runAction(components.translator.translate, { userId, apiKey: process.env.OPENAI_API_KEY, text: args.text, });
Client-facing API
// Bad: assuming a component function is directly callable by clients export const send = components.notifications.send;
// Good: re-export through an app mutation or query export const sendNotification = mutation({ args: { message: v.string() }, returns: v.null(), handler: async (ctx, args) => { const userId = await getAuthUserId(ctx); if (!userId) throw new Error("Not authenticated"); await ctx.runMutation(components.notifications.lib.send, { userId, message: args.message, }); return null; }, });
IDs across the boundary
// Bad: parent app table IDs are not valid component validators args: { userId: v.id("users") }
// Good: treat parent-owned IDs as strings at the boundary args: { userId: v.string() }
Advanced Patterns
For additional patterns including function handles for callbacks, deriving validators from schema, static configuration with a globals table, and class-based client wrappers, see
references/advanced-patterns.md.
Validation
Try validation in this order:
npx convex codegen --component-dir convex/components/<name>npx convex codegennpx convex dev
Important:
- Fresh repos may fail these commands until
is configured.CONVEX_DEPLOYMENT - Until codegen runs, component-local
imports and app-side./_generated/*
references will not typecheck.components.<name>... - If validation blocks on Convex login or deployment setup, stop and ask the user for that exact step instead of guessing.
Reference Files
Read exactly one of these after the user confirms the goal:
references/local-components.mdreferences/packaged-components.mdreferences/hybrid-components.md
Official docs: Authoring Components
Checklist
- Asked the user what they want to build and confirmed the shape
- Read the matching reference file
- Confirmed a component is the right abstraction
- Planned tables, public API, boundaries, and app wrappers
- Component lives under
(or package layout if publishing)convex/components/<name>/ - Component imports from its own
./_generated/server - Auth, env access, and HTTP routes stay in the app
- Parent app IDs cross the boundary as
v.string() - Public functions have
andargs
validatorsreturns - Ran
and fixed codegen or type issuesnpx convex dev