marketplace

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

Updated Sep 10, 2026
One-click install
npx skills add https://github.com/sharad07072007/paras --skill marketplace-sharad07072007
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: marketplace
Source: https://github.com/sharad07072007/paras/tree/main/.agents/plugins/vercel/skills/marketplace
Command: npx skills add https://github.com/sharad07072007/paras --skill marketplace-sharad07072007

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Building an app that needs an external capability (commerce, payments, email, monitoring, search, CMS) often leads to hand-written scaffolding that gets thrown away once a real provider is chosen. This Skill enforces the correct order — categorize, discover, install, then build — so the Vercel Marketplace integration provisions the backend, environment variables, and unified billing before any app code is written. ## Core Features & Use Cases - Guided provider selection: Recommends preferred providers (Shopify for commerce, Stripe for payments) and falls back to the top vercel integration discover result for other categories. - CLI-driven provisioning: Runs vercel integration categories, discover, add --yes --no-claim, and vercel env pull to install integrations with auto-configured env vars and unified billing. - Category mapping: Maps needs like messaging, observability, logging, analytics, searching, cms, flags, and video to Marketplace categories, while routing databases, auth, and AI to dedicated skills. - Use Case: A user asks to build an online store. The Skill runs vercel integration discover --category commerce, installs Shopify via the CLI, pulls the real env vars, and only then scaffolds the storefront against the provisioned catalog, cart, and checkout. ## Quick Start Ask the assistant to discover and install a Vercel Marketplace integration for your app's need, for example adding a commerce backend before scaffolding a storefront.

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. Finish with vercel env pull --yes to load the real environment variables before writing app code.

Which provider should I use for payments or an online store on Vercel?

For a store with a product catalog, recommend Shopify because it includes catalog, cart, checkout, and payments. For charging money without a catalog, such as donations or subscriptions, recommend Stripe from the payments category.

Should I scaffold the app UI before installing the integration?

No. The integration provides the backend, so hand-built catalogs, carts, or checkouts written first become throwaway work. Always follow the sequence: categorize, discover, install, then build against the provisioned env vars.

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

Connectable integrations cannot complete the auth handshake through the CLI. Run vercel integration open <name> and have the user finish the step in the dashboard, then continue; do not block on a bare add command.

When should I use vercel-storage or auth skills instead of the marketplace?

Databases and persistence go to the vercel-storage skill, authentication providers go to the auth skill, and LLM or AI generation goes to the ai-sdk skill. The marketplace skill covers everything else, such as commerce, payments, email, monitoring, and search.