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-deploymentsVercel
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: Install | Step 2: Pair Account | Step 3: Connect Vercel |
|---|---|---|
![]() | ![]() | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open 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
- Install the ClawLink plugin (see Install above).
- Pair the plugin with
clawlink_begin_pairingif it is not configured yet. - Open https://claw-link.dev/dashboard?add=vercel and connect Vercel.
- Call
clawlink_list_integrationsto 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:
- Direct the user to https://claw-link.dev/dashboard?add=vercel
- After they confirm, call
clawlink_list_integrationsto verify - 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
| Tool | Description | Mode |
|---|---|---|
vercel_list_projects | List all projects in the account/team | Read |
vercel_get_project | Get project configuration and settings | Read |
vercel_create_project | Create a new project | Write |
vercel_update_project | Update project name, framework, or settings | Write |
vercel_delete_project | Delete a project and its deployments | Write |
Deployments
| Tool | Description | Mode |
|---|---|---|
vercel_list_deployments | List deployments with pagination and filters | Read |
vercel_get_deployment | Get deployment details including status and URLs | Read |
vercel_create_deployment | Create a new deployment | Write |
vercel_cancel_deployment | Cancel an in-progress deployment | Write |
vercel_delete_deployment | Delete a deployment | Write |
Domains
| Tool | Description | Mode |
|---|---|---|
vercel_list_domains | List all domains in the account | Read |
vercel_get_domain | Get domain details and DNS records | Read |
vercel_add_domain | Add a domain to a project | Write |
vercel_remove_domain | Remove a domain from a project | Write |
vercel_verify_domain | Verify domain ownership | Write |
Environment Variables
| Tool | Description | Mode |
|---|---|---|
vercel_list_env | List environment variables for a project | Read |
vercel_add_env | Add an environment variable to a project | Write |
vercel_update_env | Update an environment variable's value or scope | Write |
vercel_delete_env | Remove an environment variable | Write |
Teams & Members
| Tool | Description | Mode |
|---|---|---|
vercel_list_team_members | List all members of a team | Read |
vercel_invite_team_member | Invite a new member to the team | Write |
vercel_remove_team_member | Remove a member from the team | Write |
vercel_update_team_member_role | Change a member's role | Write |
Secrets
| Tool | Description | Mode |
|---|---|---|
vercel_list_secrets | List all secrets in the account | Read |
vercel_create_secret | Create a secret for use in environment variables | Write |
vercel_delete_secret | Delete a secret | Write |
Logs & Events
| Tool | Description | Mode |
|---|---|---|
vercel_get_deployment_events | Get deployment event log | Read |
vercel_get_audit_logs | Get team audit logs | Read |
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
- Call
clawlink_list_integrationsto confirm Vercel is connected. - Call
clawlink_list_tools --integration vercelto see the live catalog. - Treat the returned list as the source of truth. Do not guess or assume what tools exist.
- If the user describes a capability but the exact tool is unclear, call
clawlink_search_toolswith a short query and integrationvercel. - 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 │
└─────────────────────────────────────────────────────────────┘
- For unfamiliar tools, ambiguous requests, or any write action, call
clawlink_describe_toolfirst. - Use the returned guidance, schema,
whenToUse,askBefore,safeDefaults,examples, andfollowupsto shape the call. - Prefer read, list, and get operations before writes when that reduces ambiguity.
- For writes or anything marked as requiring confirmation, call
clawlink_preview_toolfirst. - Execute with
clawlink_call_tool. Pass confirmation only after the preview matches the user's intent. - 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, orproductionenvironments. - 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 / Error | Meaning |
|---|---|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration vercel. |
| Missing connection | Vercel is not connected. Direct the user to https://claw-link.dev/dashboard?add=vercel. |
Project not found | The project name does not exist in the account. |
Deployment not found | The deployment ID does not exist. |
Domain not found | The domain is not registered with the account. |
Domain not verified | Domain ownership has not been verified. Add DNS records first. |
Env not found | The environment variable does not exist in the project. |
Forbidden | The account lacks permission for this operation. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
Troubleshooting: Tools Not Visible
- Check that the ClawLink plugin is installed:
openclaw plugins list - If the plugin is installed but tools are missing, tell the user to send
/newas a standalone message to reload the catalog. - If a fresh chat does not help, run:
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json openclaw gateway restart - After restart, tell the user to send
/newagain and retry.
Resources
- Vercel REST API Documentation
- Vercel API Reference
- ClawLink: https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=vercel-deployments
- ClawLink Docs: https://docs.claw-link.dev/openclaw
- ClawLink Verification: https://claw-link.dev/verify
Powered by ClawLink — an integration hub for OpenClaw

Top skills in this category
API Gateway
@byungkyuCall 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
HubSpot
@hith3shHubSpot CRM API integration with managed OAuth. Manage contacts, companies, deals, pipelines, tickets, products, line items, marketing emails, and workflows....
Pipedrive
@byungkyuPipedrive 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.
Master Marketing
@tevfikgulepAll-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.
Feishu Bridge
@alexanysConnect 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.

