OpenSRE queries Vercel to retrieve deployment status and runtime logs — helping identify whether a recent deployment caused an incident or surface errors from serverless function executions.Documentation Index
Fetch the complete documentation index at: https://opensre.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- Vercel account with project access
- Vercel API token
Setup
Option 1: Interactive CLI
Option 2: Environment variables
Add to your.env:
| Variable | Default | Description |
|---|---|---|
VERCEL_API_TOKEN | — | Required. Vercel API token |
VERCEL_TEAM_ID | — | Team ID for team/organization accounts |
Option 3: Persistent store
Creating a Vercel API token
- In Vercel, go to Account Settings → Tokens
- Click Create Token
- Give it a name (e.g.,
opensre) and set the scope to Full Account or a specific team - Copy the token
For team accounts, find your Team ID in Team Settings → General → Team ID.
Verify
Troubleshooting
| Symptom | Fix |
|---|---|
| 401 Unauthorized | Check that the API token is valid and not expired |
| 403 Forbidden | The token may not have access to the team — check token scope |
| Projects not found | Ensure VERCEL_TEAM_ID is set if using a team account |
Security best practices
- Create a dedicated read-only token for OpenSRE — do not reuse deployment tokens.
- Store the token in
.env, not in source code. - Rotate tokens periodically.
Tracer