# Send Domain Check 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": "domain-check",
    "name": "Domain Check",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/BrennerSpear/domain-check",
    "canonicalUrl": "https://clawhub.ai/BrennerSpear/domain-check",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/domain-check",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=domain-check",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "domain-check",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T17:05:53.854Z",
      "expiresAt": "2026-05-09T17:05:53.854Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=domain-check",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=domain-check",
        "contentDisposition": "attachment; filename=\"domain-check-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "domain-check"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/domain-check"
    },
    "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/domain-check",
    "downloadUrl": "https://openagent3.xyz/downloads/domain-check",
    "agentUrl": "https://openagent3.xyz/skills/domain-check/agent",
    "manifestUrl": "https://openagent3.xyz/skills/domain-check/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/domain-check/agent.md"
  }
}
```
## Documentation

### Domain Check & Buy (Vercel)

Check domain availability, pricing, and purchase — all via Vercel.

### Quick Reference

# Check availability + pricing for a name across TLDs
domain-check myproject

# Check specific TLDs
domain-check myproject com,io,dev,app,ai

# Buy a domain (interactive — needs pty:true)
npx vercel domains buy mydomain.com

# List your owned domains
npx vercel domains list

# Inspect a domain you own
npx vercel domains inspect mydomain.com

# Add domain to a Vercel project
npx vercel domains add mydomain.com my-project

# Transfer a domain into Vercel
npx vercel domains transfer-in mydomain.com

### Availability Check (domain-check)

Uses the Vercel Registrar API (/v1/registrar/domains/{domain}/price):

purchasePrice: null → domain is taken
purchasePrice: <number> → domain is available at that price

$ domain-check myproject
Checking: myproject
-----------------------------------------------------------
DOMAIN                    STATUS         BUY PRICE    RENEWAL
-----------------------------------------------------------
myproject.com             ❌ Taken       -            $11.25
myproject.io              ✅ Available   $46.00       $46.00
myproject.dev             ✅ Available   $13.00       $13.00
-----------------------------------------------------------
Prices from Vercel Registrar

### Buying (npx vercel domains buy)

Interactive command — requires pty: true when calling from exec.

# Example exec call
exec(command: "npx vercel domains buy myproject.dev", pty: true, timeout: 30)

The CLI will show price and ask for confirmation before charging.

### API Direct (for scripts)

VERCEL_TOKEN=$(jq -r '.token' ~/.local/share/com.vercel.cli/auth.json)
TEAM=$(jq -r '.currentTeam // empty' ~/.local/share/com.vercel.cli/config.json)
TEAM_PARAM="${TEAM:+?teamId=$TEAM}"

# Check price/availability
curl -s "https://api.vercel.com/v1/registrar/domains/example.com/price${TEAM_PARAM}" \\
  -H "Authorization: Bearer $VERCEL_TOKEN"
# Returns: { "years": 1, "purchasePrice": 11.25, "renewalPrice": 11.25, "transferPrice": 11.25 }
# purchasePrice: null = taken, number = available

# Buy via API
curl -s -X POST "https://api.vercel.com/v1/registrar/domains${TEAM_PARAM}" \\
  -H "Authorization: Bearer $VERCEL_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{"name": "example.com"}'

### Vercel CLI Domain Commands

CommandDescriptionnpx vercel domains listShow all domainsnpx vercel domains inspect <domain>Domain info (owned domains only)npx vercel domains buy <domain>Purchase (interactive)npx vercel domains add <domain> <project>Add to Vercel projectnpx vercel domains move <domain> <dest>Transfer to another teamnpx vercel domains transfer-in <domain>Transfer in to Vercelnpx vercel domains remove <domain>Remove from team

### Typical TLD Pricing (Vercel)

TLD~Price/yr.com$11.25.dev$13.app$15.co$27.io$46.ai$140.org$9.99.net$13.50.xyz$13

### Auth

Requires Vercel CLI authentication (npx vercel login). Token is read from ~/.local/share/com.vercel.cli/auth.json.

Team ID is auto-detected from Vercel CLI config, or set VERCEL_TEAM_ID env var to override. If neither is set, the personal account is used.

### Notes

Vercel registrar API replaced the old v4 domains/price endpoint (sunsetted Nov 2025)
domains inspect only works for domains you own — use the price API for availability
.ai domains are expensive ($140/yr) across all registrars
When buying via CLI, use pty: true for the interactive confirmation prompt
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: BrennerSpear
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T17:05:53.854Z
- Expires at: 2026-05-09T17:05:53.854Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/domain-check)
- [Send to Agent page](https://openagent3.xyz/skills/domain-check/agent)
- [JSON manifest](https://openagent3.xyz/skills/domain-check/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/domain-check/agent.md)
- [Download page](https://openagent3.xyz/downloads/domain-check)