What problem does it solve?
This skill helps diagnose and fix production issues on Vercel by providing guided steps to access live logs, verify deployments, and inspect production databases.
Core Features & Use Cases
- Live log streaming: Monitor real-time function logs to identify failures.
- Deployment health checks: Inspect latest deployments to confirm status and wait for readiness.
- Database debugging: Connect to Neon Postgres; inspect tables and data to verify production state.
- Environment validation: Verify environment variables and configuration across environments to reproduce issues.
Quick Start
Run the following steps to begin debugging production issues in your Vercel project:
- Stream live logs: vercel logs www.your-app --scope your-team
- List deployments and wait for readiness: LATEST=$(vercel ls --scope your-team 2>/dev/null | head -1); vercel inspect "$LATEST" --scope your-team --wait --timeout 5m
- Connect to the Neon production database after loading production env: load .env.production.local and run a small diagnostic script against the database.