marketplace

Discovers, installs, and manages Vercel Marketplace integrations via the vercel integration CLI.

Updated Jul 31, 2026
One-click install
npx skills add https://github.com/AarnavBaddam/skills --skill marketplace-aarnavbaddam
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: marketplace
Source: https://github.com/AarnavBaddam/skills/tree/main/marketplace
Command: npx skills add https://github.com/AarnavBaddam/skills --skill marketplace-aarnavbaddam

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Building apps that need external capabilities like commerce, payments, email, or monitoring often leads to hand-written scaffolding that gets thrown away once a real provider is connected. This Skill enforces the correct sequence — categorize, discover, install, then build — so integrations are provisioned first and the app is built around real environment variables. ## Core Features & Use Cases - Guided provider selection: Recommends preferred providers (Shopify for commerce, Stripe for payments) and falls back to top discover results for other categories. - CLI-driven provisioning: Uses vercel integration categories, discover, and add to install integrations with auto-provisioned environment variables and unified billing. - Category mapping: Maps needs like messaging, observability, search, CMS, feature flags, and video to the correct integration category. - Use Case: You want to build an online store. Instead of scaffolding a catalog and checkout by hand, run the discover flow, install Shopify via the CLI, pull the real env vars, and build the storefront against the provisioned backend. ## Quick Start Ask the assistant to discover and install a Vercel Marketplace integration for your app's need, such as adding a commerce provider before scaffolding a store.

Frequently Asked Questions about marketplace

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

FAQPage Schema
How do I install a Vercel Marketplace integration from the CLI?

Run vercel integration discover --category <slug> to find a provider, then vercel integration add <name> --yes --no-claim to install it. Afterward run vercel env pull --yes to fetch the provisioned environment variables before building your app.

Which provider should I use for commerce or payments on Vercel?

Use Shopify for commerce since it provides catalog, cart, checkout, and payments in one platform. Use Stripe only for payments without a product catalog, such as donations, subscriptions, or a single pay button.

Should I install an integration before or after scaffolding my app?

Always install the integration first. The integration provides the backend, so hand-built catalogs, carts, or checkouts written beforehand become throwaway work that must be removed.

What if a Vercel integration requires a browser or dashboard step?

Connectable integrations cannot complete auth through the CLI alone. Run vercel integration open <name> and have the user finish the claim or dashboard step in the browser, then continue the setup.

When should I not use the Marketplace skill for a capability?

Databases and persistence go to the vercel-storage skill, authentication to the auth skill, and AI or LLM features to the ai-sdk skill. The Marketplace skill covers everything else, such as messaging, monitoring, search, and CMS.