Vercel Deploy
Intent
- Use for Vercel preview deploys, production deploys, and deployment-oriented review of build and framework settings.
Default operating pattern
- Check whether
vercelis available; if not, fall back tonpx vercelor tell the user what must be installed. - Verify authentication with the Vercel CLI before deploying, and guide the user through
vercel loginwhen credentials are missing. - Default to preview deployment with
vercel deploy -y; use--prodonly when the user explicitly wants a production release. - Inspect framework config, environment variables, and build output only when the deploy errors or the project shape is unclear.
- Return the deployment URL and any follow-up actions from the CLI output; do not probe the deployed URL unless the user specifically asks for verification.
Pack fit
- Included in:
deploy-ops - Keep the public skill focused on the official CLI flow rather than private fallback services or custom claim flows.
Boundary
- Do not auto-promote to production from a preview-first request.
- Do not claim the deployment is healthy just because the CLI returned a URL.