From zeabur
Manages DNS records for Zeabur-registered domains using Zeabur CLI: list, create (A/AAAA/CNAME/MX/TXT/SRV/CAA/NS), update, delete. Supports TTL, priority, Cloudflare proxy. Use for add/update/delete DNS tasks.
npx claudepluginhub zeabur/agent-skills --plugin zeaburThis skill uses the workspace's default tool permissions.
> **Always use `npx zeabur@latest` to invoke Zeabur CLI.** Never use `zeabur` directly or any other installation method. If `npx` is not available, install Node.js first.
Manages Cloudflare zones, DNS records, and tunnels via API using bash scripts. Handles listing zones, creating/updating/deleting records, tunnel setup/configuration/deletion.
Configures Zeabur service domains and environment variables to fix redirects, CORS errors, trailing slashes in WEB_URL, and manage custom/generated domains via CLI.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Share bugs, ideas, or general feedback.
Always use
npx zeabur@latestto invoke Zeabur CLI. Never usezeaburdirectly or any other installation method. Ifnpxis not available, install Node.js first.
npx zeabur@latest domain dns list --domain example.com -i=false
npx zeabur@latest domain dns create --domain example.com --type A --name @ --content 1.2.3.4 -i=false
A, AAAA, CNAME, MX, TXT, SRV, CAA, NS
| Flag | Description |
|---|---|
--ttl | TTL in seconds (default 1 = auto) |
--priority | Priority for MX/SRV records |
--proxied | Proxy through Cloudflare |
# A record
npx zeabur@latest domain dns create --domain example.com --type A --name @ --content 93.184.216.34 -i=false
# CNAME record
npx zeabur@latest domain dns create --domain example.com --type CNAME --name www --content example.com -i=false
# MX record
npx zeabur@latest domain dns create --domain example.com --type MX --name @ --content mail.example.com --priority 10 -i=false
# TXT record (SPF)
npx zeabur@latest domain dns create --domain example.com --type TXT --name @ --content "v=spf1 include:_spf.google.com ~all" -i=false
Identify the record by --type and --name (no need to look up record IDs):
npx zeabur@latest domain dns update --domain example.com --type A --name @ --content 5.6.7.8 -i=false
Optional: --ttl, --priority, --proxied
If multiple records match the same type+name, use --record-id to specify.
npx zeabur@latest domain dns delete --domain example.com --type A --name test -y -i=false
After creating/updating records, verify with dig:
dig @<nameserver> <name>.<domain> <type> +short
zeabur-domain-url skill instead.--domain accepts the domain name (e.g. example.com). Use --domain-id only for advanced scripting.