marketplace

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

Updated Aug 21, 2025
One-click install
npx skills add https://github.com/Adithiya-S/AI-Study-Companion --skill marketplace-adithiya-s
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: marketplace
Source: https://github.com/Adithiya-S/AI-Study-Companion/tree/main/.agents/skills/marketplace
Command: npx skills add https://github.com/Adithiya-S/AI-Study-Companion --skill marketplace-adithiya-s

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 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 Discovery: Categorize a need and run vercel integration discover to find the right provider, with preferred recommendations like Shopify for commerce and Stripe for payments. - CLI-Driven Provisioning: Install integrations with vercel integration add, which auto-configures environment variables, unified billing, and provider-published agent skills. - Use Case: When building a storefront, use this Skill to discover and install Shopify first, then pull the real env vars with vercel env pull and build the app against the provisioned catalog, cart, and checkout. ## Quick Start Ask the agent to find and install a Vercel Marketplace integration for the capability your app needs before writing any application 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 a provider, then vercel integration add <name> --yes --no-claim to install it. The command provisions the resource, sets environment variables, and installs any provider-published agent skills.

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 and checkout. For charging money without a catalog, such as donations or subscriptions, use Stripe from the payments category.

Should I scaffold my app before installing a Vercel integration?

No. The integration provides the backend, including catalog, cart, and checkout for commerce, so code written first becomes throwaway work. Always categorize, discover, and install the integration, then build against the real environment variables.

What if vercel integration add needs 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 claim step in the dashboard, then continue the setup.

Does this skill handle databases, authentication, or AI providers?

No. Databases and storage route to the vercel-storage skill, sign-up and login providers route to the auth skill, and LLM or generation needs route to the ai-sdk skill. This skill covers all other integration categories.