Execute Vercel primary workflow: Deploy Preview. Use when Deploying a preview for a pull request, Testing changes before production, or Sharing preview URLs with stakeholders. Trigger with phrases like "vercel deploy preview", "create preview deployment with vercel".
From vercel-packnpx claudepluginhub nickloveinvesting/nick-love-plugins --plugin vercel-packThis skill is limited to using the following tools:
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
Deploy preview environments for pull requests and branches. This is the primary workflow for Vercel — instant previews for every commit. Vercel's preview deployment system gives every branch its own unique URL that updates automatically on each push, enabling stakeholders to review changes in a production-like environment without waiting for a release cycle. Preview environments inherit all project environment variables marked for preview, so they accurately reflect how the feature will behave in production.
vercel-install-auth setupConnect your repository to Vercel and configure the project settings for preview deployments. Verify that the correct build command and output directory are set for your framework. Ensure that environment variables needed by the preview build are marked with the Preview environment scope in the Vercel dashboard, not just Production.
// Step 1 implementation
Push a branch commit or trigger a deployment via the Vercel API. Vercel will build the project, run any configured build checks, and publish to a unique preview URL. Monitor the deployment log for build errors. Retrieve the preview URL from the deployment response and share it with reviewers for feedback before merging.
// Step 2 implementation
After the pull request is reviewed and approved, confirm that the preview deployment passed all checks. When the branch is merged, Vercel will automatically trigger a production deployment. Archive or clean up stale preview deployments for closed PRs to keep your deployment history manageable.
// Step 3 implementation
| Error | Cause | Solution |
|---|---|---|
| Error 1 | Cause | Solution |
| Error 2 | Cause | Solution |
// Complete workflow example
For secondary workflow, see vercel-edge-functions.