From vercel-pack
Execute diagnose and fix Vercel common errors and exceptions. Use when encountering Vercel errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "vercel error", "fix vercel", "vercel not working", "debug vercel".
How this skill is triggered — by the user, by Claude, or both
Slash command
/vercel-pack:vercel-common-errorsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Vercel SDK installed
Vercel errors typically originate from one of three layers: the build pipeline (configuration errors, dependency failures), the serverless function runtime (timeouts, memory limits, environment variable issues), or the edge network (routing mismatches, header size limits). Identifying which layer is responsible saves significant debugging time before you start making changes.
Check the error message and code in your Vercel deployment logs or function logs. Build errors appear in the deployment log with exit codes and compilation output. Runtime errors appear in the function log with request context. Note the HTTP status code if the error came from a deployed function — 504 typically means a function timeout, 413 means a request payload exceeded Vercel's size limit, and 500 means an uncaught exception in your function code.
Match your error to one of the documented cases in the references file. Distinguish between errors that occur on every request (deterministic, require a code fix) and errors that occur intermittently (potentially cold-start related or caused by external service degradation). Deterministic errors should be fixed before promoting to production; intermittent errors may require retry logic or graceful degradation.
Follow the solution steps for your specific error. After applying a fix, trigger a new deployment and test the affected endpoint or route. If the error was related to environment variables, verify the variable is present in both preview and production environments in the Vercel dashboard.
See ${CLAUDE_SKILL_DIR}/references/errors.md for comprehensive error handling.
See ${CLAUDE_SKILL_DIR}/references/examples.md for detailed examples.
Execute diagnose and fix Vercel common errors and exceptions.
npx claudepluginhub nickloveinvesting/nick-love-plugins --plugin vercel-packDiagnoses and fixes common Vercel errors in builds, serverless functions, and edge routing using CLI tools, logs, and API queries.
Guides deploying Next.js apps to Vercel covering environment variables setup across environments, edge vs serverless functions, build optimization, and preview deployments.
Provides Vercel CLI reference for deploying frontend apps, managing serverless functions, domains, env vars, and debugging deployments. Triggers on vercel.json, .vercel dir, or VERCEL_TOKEN.