vercel
Vercel API for deployments. Use when user mentions "Vercel", "vercel.app", "vercel.com", shares a Vercel link, "deploy", or asks about hosting.
What this skill does
## Troubleshooting
If requests fail, run `zero doctor check-connector --env-name VERCEL_TOKEN` or `zero doctor check-connector --url https://api.vercel.com/v2/user --method GET`
## User
### Get Current User
```bash
curl -s "https://api.vercel.com/v2/user" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### List Auth Tokens
```bash
curl -s "https://api.vercel.com/v6/user/tokens" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
## Projects
### List Projects
```bash
curl -s "https://api.vercel.com/v10/projects" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Get Project
```bash
curl -s "https://api.vercel.com/v9/projects/<project-name>" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
Use project name or ID.
### Create Project
```bash
curl -s -X POST "https://api.vercel.com/v11/projects" \
--header "Authorization: Bearer $VERCEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"name\": \"my-new-project\", \"framework\": \"nextjs\"}"
```
Only `name` is required. Optional: `framework`, `buildCommand`, `outputDirectory`, `rootDirectory`, `installCommand`.
### Update Project
```bash
curl -s -X PATCH "https://api.vercel.com/v9/projects/<project-name>" \
--header "Authorization: Bearer $VERCEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"buildCommand\": \"next build\", \"outputDirectory\": \".next\"}"
```
### Delete Project
```bash
curl -s -X DELETE "https://api.vercel.com/v9/projects/<project-name>" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
Returns 204 on success. Permanently deletes the project and all its deployments.
### Pause Project
```bash
curl -s -X POST "https://api.vercel.com/v1/projects/<project-id>/pause" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Unpause Project
```bash
curl -s -X POST "https://api.vercel.com/v1/projects/<project-id>/unpause" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
## Deployments
### List Deployments
```bash
curl -s "https://api.vercel.com/v6/deployments?limit=10" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
Params: `limit`, `projectId`, `state` (BUILDING/READY/ERROR/QUEUED/CANCELED), `target` (production/preview), `until` (pagination timestamp).
### List Deployments for a Project
```bash
curl -s "https://api.vercel.com/v6/deployments?projectId=<project-name>&limit=10" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Get Deployment
```bash
curl -s "https://api.vercel.com/v13/deployments/<deployment-id>" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Get Build Logs
```bash
curl -s "https://api.vercel.com/v3/deployments/<deployment-id>/events?limit=-1" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
Use `limit=-1` to get all log events.
### Get Runtime Logs
```bash
curl -s "https://api.vercel.com/v1/projects/<project-id>/deployments/<deployment-id>/runtime-logs" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Create Deployment (Redeploy)
```bash
curl -s -X POST "https://api.vercel.com/v13/deployments" \
--header "Authorization: Bearer $VERCEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"name\": \"my-project\", \"deploymentId\": \"<prev-deployment-id>\", \"target\": \"production\"}"
```
### Promote to Production (Rollback)
```bash
curl -s -X POST "https://api.vercel.com/v10/projects/<project-id>/promote/<deployment-id>" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Cancel Deployment
Only works for BUILDING or QUEUED deployments.
```bash
curl -s -X PATCH "https://api.vercel.com/v12/deployments/<deployment-id>/cancel" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Delete Deployment
```bash
curl -s -X DELETE "https://api.vercel.com/v13/deployments/<deployment-id>" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### List Deployment Aliases
```bash
curl -s "https://api.vercel.com/v2/deployments/<deployment-id>/aliases" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
## Domains
### List Domains
```bash
curl -s "https://api.vercel.com/v5/domains" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Get Domain
```bash
curl -s "https://api.vercel.com/v5/domains/<domain>" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Get Domain Config
```bash
curl -s "https://api.vercel.com/v6/domains/<domain>/config" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Add Domain
```bash
curl -s -X POST "https://api.vercel.com/v7/domains" \
--header "Authorization: Bearer $VERCEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"name\": \"example.com\"}"
```
### Update Domain
```bash
curl -s -X PATCH "https://api.vercel.com/v3/domains/<domain>" \
--header "Authorization: Bearer $VERCEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"op\": \"update\", \"redirectTarget\": \"www.example.com\"}"
```
### Delete Domain
```bash
curl -s -X DELETE "https://api.vercel.com/v6/domains/<domain>" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
## Project Domains
### List Project Domains
```bash
curl -s "https://api.vercel.com/v9/projects/<project-name>/domains" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Add Domain to Project
```bash
curl -s -X POST "https://api.vercel.com/v10/projects/<project-name>/domains" \
--header "Authorization: Bearer $VERCEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"name\": \"example.com\"}"
```
### Verify Project Domain
```bash
curl -s -X POST "https://api.vercel.com/v9/projects/<project-name>/domains/<domain>/verify" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Update Project Domain
```bash
curl -s -X PATCH "https://api.vercel.com/v9/projects/<project-name>/domains/<domain>" \
--header "Authorization: Bearer $VERCEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"redirect\": \"www.example.com\", \"redirectStatusCode\": 301}"
```
### Remove Domain from Project
```bash
curl -s -X DELETE "https://api.vercel.com/v9/projects/<project-name>/domains/<domain>" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
## DNS Records
### List DNS Records
```bash
curl -s "https://api.vercel.com/v5/domains/<domain>/records" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Create DNS Record
```bash
curl -s -X POST "https://api.vercel.com/v2/domains/<domain>/records" \
--header "Authorization: Bearer $VERCEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"name\": \"www\", \"type\": \"CNAME\", \"value\": \"cname.vercel-dns.com\"}"
```
### Delete DNS Record
```bash
curl -s -X DELETE "https://api.vercel.com/v2/domains/<domain>/records/<record-id>" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
## Environment Variables
### List Project Env Vars
```bash
curl -s "https://api.vercel.com/v10/projects/<project-name>/env" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Get Env Var
```bash
curl -s "https://api.vercel.com/v1/projects/<project-name>/env/<env-id>" \
--header "Authorization: Bearer $VERCEL_TOKEN"
```
### Create Env Var
```bash
curl -s -X POST "https://api.vercel.com/v10/projects/<project-name>/env" \
--header "Authorization: Bearer $VERCEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"key\": \"MY_VAR\", \"value\": \"my-value\", \"type\": \"encrypted\", \"target\": [\"production\", \"preview\", \"development\"]}"
```
`type`: `plain`, `encrypted`, `secret`, `sensitive`. `target`: `production`, `preview`, `development`.
### Update Env Var
```bash
curl -s -X PATCH "https://api.vercel.com/v9/projects/<project-name>/env/<env-id>" \
--header "Authorization: Bearer $VERCEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"value\": \"new-value\", \"target\": [\"production\"]}"
```
### Delete Env Var
```bash
curl -s -X DELETE "https://api.vercel.com/v9/projects/<project-name>/env/<env-id>" \
--header "Authorization: Bearer $VERCEL_TOKEN"
``Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.