vercel-sdk-patterns
Implements production-ready Vercel SDK patterns for TypeScript and Python, enhancing integration and coding standards.
Install this skill
Security score
The vercel-sdk-patterns skill was audited on May 12, 2026 and we found 15 security issues across 2 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 74 | Authorization: `Bearer ${this.token}`, |
Template literal with variable interpolation in command context
| 93 | 'GET', `/v9/projects?limit=${limit}` |
Template literal with variable interpolation in command context
| 98 | return this.request<VercelProject>('GET', `/v9/projects/${idOrName}`); |
Template literal with variable interpolation in command context
| 106 | 'GET', `/v6/deployments?${params}` |
Template literal with variable interpolation in command context
| 112 | 'GET', `/v13/deployments/${idOrUrl}` |
Template literal with variable interpolation in command context
| 119 | 'GET', `/v9/projects/${projectId}/env` |
Template literal with variable interpolation in command context
| 125 | 'POST', `/v9/projects/${projectId}/env`, envVar |
Template literal with variable interpolation in command context
| 132 | 'GET', `/v9/projects/${projectId}/domains` |
Template literal with variable interpolation in command context
| 138 | 'POST', `/v9/projects/${projectId}/domains`, { name: domain } |
Template literal with variable interpolation in command context
| 205 | super(`Vercel API ${status}: [${code}] ${message}`); |
Template literal with variable interpolation in command context
| 229 | console.warn(`Rate limited. Retrying in ${Math.round(delay)}ms...`); |
External URL reference
| 60 | this.baseUrl = config.baseUrl ?? 'https://api.vercel.com'; |
External URL reference
| 303 | - [Vercel REST API Reference](https://vercel.com/docs/rest-api) |
External URL reference
| 304 | - [Vercel REST API Endpoints](https://vercel.com/docs/rest-api/reference) |
External URL reference
| 305 | - [Authentication](https://vercel.com/docs/rest-api#creating-an-access-token) |