vercel-deploy
Deploy projects to Vercel using the Vercel CLI and the VERCEL_TOKEN secret.
@op-u643pe13 installs
Install
npx @operator-labs/skills install @op-u643pe/vercel-deploy---
name: vercel-deploy
description: Deploy projects to Vercel using the Vercel CLI and the VERCEL_TOKEN secret.
license: MIT
---
Use this skill when the user wants to deploy a project to Vercel.
Steps:
1. Make sure the VERCEL_TOKEN secret is available in the environment.
2. Install the Vercel CLI if needed: npm install -g vercel
3. Go to the project directory.
4. Deploy with:
vercel deploy --prod --token $VERCEL_TOKEN --yes
5. Return the deployment URL from the CLI output.
Example workflow:
cd my-next-app
vercel deploy --prod --token $VERCEL_TOKEN --yes