← Back to Skills Marketplace
nightfullstar

Vercel Deploy

by nightfullstar · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
5317
Downloads
1
Stars
45
Active Installs
1
Versions
Install in OpenClaw
/install vercel-deploy
Description
Deploy and manage Vercel projects. Use when deploying applications to Vercel, managing environment variables, checking deployment status, viewing logs, or performing Vercel operations. Supports production and preview deployments. Practical infrastructure operations - no "AI will build your app" magic.
README (SKILL.md)

Vercel Deployment & Management

Deploy and manage Vercel projects. No "AI will build your app" nonsense - just practical Vercel operations.

Configuration

Vercel Setup

Get your token:

  1. Go to https://vercel.com/account/tokens
  2. Create token (name it "OpenClaw")
  3. Set in environment:
export VERCEL_TOKEN="your-token-here"

Or store in .env:

VERCEL_TOKEN=your-token-here

Vercel Operations

Deploy Project

# Deploy to preview
scripts/vercel_deploy.sh --project bountylock --preview

# Deploy to production
scripts/vercel_deploy.sh --project bountylock --production

Manage Environment Variables

# List env vars
scripts/vercel_env.sh --project bountylock --list

# Set env var
scripts/vercel_env.sh --project bountylock --set \
  --key NEXT_PUBLIC_RPC_URL \
  --value "https://sepolia.base.org" \
  --env production

# Delete env var
scripts/vercel_env.sh --project bountylock --delete \
  --key OLD_VAR \
  --env production

Check Deployment Status

# Get latest deployment
scripts/vercel_status.sh --project bountylock

# Get specific deployment
scripts/vercel_status.sh --deployment dpl_abc123

View Logs

# Get deployment logs
scripts/vercel_logs.sh --deployment dpl_abc123

# Get runtime logs
scripts/vercel_logs.sh --project bountylock --function api/bounties

Common Workflows

Initial Testnet Deployment

  1. Set environment variables:
# Contract addresses (after deploying to Sepolia)
scripts/vercel_env.sh --project bountylock --set \
  --key NEXT_PUBLIC_CONTRACT_ADDRESS \
  --value "0x..." \
  --env production

# RPC URL
scripts/vercel_env.sh --project bountylock --set \
  --key NEXT_PUBLIC_RPC_URL \
  --value "https://sepolia.base.org" \
  --env production

# Chain ID
scripts/vercel_env.sh --project bountylock --set \
  --key NEXT_PUBLIC_CHAIN_ID \
  --value "84532" \
  --env production
  1. Deploy:
scripts/vercel_deploy.sh --project bountylock --production
  1. Check status:
scripts/vercel_status.sh --project bountylock

Update Environment Variables

# Update contract address after redeployment
scripts/vercel_env.sh --project bountylock --set \
  --key NEXT_PUBLIC_CONTRACT_ADDRESS \
  --value "0xNEW_ADDRESS" \
  --env production

# Trigger new deployment to use updated vars
scripts/vercel_deploy.sh --project bountylock --production

Debug Deployment Issues

# Get latest deployment info
scripts/vercel_status.sh --project bountylock

# Get build logs
scripts/vercel_logs.sh --deployment dpl_abc123

# Check environment variables
scripts/vercel_env.sh --project bountylock --list

Security Best Practices

  1. Token Scope: Use project-scoped tokens when possible
  2. Rotation: Rotate tokens periodically
  3. Audit: Review deployment logs regularly
  4. Secrets: Never commit tokens to git

Troubleshooting

"Authentication failed"

  • Check token is set correctly
  • Verify token hasn't expired

"Project not found"

  • Verify project name matches Vercel project
  • Check account has access to project

"Deployment failed"

  • Check build logs: scripts/vercel_logs.sh --deployment dpl_xxx
  • Verify environment variables are set correctly
  • Check for build errors in code

Reference Files

Usage Guidance
Review commands before letting the agent run them, especially production deployments and environment-variable deletion. Use a project-scoped Vercel token, avoid storing it permanently unless necessary, do not enter secret env values until the script masks output, and consider pinning the Vercel CLI and adding confirmations.
Capability Analysis
Type: OpenClaw Skill Name: vercel-deploy Version: 1.0.0 The skill bundle is classified as benign. All scripts (`vercel_deploy.sh`, `vercel_env.sh`, `vercel_status.sh`) use the official `npx vercel` CLI for Vercel operations, which is aligned with the stated purpose of deploying and managing Vercel projects. The `VERCEL_TOKEN` is securely handled as an environment variable. The `SKILL.md` and other documentation files provide clear instructions and security best practices (e.g., token rotation, not committing tokens to git), and do not contain any prompt injection attempts to manipulate the agent into performing actions outside the skill's defined scope or to exfiltrate data. A confirmation step is included for production deployments, enhancing safety.
Capability Assessment
Purpose & Capability
The Vercel deployment purpose is coherent, but scripts/vercel_env.sh logs full environment-variable values and auto-confirms deletions, and scripts/vercel_deploy.sh requires --project without enforcing it in the deployment command.
Instruction Scope
README.md claims destructive operations require approval, but scripts/vercel_env.sh removes Vercel environment variables with the --yes flag and no local confirmation prompt.
Install Mechanism
The metadata has no install spec or required binaries, while scripts/vercel_deploy.sh runs the Vercel CLI through npx without a pinned package version; this is purpose-aligned but should be visible to users.
Credentials
The skill requires VERCEL_TOKEN even though registry metadata declares no required env vars or primary credential, and scripts/vercel_env.sh may print sensitive environment-variable values.
Persistence & Privilege
README.md suggests persisting VERCEL_TOKEN in ~/.bashrc while later saying tokens are not stored; this broadens exposure for a token that can deploy and modify Vercel projects.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install vercel-deploy
  3. After installation, invoke the skill by name or use /vercel-deploy
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release: Deploy to Vercel, manage environment variables, check status/logs. Practical infrastructure operations - no 'AI will build your app' magic.
Metadata
Slug vercel-deploy
Version 1.0.0
License
All-time Installs 46
Active Installs 45
Total Versions 1
Frequently Asked Questions

What is Vercel Deploy?

Deploy and manage Vercel projects. Use when deploying applications to Vercel, managing environment variables, checking deployment status, viewing logs, or performing Vercel operations. Supports production and preview deployments. Practical infrastructure operations - no "AI will build your app" magic. It is an AI Agent Skill for Claude Code / OpenClaw, with 5317 downloads so far.

How do I install Vercel Deploy?

Run "/install vercel-deploy" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Vercel Deploy free?

Yes, Vercel Deploy is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Vercel Deploy support?

Vercel Deploy is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Vercel Deploy?

It is built and maintained by nightfullstar (@nightfullstar); the current version is v1.0.0.

💬 Comments