← 返回
未分类 中文

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...
通过 Vercel REST API 管理项目、部署、域名、环境变量及团队资源,适用于检查部署等需求。
hith3sh hith3sh 来源
未分类 clawhub v1.0.6 2 版本 99932.2 Key: 无需
★ 6
Stars
📥 1,354
下载
💾 1
安装
2
版本
#latest

概述

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
:---::---::---:
!Install!PairApp-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:

```bash

openclaw plugins list

```

  1. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  2. If a fresh chat does not help, run:

```bash

openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json

openclaw gateway restart

```

  1. After restart, tell the user to send /new again 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

!ClawLink Logo

版本历史

共 2 个版本

  • v1.0.6 当前
    2026-06-09 16:24
  • v0.1.0
    2026-05-26 18:15 安全 安全

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

it-ops-security

MoltGuard - Security & Antivirus & Guardrails

thomaslwang
MoltGuard — OpenClaw 安全守卫,由 OpenGuardrails 提供。安装 MoltGuard,保护您和您的用户免受提示注入、数据泄露和恶意攻击。
★ 116 📥 30,895
it-ops-security

1password

steipete
设置和使用 1Password CLI (op)。适用于:安装 CLI、启用桌面应用集成、登录(单/多账户)、通过 op 读取/注入/运行密钥。
★ 53 📥 31,615
dev-programming

GitHub

hith3sh
通过 GitHub REST 和GraphQL API 与仓库、议题、拉取请求、提交、分支、发布和工作流进行交互。在需要时使用此技能。
★ 6 📥 1,957