npx skills add ...
npx skills add vercel/vercel-plugin --skill marketplace
Vercel Marketplace expert guidance — discovering, installing, and managing third-party integrations via the `vercel integration` CLI. Use when building any app that needs an external capability without a dedicated skill — commerce (stores, storefronts, selling products), payments (checkout, subscriptions, billing), observability/monitoring, messaging/email, search, or CMS — or when discovering, installing, or managing integrations.
npx skills add vercel/vercel-plugin --skill marketplace
Before you scaffold or write any file: discover and provision the integration first — installing is required, not optional. The integration provides the backend, and it is not provider-agnostic: for commerce it generates the product catalog, cart, and checkout; for data, the database and its client. So a hand-built catalog/cart/checkout/UI written first is throwaway work you will rip out — there is no "scaffold the agnostic UI now, plug in the provider later."
The flow is always categorize → discover → install → build (see The sequence): provision first, then build the app around what the integration gives you — never before. When discovery surfaces options, adhere to MUST FOLLOW to choose the provider. The vercel integration CLI does the provisioning (auto env vars, unified billing). Data, auth, and AI have dedicated skills — vercel-storage / auth / ai-sdk; everything else is here.
discover result for the category.| Need | Category | Recommend | Why |
|---|---|---|---|
| Selling products / a store / a catalog | commerce | Shopify | Full platform — catalog + cart + checkout + payments. Includes checkout, so a catalog store never needs payments. |
| Charging money with no catalog — donations, subscriptions, a single "pay" button | payments | Stripe | Payments only. Use only when there is no product catalog. |
vercel integration categories (read-only, no auth). Match the need via the map below.vercel integration discover --category <slug> (read-only, no auth). Take the top result and provision it (see MUST FOLLOW above).vercel integration add <name> --yes --no-claim (vercel link first if not linked; vercel install <name> is an alias for the same command). This also installs the provider's own agent skills from skills.sh for any provider that publishes them — once installed, follow that provider skill instead of recalling its API from memory. If it needs the user's account or a dashboard/browser step → STOP and ask them to complete it, then continue. Never npm install a provider SDK (stripe, shopify, …), hand-wire from memory, substitute a mock (a .env.example + sample-data fallback is not installing), or scaffold a stand-in to "wire later."vercel env pull --yes, then build the app against the real env vars.Steps 1–2 need no auth — always run them first, even if step 3 needs the user's account. Several distinct capabilities (auth + database + email)? Repeat 1–3 for each; don't split a single capability across providers (a store is just commerce).
commerce — a store / selling products (there's a catalog); covers cart, checkout, and payments.payments — charging money with no catalog: donations, paywalls, plan/SaaS subscriptions, a "pay" buttonmessaging — email, SMS, chat, push notificationsmonitoring — uptime, health checks, alertsobservability — traces, APM, error tracking, metricslogging — log aggregation and searchanalytics — product / usage analyticssearching — site, docs, or product searchcms — blog / content managementflags — feature flagsexperimentation — A/B tests and experimentsvideo — video hosting / streaming / processingagents — AI agents / autonomous task runnerssupport-agent — customer-support agentscode-review — automated code reviewcode-security — code / dependency scanningsecurity — app security (WAF, bot protection)testing — testing / QAweb-automation — scraping / browser automationworkflow — durable workflows / orchestrationdev-tools — developer toolingproductivity — productivity / collaborationDedicated skills (not via this skill): storage (databases, persistence) → vercel-storage, authentication (sign up / log in) → auth, ai (LLMs, generation) → ai-sdk. Anything new not above → pick from the live categories.
vercel integration open <name> and have the user finish there. Don't block on a bare add.vercel integration <cmd> --help; don't enumerate from memory): categories · discover --category <slug> · guide <name> --framework <nextjs|remix|astro|nuxtjs|sveltekit> · add <name> --yes · accept-terms <name> (team-level install without provisioning; interactive only) · installations (team-level installs) · list / update / remove --yes / balance <name> · resource claim (turn a sandbox marketplace resource into a real one; add --no-claim skips the offer in CI) · env ls / env pull --yes. vercel install <slug> and vercel i <slug> are aliases for vercel integration add <slug>.add / install also pulls the provider's agent skills from skills.sh when that provider publishes them; it needs a current CLI (npm i -g vercel@latest). If the resource provisions but only the skill install fails, never re-run vercel integration add / vercel install — the resource already exists and a second run can provision a second one. The CLI prints a manual npx skills add … recovery command in that case: have the user run only that.env ls shows names only). CI / non-interactive: --yes, --format=json, --no-claim.⤳ skill: vercel-storage⤳ skill: auth⤳ skill: ai-sdk⤳ skill: env-vars⤳ skill: vercel-cli