Skip to main content

vercel-cli-with-tokens

Enables deployment and management of Vercel projects using token-based authentication for streamlined CLI operations.

Install this skill

or
48/100

Security score

The vercel-cli-with-tokens skill was audited on Jun 10, 2026 and we found 20 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 22

Template literal with variable interpolation in command context

SourceSKILL.md
22```bash
medium line 51

Template literal with variable interpolation in command context

SourceSKILL.md
51```bash
medium line 65

Template literal with variable interpolation in command context

SourceSKILL.md
65```bash
medium line 78

Template literal with variable interpolation in command context

SourceSKILL.md
78```bash
medium line 28

Access to .env file

SourceSKILL.md
28### B) Token is in a `.env` file under `VERCEL_TOKEN`
low line 31

Access to .env file

SourceSKILL.md
31grep -q '^VERCEL_TOKEN=' .env 2>/dev/null && printf 'VERCEL_TOKEN is present in .env\n'
low line 37

Access to .env file

SourceSKILL.md
37VERCEL_TOKEN="$(sed -n 's/^VERCEL_TOKEN=//p' .env | tail -n 1)"
medium line 41

Access to .env file

SourceSKILL.md
41### C) Token is in a `.env` file under a different name
low line 46

Access to .env file

SourceSKILL.md
46grep -Eio '^[A-Z0-9_]*VERCEL[A-Z0-9_]*(?==)' .env 2>/dev/null
low line 53

Access to .env file

SourceSKILL.md
53VERCEL_TOKEN="$(sed -n "s/^${vercel_var}=//p" .env | tail -n 1)"
low line 83

Access to .env file

SourceSKILL.md
83# Or check .env
low line 84

Access to .env file

SourceSKILL.md
84grep -Eio '^[A-Z0-9_]*VERCEL[A-Z0-9_]*(?==)' .env 2>/dev/null
low line 250

Access to .env file

SourceSKILL.md
250# Pull env vars to local .env.local file
medium line 308

Access to .env file

SourceSKILL.md
308- **Check the environment for tokens before asking the user.** Look in the current env and `.env` files first.
medium line 320

Access to .env file

SourceSKILL.md
320Check the environment and any `.env` files present:
low line 324

Access to .env file

SourceSKILL.md
324grep -Eio '^[A-Z0-9_]*VERCEL[A-Z0-9_]*(?==)' .env 2>/dev/null
low line 87

External URL reference

SourceSKILL.md
87**If you have a project URL** (e.g. `https://vercel.com/my-team/my-project`), extract the team slug:
low line 90

External URL reference

SourceSKILL.md
90# e.g. "my-team" from "https://vercel.com/my-team/my-project"
low line 91

External URL reference

SourceSKILL.md
91echo "$PROJECT_URL" | sed 's|https://vercel.com/||' | cut -d/ -f1
low line 303

External URL reference

SourceSKILL.md
303Full details: https://vercel.com/docs/plans/pro-plan
Scanned on Jun 10, 2026
View Security Dashboard
Installation guide →