Vercel

Manage Vercel projects, deployments, domains, environment variables, and team resources via the Vercel REST API. Use this skill when users want to inspect de...

Jay

@hith3sh

What This Skill Does

Manage Vercel projects, deployments, domains, environment variables, and team resources via the Vercel REST API from chat. Uses ClawLink for hosted OAuth so no manual API token configuration is needed.

Replaces manually configuring Vercel API tokens and writing custom scripts by providing a chat-driven interface for all major Vercel DevOps operations.

When to Use It

  • List all Vercel projects and their recent deployments
  • Inspect a specific deployment's status, logs, or preview URL
  • Add or update environment variables for a Vercel project
  • Configure custom domains and verify DNS settings
  • Trigger a new production deployment from a Git branch
  • Manage team members and resource access across projects

Install

$ openclaw skills install @hith3sh/vercel-deployments

Vercel

Vercel

Manage Vercel projects, deployments, domains, environment variables, and team resources from chat via the Vercel REST API.

This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Vercel API access yourself.

Setup in 3 Steps

Step 1: InstallStep 2: Pair AccountStep 3: Connect Vercel
InstallPairApp-specific connection GIF coming soon
Run the install command in OpenClawSign in and approve the deviceOpen the dashboard and connect Vercel

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   OpenClaw      │────▶│   ClawLink   │────▶│  Vercel REST     │
│   (User Chat)   │     │   (OAuth)    │     │      API         │
└─────────────────┘     └──────────────┘     └──────────────────┘
         │                       │                       │
         │  1. Install Plugin    │                       │
         │  2. Pair Device       │                       │
         │  3. Connect Vercel    │                       │
         │                       │  4. Secure Token       │
         │                       │  5. Proxy Requests    │
         │                       │                       │
         ▼                       ▼                       ▼
   ┌──────────┐           ┌──────────┐           ┌──────────┐
   │  SKILL   │           │ Dashboard│           │  Vercel │
   │  File    │           │ Auth     │           │ Account │
   └──────────┘           └──────────┘           └──────────┘

Install

Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.

openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart

Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Vercel again."

Quick Start

# List projects
clawlink_call_tool --tool "vercel_list_projects" --params '{}'

# Get deployment details
clawlink_call_tool --tool "vercel_get_deployment" --params '{"deployment_id": "DEPLOYMENT_ID"}'

# List deployments
clawlink_call_tool --tool "vercel_list_deployments" --params '{"project_name": "my-project"}'

Authentication

All Vercel tool calls are authenticated automatically by ClawLink using the user's connected Vercel account token.

No API token is required in chat. ClawLink stores the token securely and injects it into every Vercel API request on the user's behalf.

Getting Connected

  1. Install the ClawLink plugin (see Install above).
  2. Pair the plugin with clawlink_begin_pairing if it is not configured yet.
  3. Open https://claw-link.dev/dashboard?add=vercel and connect Vercel.
  4. Call clawlink_list_integrations to verify the connection is active.

Connection Management

List Connections

clawlink_list_integrations

Response: Returns all connected integrations. Look for vercel in the list.

Verify Connection

clawlink_list_tools --integration vercel

Response: Returns the live tool catalog for Vercel.

Reconnect

If Vercel tools are missing or the connection shows an error:

  1. Direct the user to https://claw-link.dev/dashboard?add=vercel
  2. After they confirm, call clawlink_list_integrations to verify
  3. Then call clawlink_list_tools --integration vercel

Security & Permissions

  • Access is scoped to the Vercel account connected during OAuth setup and the scopes granted.
  • All write operations (deploy, create project, update settings, add domains) require explicit user confirmation.
  • Destructive operations (delete deployment, remove domain) are high-impact and must be confirmed.
  • Environment variable changes can affect running deployments — confirm before modifying.

Tool Reference

Projects

ToolDescriptionMode
vercel_list_projectsList all projects in the account/teamRead
vercel_get_projectGet project configuration and settingsRead
vercel_create_projectCreate a new projectWrite
vercel_update_projectUpdate project name, framework, or settingsWrite
vercel_delete_projectDelete a project and its deploymentsWrite

Deployments

ToolDescriptionMode
vercel_list_deploymentsList deployments with pagination and filtersRead
vercel_get_deploymentGet deployment details including status and URLsRead
vercel_create_deploymentCreate a new deploymentWrite
vercel_cancel_deploymentCancel an in-progress deploymentWrite
vercel_delete_deploymentDelete a deploymentWrite

Domains

ToolDescriptionMode
vercel_list_domainsList all domains in the accountRead
vercel_get_domainGet domain details and DNS recordsRead
vercel_add_domainAdd a domain to a projectWrite
vercel_remove_domainRemove a domain from a projectWrite
vercel_verify_domainVerify domain ownershipWrite

Environment Variables

ToolDescriptionMode
vercel_list_envList environment variables for a projectRead
vercel_add_envAdd an environment variable to a projectWrite
vercel_update_envUpdate an environment variable's value or scopeWrite
vercel_delete_envRemove an environment variableWrite

Teams & Members

ToolDescriptionMode
vercel_list_team_membersList all members of a teamRead
vercel_invite_team_memberInvite a new member to the teamWrite
vercel_remove_team_memberRemove a member from the teamWrite
vercel_update_team_member_roleChange a member's roleWrite

Secrets

