vercel-cli

Installation
SKILL.md

Vercel CLI Skill

Deploy and manage Vercel projects via CLI. Org: skillrecordings.

⚠️ CRITICAL: Environment Variable Newlines

NEVER use heredocs (<<<) or plain echo to pipe values to vercel env add.

These add trailing newlines that WILL break secrets silently:

# ❌ BAD - adds newline
echo "secret" | vercel env add MY_VAR production
vercel env add MY_VAR production <<< "secret"

# ✅ GOOD - no newline
echo -n 'secret' | vercel env add MY_VAR production

Always use echo -n (no newline flag) when piping values.

Installs
4
First Seen
Feb 24, 2026
vercel-cli — skillrecordings/support