marketplace

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

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Adding third-party capabilities like commerce, payments, email, or search to an app often leads to hand-built scaffolding that gets thrown away once a real provider is chosen. This Skill enforces a provision-first workflow so integrations are installed through the Vercel CLI before any app code is written. ## Core Features & Use Cases - Guided provider selection: Categorize the need, discover candidates with vercel integration discover, and follow preferred-provider rules (Shopify for commerce, Stripe for payments). - CLI-driven provisioning: Install integrations with vercel integration add, which auto-configures environment variables, unified billing, and provider-published agent skills. - Cross-skill routing: Detects database, auth, and AI usage patterns and chains to the dedicated vercel-storage, auth, or ai-sdk skills. - Use Case: When asked to build an online store, the Skill directs the agent to run vercel integration discover --category commerce, install Shopify, pull env vars, and only then build the storefront against the real catalog and checkout. ## Quick Start Ask the agent to add a payments capability to your Vercel project and it will discover, install, and configure the right Marketplace integration 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 add <name> --yes --no-claim after linking your project with vercel link. The command provisions the resource, sets environment variables automatically, and installs any provider-published agent skills. vercel install <name> is an alias for the same command.

How do I find the right Vercel integration for my app?

Run vercel integration categories to list capability categories, then vercel integration discover --category <slug> to see providers. Both commands are read-only and need no authentication, so you can explore options before installing anything.

Should I use Shopify or Stripe for payments on Vercel?

Use Shopify when selling products with a catalog, since it includes cart, checkout, and payments in one platform. Use Stripe only when charging money without a catalog, such as donations, subscriptions, or a single pay button.

What happens if the Vercel integration install partially fails?

If the resource provisions but only the provider skill install fails, never re-run vercel integration add, because a second run can provision a duplicate resource. The CLI prints a manual npx skills add recovery command to run instead.

Can I scaffold my app UI before installing the integration?

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