marketplace

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

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Adding third-party capabilities like commerce, payments, email, or monitoring to a Vercel app often leads to hand-built scaffolding that gets thrown away once a real integration is provisioned. This Skill enforces the correct categorize → discover → install → build sequence 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, add, and env pull to install integrations with automatic env vars and unified billing. - Category mapping: Maps needs like messaging, observability, search, CMS, feature flags, and video to the correct Marketplace category, while routing storage, auth, and AI needs to dedicated skills. - Use Case: When building a storefront, run discovery in the commerce category, install Shopify via the CLI, pull the real env vars, and only then build the catalog, cart, and checkout against them. ## Quick Start Ask the assistant to discover and install the right Vercel Marketplace integration for your app's payment or commerce need before writing any code.

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 the integration, then `vercel integration add <name> --yes --no-claim` to install it. Finish with `vercel env pull --yes` to get the real environment variables before building.

Which Vercel integration should I use for payments or a store?

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

Should I scaffold my app before installing the integration?

No. The integration provides the backend, including catalog, cart, and checkout for commerce, so code written first becomes throwaway work. Always categorize, discover, install, and pull env vars before writing app code.

What if the 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, then continue the setup.

When should I use a dedicated skill instead of the Marketplace skill?

Databases and persistence route to the vercel-storage skill, authentication providers route to the auth skill, and LLM or AI generation routes to the ai-sdk skill. Everything else, such as email, monitoring, search, or CMS, goes through Marketplace discovery.