vercel-cli-with-tokens
Facilitates project deployment on Vercel using token-based authentication for streamlined CLI management.
Install this skill
or
68/100
Security score
The vercel-cli-with-tokens skill was audited on May 23, 2026 and we found 16 security issues across 2 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
medium line 25
Access to .env file
SourceSKILL.md
| 25 | ### B) Token is in a `.env` file under `VERCEL_TOKEN` |
low line 28
Access to .env file
SourceSKILL.md
| 28 | grep '^VERCEL_TOKEN=' .env 2>/dev/null |
low line 34
Access to .env file
SourceSKILL.md
| 34 | export VERCEL_TOKEN=$(grep '^VERCEL_TOKEN=' .env | cut -d= -f2-) |
medium line 37
Access to .env file
SourceSKILL.md
| 37 | ### C) Token is in a `.env` file under a different name |
low line 42
Access to .env file
SourceSKILL.md
| 42 | grep -i 'vercel' .env 2>/dev/null |
low line 48
Access to .env file
SourceSKILL.md
| 48 | export VERCEL_TOKEN=$(grep '^<VARIABLE_NAME>=' .env | cut -d= -f2-) |
low line 77
Access to .env file
SourceSKILL.md
| 77 | # Or check .env |
low line 78
Access to .env file
SourceSKILL.md
| 78 | grep -i 'vercel' .env 2>/dev/null |
low line 244
Access to .env file
SourceSKILL.md
| 244 | # Pull env vars to local .env.local file |
medium line 302
Access to .env file
SourceSKILL.md
| 302 | - **Check the environment for tokens before asking the user.** Look in the current env and `.env` files first. |
medium line 314
Access to .env file
SourceSKILL.md
| 314 | Check the environment and any `.env` files present: |
low line 318
Access to .env file
SourceSKILL.md
| 318 | grep -i vercel .env 2>/dev/null |
low line 81
External URL reference
SourceSKILL.md
| 81 | **If you have a project URL** (e.g. `https://vercel.com/my-team/my-project`), extract the team slug: |
low line 84
External URL reference
SourceSKILL.md
| 84 | # e.g. "my-team" from "https://vercel.com/my-team/my-project" |
low line 85
External URL reference
SourceSKILL.md
| 85 | echo "$PROJECT_URL" | sed 's|https://vercel.com/||' | cut -d/ -f1 |
low line 297
External URL reference
SourceSKILL.md
| 297 | Full details: https://vercel.com/docs/plans/pro-plan |
Scanned on May 23, 2026
View Security Dashboard