ToolDescriptionMode
vercel_list_secretsList all secrets in the accountRead
vercel_create_secretCreate a secret for use in environment variablesWrite
vercel_delete_secretDelete a secretWrite

Logs & Events

ToolDescriptionMode
vercel_get_deployment_eventsGet deployment event logRead
vercel_get_audit_logsGet team audit logsRead

Code Examples

List all projects

clawlink_call_tool --tool "vercel_list_projects" \
  --params '{
    "team_id": "team_id"
  }'

Get deployment details

clawlink_call_tool --tool "vercel_get_deployment" \
  --params '{
    "deployment_id": "dpl_1234567890"
  }'

List deployments for a project

clawlink_call_tool --tool "vercel_list_deployments" \
  --params '{
    "project_name": "my-nextjs-app",
    "limit": 10
  }'

Add an environment variable

clawlink_call_tool --tool "vercel_add_env" \
  --params '{
    "project_name": "my-nextjs-app",
    "key": "DATABASE_URL",
    "value": "postgres://...",
    "environment": "production"
  }'

Verify a domain

clawlink_call_tool --tool "vercel_verify_domain" \
  --params '{
    "domain": "example.com"
  }'

Cancel a deployment

clawlink_call_tool --tool "vercel_cancel_deployment" \
  --params '{
    "deployment_id": "dpl_1234567890"
  }'

Discovery Workflow

  1. Call clawlink_list_integrations to confirm Vercel is connected.
  2. Call clawlink_list_tools --integration vercel to see the live catalog.
  3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.
  4. If the user describes a capability but the exact tool is unclear, call clawlink_search_tools with a short query and integration vercel.
  5. If no Vercel tools appear, direct the user to https://claw-link.dev/dashboard?add=vercel.

Execution Workflow

┌─────────────────────────────────────────────────────────────┐
│  READ OPERATIONS (Safe)                                     │
│  list → get → describe                                      │
│                                                             │
│  Example: List projects → Get deployments → Show status     │
└─────────────────────────────────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────┐
│  WRITE OPERATIONS (Require Confirmation)                    │
│  describe → preview → confirm → call                        │
│                                                             │
│  Example: Preview env var change → User approves → Update   │
└─────────────────────────────────────────────────────────────┘
  1. For unfamiliar tools, ambiguous requests, or any write action, call clawlink_describe_tool first.
  2. Use the returned guidance, schema, whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.
  3. Prefer read, list, and get operations before writes when that reduces ambiguity.
  4. For writes or anything marked as requiring confirmation, call clawlink_preview_tool first.
  5. Execute with clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.
  6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.

Notes

  • Deployment IDs start with dpl_ and project names are used in deployment URLs.
  • Environment variables can be scoped to development, preview, or production environments.
  • Domain verification requires adding DNS records — check the verification status with vercel_get_domain.
  • Deleted deployments cannot be restored.
  • Team operations require the authenticated user to be a team owner or admin.
  • Vercel uses a specific deployment URL format: https://project.vercel.app.

Error Handling

Status / ErrorMeaning
Tool not foundThe tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration vercel.
Missing connectionVercel is not connected. Direct the user to https://claw-link.dev/dashboard?add=vercel.
Project not foundThe project name does not exist in the account.
Deployment not foundThe deployment ID does not exist.
Domain not foundThe domain is not registered with the account.
Domain not verifiedDomain ownership has not been verified. Add DNS records first.
Env not foundThe environment variable does not exist in the project.
ForbiddenThe account lacks permission for this operation.
Write rejectedUser did not confirm a write action. Always confirm before executing writes.

Troubleshooting: Tools Not Visible

  1. Check that the ClawLink plugin is installed:
    openclaw plugins list
    
  2. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  3. If a fresh chat does not help, run:
    openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
    openclaw gateway restart
    
  4. After restart, tell the user to send /new again and retry.

Resources


Powered by ClawLink — an integration hub for OpenClaw

ClawLink Logo

Top skills in this category

API Gateway

@byungkyu

Call third-party APIs through the Maton gateway, which injects the credential for an app the user has already connected. Use this skill when the user names a connected app and a concrete action in it - read a mailbox, query a CRM, file an issue, update a spreadsheet, run a query through a connected

39486k

HubSpot

@hith3sh

HubSpot CRM API integration with managed OAuth. Manage contacts, companies, deals, pipelines, tickets, products, line items, marketing emails, and workflows....

326.8k

Pipedrive

@byungkyu

Pipedrive API integration with managed OAuth. Manage deals, persons, organizations, activities, and pipelines. Use this skill when users want to interact with Pipedrive CRM. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway). Calls run through the `maton` CLI with OAuth login; default to read and list calls, and confirm every write or new connection with the user.

717k

Master Marketing

@tevfikgulep

All-in-one marketing engine combining growth strategy, content remixing, and trend monitoring. Drive growth with data-driven strategies, repurposed content across all platforms, and real-time trend analysis.

147.6k

Feishu Bridge

@alexanys

Connect a Feishu (Lark) bot to Clawdbot via WebSocket long-connection. No public server, domain, or ngrok required. Use when setting up Feishu/Lark as a messaging channel, troubleshooting the Feishu bridge, or managing the bridge service (start/stop/logs). Covers bot creation on Feishu Open Platform, credential setup, bridge startup, macOS launchd auto-restart, and group chat behavior tuning.

812k