Skip to main content

vercel-sdk-patterns

Implements production-ready Vercel SDK patterns for TypeScript and Python, enhancing integration and coding standards.

Install this skill

or
41/100

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

medium line 74

Template literal with variable interpolation in command context

SourceSKILL.md
74Authorization: `Bearer ${this.token}`,
medium line 93

Template literal with variable interpolation in command context

SourceSKILL.md
93'GET', `/v9/projects?limit=${limit}`
medium line 98

Template literal with variable interpolation in command context

SourceSKILL.md
98return this.request<VercelProject>('GET', `/v9/projects/${idOrName}`);
medium line 106

Template literal with variable interpolation in command context

SourceSKILL.md
106'GET', `/v6/deployments?${params}`
medium line 112

Template literal with variable interpolation in command context

SourceSKILL.md
112'GET', `/v13/deployments/${idOrUrl}`
medium line 119

Template literal with variable interpolation in command context

SourceSKILL.md
119'GET', `/v9/projects/${projectId}/env`
medium line 125

Template literal with variable interpolation in command context

SourceSKILL.md
125'POST', `/v9/projects/${projectId}/env`, envVar
medium line 132

Template literal with variable interpolation in command context

SourceSKILL.md
132'GET', `/v9/projects/${projectId}/domains`
medium line 138

Template literal with variable interpolation in command context

SourceSKILL.md
138'POST', `/v9/projects/${projectId}/domains`, { name: domain }
medium line 205

Template literal with variable interpolation in command context

SourceSKILL.md
205super(`Vercel API ${status}: [${code}] ${message}`);
medium line 229

Template literal with variable interpolation in command context

SourceSKILL.md
229console.warn(`Rate limited. Retrying in ${Math.round(delay)}ms...`);
low line 60

External URL reference

SourceSKILL.md
60this.baseUrl = config.baseUrl ?? 'https://api.vercel.com';
low line 303

External URL reference

SourceSKILL.md
303- [Vercel REST API Reference](https://vercel.com/docs/rest-api)
low line 304

External URL reference

SourceSKILL.md
304- [Vercel REST API Endpoints](https://vercel.com/docs/rest-api/reference)
low line 305

External URL reference

SourceSKILL.md
305- [Authentication](https://vercel.com/docs/rest-api#creating-an-access-token)
Scanned on May 12, 2026
View Security Dashboard
Installation guide →