← All skills
Tencent SkillHub · Communication & Collaboration

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.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SETUP.md, SKILL.md, references/deployment-patterns.md, references/vercel-api.md, scripts/vercel_deploy.sh

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required. Then review README.md for any prerequisites, environment setup, or post-install checks.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need. Then review README.md for any prerequisites, environment setup, or post-install checks.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

Vercel Deployment & Management

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

Vercel Setup

Get your token: Go to https://vercel.com/account/tokens Create token (name it "OpenClaw") Set in environment: export VERCEL_TOKEN="your-token-here" Or store in .env: VERCEL_TOKEN=your-token-here

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

Initial Testnet Deployment

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 Deploy: scripts/vercel_deploy.sh --project bountylock --production 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

Token Scope: Use project-scoped tokens when possible Rotation: Rotate tokens periodically Audit: Review deployment logs regularly 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

Vercel API Reference: See vercel-api.md for complete API documentation Deployment Patterns: See deployment-patterns.md for common deployment workflows

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
5 Docs1 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • references/deployment-patterns.md Docs
  • references/vercel-api.md Docs
  • SETUP.md Docs
  • scripts/vercel_deploy.sh Scripts