# Send Vercel 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "lb-vercel-skill",
    "name": "Vercel",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/leonaaardob/lb-vercel-skill",
    "canonicalUrl": "https://clawhub.ai/leonaaardob/lb-vercel-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/lb-vercel-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lb-vercel-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/lb-vercel-skill"
    },
    "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/lb-vercel-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/lb-vercel-skill",
    "agentUrl": "https://openagent3.xyz/skills/lb-vercel-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lb-vercel-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lb-vercel-skill/agent.md"
  }
}
```
## Documentation

### Vercel

Complete Vercel CLI reference and documentation access.

### When to Use

Deploying applications to Vercel
Managing projects, domains, and environment variables
Running local development server
Viewing deployment logs and status
Looking up Vercel documentation

### Documentation

Fetch any Vercel docs page as markdown:

curl -s "https://vercel.com/docs/<path>" -H 'accept: text/markdown'

Get the full sitemap to discover all available pages:

curl -s "https://vercel.com/docs/sitemap.md" -H 'accept: text/markdown'

### Deployment

vercel / vercel deploy [path]

Deploy the current directory or specified path.

Options:

--prod - Deploy to production
-e KEY=VALUE - Set runtime environment variables
-b KEY=VALUE - Set build-time environment variables
--prebuilt - Deploy prebuilt output (use with vercel build)
--force - Force new deployment even if unchanged
--no-wait - Don't wait for deployment to finish
-y, --yes - Skip prompts, use defaults

Examples:

vercel                          # deploy current directory
vercel --prod                   # deploy to production
vercel /path/to/project         # deploy specific path
vercel -e NODE_ENV=production   # with env var
vercel build && vercel --prebuilt  # prebuilt deploy

vercel build

Build the project locally into ./vercel/output.

vercel build

vercel dev [dir]

Start local development server.

Options:

-l, --listen <URI> - Port/address (default: 0.0.0.0:3000)

Examples:

vercel dev                  # start on port 3000
vercel dev --listen 8080    # start on port 8080

### Project Management

vercel link [path]

Link local directory to a Vercel project.

Options:

-p, --project <NAME> - Specify project name
-y, --yes - Skip prompts

Examples:

vercel link
vercel link --yes
vercel link -p my-project

vercel projects

Manage projects.

vercel projects list              # list all projects
vercel projects add <name>        # create new project
vercel projects inspect [name]    # show project details
vercel projects remove <name>     # delete project

vercel pull [path]

Pull project settings and env vars from cloud.

vercel pull

### Environment Variables

vercel env

Manage environment variables.

vercel env list [environment]                    # list env vars
vercel env add <name> [environment]              # add env var
vercel env remove <name> [environment]           # remove env var
vercel env pull [filename]                       # pull to .env.local

Environments: development, preview, production

Examples:

vercel env list production
vercel env add DATABASE_URL production
vercel env pull .env.local

### Domains & Aliases

vercel domains

Manage domain names.

vercel domains list                          # list domains
vercel domains add <domain> <project>        # add domain
vercel domains inspect <domain>              # show domain info
vercel domains remove <domain>               # remove domain
vercel domains buy <domain>                  # purchase domain
vercel domains transfer-in <domain>          # transfer domain to Vercel

vercel alias

Manage deployment aliases.

vercel alias list                                    # list aliases
vercel alias set <deployment> <alias>                # create alias
vercel alias remove <alias>                          # remove alias

Examples:

vercel alias set my-app-abc123.vercel.app my-app.vercel.app
vercel alias set my-app-abc123.vercel.app custom-domain.com

### Deployments

vercel ls [app] / vercel list

List deployments.

vercel ls
vercel ls my-project

vercel inspect [id]

Display deployment information.

vercel inspect <deployment-url-or-id>

vercel logs <url|id>

View runtime logs for a deployment.

Options:

-j, --json - Output as JSON (compatible with jq)

Examples:

vercel logs my-app.vercel.app
vercel logs <deployment-id> --json
vercel logs <deployment-id> --json | jq 'select(.level == "error")'

vercel promote <url|id>

Promote deployment to production.

vercel promote <deployment-url-or-id>

vercel rollback [url|id]

Rollback to previous deployment.

vercel rollback
vercel rollback <deployment-url-or-id>

vercel redeploy [url|id]

Rebuild and deploy a previous deployment.

vercel redeploy <deployment-url-or-id>

vercel rm <id> / vercel remove

Remove a deployment.

vercel rm <deployment-url-or-id>

### Authentication & Teams

vercel login [email]      # log in or create account
vercel logout             # log out
vercel whoami             # show current user
vercel switch [scope]     # switch between scopes/teams
vercel teams              # manage teams

### Other Commands

vercel open               # open project in dashboard
vercel init [example]     # initialize from example
vercel install [name]     # install marketplace integration
vercel integration        # manage integrations
vercel certs              # manage SSL certificates
vercel dns                # manage DNS records
vercel bisect             # binary search for bug-introducing deployment

### Global Options

Available on all commands:

OptionDescription-h, --helpShow help-v, --versionShow version-d, --debugDebug mode-t, --token <TOKEN>Auth token-S, --scopeSet scope/team--cwd <DIR>Working directory-A, --local-config <FILE>Path to vercel.json--no-colorDisable colors

### Quick Reference

TaskCommandDeployvercel or vercel --prodDev serververcel devLink projectvercel linkList deploymentsvercel lsView logsvercel logs <url>Add env varvercel env add <name> <env>Pull env varsvercel env pullRollbackvercel rollbackAdd domainvercel domains add <domain> <project>Get docscurl -s "https://vercel.com/docs/<path>" -H 'accept: text/markdown'Docs sitemapcurl -s "https://vercel.com/docs/sitemap.md" -H 'accept: text/markdown'
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: leonaaardob
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/lb-vercel-skill)
- [Send to Agent page](https://openagent3.xyz/skills/lb-vercel-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/lb-vercel-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lb-vercel-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/lb-vercel-skill)