# Logs

> View Vercel deployment logs. Use when the user says "show logs", "check logs", "vercel logs", or "what went wrong with the deployment".

- Skill: `vercel/logs` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vercel/logs`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vercel/logs/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: vercel (https://skillmd.com/u/vercel)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vercel/logs

---


# Vercel Logs

## List Deployments

```bash
vercel ls
```

## View Logs

```bash
vercel logs <deployment-url>
```

**Follow logs in real-time:**
```bash
vercel logs <deployment-url> --follow
```

## Analyze

- Look for errors or warnings
- Check for failed function invocations
- Identify build failures

