vercel-logs
Installation
SKILL.md
Vercel Logs
Safety
- Read-only. NEVER run
vercel deploy,vercel rollback,vercel alias,vercel env add/rm,vercel project rm, or any mutation. This skill only reads logs. - NEVER print secrets from log output. If a log line contains env var values, API keys, or tokens, redact before presenting.
- Use
--no-branchalways. The CLI auto-detects the local git branch and silently filters to it — wrong for production debugging. Always pass--no-branchor--environment productionexplicitly. - Detach stdin. Append
< /dev/nullto everyvercelcommand. Without it the CLI sniffs the TTY and hangs in agent shells. - Bound output. Always pass
--limit N(default 20, max 100). For--followruns, cap the observation window and kill the terminal when done — do not follow indefinitely.