# Send Vercel Deploy to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "vercel-deploy",
    "name": "Vercel Deploy",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/nightfullstar/vercel-deploy",
    "canonicalUrl": "https://clawhub.ai/nightfullstar/vercel-deploy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/vercel-deploy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vercel-deploy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SETUP.md",
      "SKILL.md",
      "references/deployment-patterns.md",
      "references/vercel-api.md",
      "scripts/vercel_deploy.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "vercel-deploy",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T17:22:57.380Z",
      "expiresAt": "2026-05-08T17:22:57.380Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vercel-deploy",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vercel-deploy",
        "contentDisposition": "attachment; filename=\"vercel-deploy-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "vercel-deploy"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/vercel-deploy"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/vercel-deploy",
    "downloadUrl": "https://openagent3.xyz/downloads/vercel-deploy",
    "agentUrl": "https://openagent3.xyz/skills/vercel-deploy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vercel-deploy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vercel-deploy/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nightfullstar
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T17:22:57.380Z
- Expires at: 2026-05-08T17:22:57.380Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/vercel-deploy)
- [Send to Agent page](https://openagent3.xyz/skills/vercel-deploy/agent)
- [JSON manifest](https://openagent3.xyz/skills/vercel-deploy/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/vercel-deploy/agent.md)
- [Download page](https://openagent3.xyz/downloads/vercel-deploy)