cli-reference
Installation
SKILL.md
CLI Reference
Every infrastructure operation has a CLI command. Never send users to dashboards.
Environment Variables
Vercel
# Add (use printf to avoid trailing newlines)
printf '%s' 'value' | vercel env add KEY production
printf '%s' 'value' | vercel env add KEY preview
printf '%s' 'value' | vercel env add KEY development
# List (filter output manually - no env flag)
vercel env ls | grep production
# Remove
vercel env rm KEY production
Related skills