Vercel Commands (/vercel:)
Framework-agnostic Vercel platform features only — vercel.json, Serverless Functions (Node.js/Fluid Compute runtime), ISR, Cron Jobs, Storage. Not a Next.js stack (no /nextjs:* namespace exists) — for framework-specific routing/rendering, use /react:*, /vuejs:*, /angular:* instead.
Code Generation
| Command | Description |
|---|---|
/vercel:deploy-config | Detect project shape and generate/validate a vercel.json |
Analysis Commands
| Command | Description |
|---|---|
/vercel:check-architecture | Validate vercel.json structure (rewrites/redirects/headers/regions/functions/crons) and project-shape fit |
/vercel:check-code-quality | Run code quality checks on api/** (ESLint, tsc --strict, handler signature conventions) |
/vercel:check-compliance | Check rule compliance (vercel.json & Architecture, Functions & Runtime Choice, Security & Env Handling, ISR/Caching & Tests) |
/vercel:check-security | Security audit (env vars/secrets, cron auth guard, CORS/CSP headers, Marketplace credential scoping) |
/vercel:check-testing | Test coverage analysis (Vitest for Function handlers, vercel dev smoke tests) |