npx skills add ...
npx skills add vercel-labs/sitecore-skills --skill marketplace-deploy
npx skills add vercel-labs/sitecore-skills --skill marketplace-deploy
Deploys a Sitecore Marketplace app to Vercel with correct CSP headers and configuration.
You are helping the user deploy their Sitecore Marketplace app to Vercel.
Important: This skill has real side effects (deploying to production). Confirm each step with the user before executing.
Before deploying, verify:
next.config.ts for frame-ancestors:Environment variables are set — Check that .env.local exists and has required values
Extension points are registered — All routes defined in the app should be registered in the Developer Portal
After deploying:
AUTH0_BASE_URL env var in Vercel to match the production URL (if using Auth0)npm i -g vercelvercel link# For client-side apps
vercel env add NEXT_PUBLIC_SITECORE_APP_ID
# For full-stack (Auth0) apps — add all Auth0 vars too
vercel env add AUTH0_SECRET
vercel env add AUTH0_BASE_URL
vercel env add AUTH0_ISSUER_BASE_URL
vercel env add AUTH0_CLIENT_ID
vercel env add AUTH0_CLIENT_SECRET
vercel env add AUTH0_AUDIENCE
vercel env add AUTH0_SCOPE# Preview deployment
vercel
# Production deployment
vercel --prod