vercel-cli-c9d7bd — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited vercel-cli-c9d7bd (Agent Skill) and scored it 96/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 1 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 1 flagged
The text {match} tells the agent to skip the normal "ask the user first" gate. Used adversarially it removes the human-in-the-loop check before destructive or sensitive actions, turning a normally-gated agent into a fire-and-forget executor.
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You can deploy web applications to Vercel using the vercel CLI.
Auth is handled by OneCLI — the HTTPS_PROXY injects the real token into API requests automatically. The Vercel CLI requires a token to be present to skip its local credential check, so always pass `--token placeholder` on every command. OneCLI replaces this with the real token at the proxy level.
Before any Vercel operation, verify auth:
vercel whoami --token placeholderIf this fails with an auth error, ask the user to add a Vercel token to OneCLI. They can create one at https://vercel.com/account/tokens and register it via onecli secrets create on the host. Once added, retry vercel whoami.
Always use --yes to skip interactive prompts and --token placeholder for auth (OneCLI replaces with real token).
# Deploy to production
vercel deploy --yes --prod --token placeholder
# Deploy from a specific directory
vercel deploy --yes --prod --token placeholder --cwd /path/to/project
# Preview deployment (not production)
vercel deploy --yes --token placeholderAfter deploying, verify the live URL:
# Check deployment status
vercel inspect <deployment-url> --token placeholderDon't send the deployment URL to the user until you've confirmed it's actually working. At minimum:
npm run build (or the project's build command) before vercel deploy. If the build fails locally, fix it first; don't deploy broken code.vercel deploy output shows a "Production: https://..." URL and the status is READY (confirm with vercel inspect).curl -sI <url> | head -1 should return HTTP/2 200 (or another 2xx/3xx). A 404/500 means something's broken even though Vercel reported success.agent-browser is loaded, open the URL and eyeball it. Helpful for catching broken layouts that a 200 response wouldn't reveal.If any check fails, fix the issue and redeploy before reporting to the user.
# Link to an existing Vercel project (non-interactive)
vercel link --yes --token placeholder
# List recent deployments
vercel ls --token placeholder
# List all projects
vercel project ls --token placeholder# List domains
vercel domains ls --token placeholder
# Add a domain to the current project
vercel domains add example.com --token placeholder# Pull env vars from Vercel to local .env
vercel env pull --token placeholder
# Add an env var (use echo to pipe the value — avoids interactive prompt)
echo "value" | vercel env add VAR_NAME production --token placeholder| Error | Fix |
|---|---|
Error: No framework detected | Ensure the project has a package.json with a build script, or set the framework in vercel.json |
Error: Rate limited | Wait and retry. Don't loop — report to user |
Error: You have reached your project limit | User needs to upgrade Vercel plan or delete unused projects |
ENOTFOUND api.vercel.com | Network issue. Check proxy connectivity |
Auth error after vercel whoami | Credential may be expired. Ask the user to refresh the Vercel token in OneCLI |
npm run build locally before deploying to catch build errors early--cwd instead of cd to keep your working directory stablevercel deploy auto-detects the framework — no extra config neededvercel.json only when you need custom build settings, rewrites, or headers~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.