From zeabur
Adds, updates, deletes, and lists DNS records (A, AAAA, CNAME, MX, TXT, SRV, CAA, NS) for Zeabur-registered domains via the Zeabur CLI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/zeabur:zeabur-domain-dnsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **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.
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.npx claudepluginhub zeabur/agent-skills --plugin zeaburConfigures public URLs for Zeabur services using ZEABUR_WEB_DOMAIN to avoid trailing slash issues. Manages domains (list, create, delete) via Zeabur CLI.
Guides DNS configuration for custom funnel domains on Netlify, Vercel, Cloudflare Pages. Covers A/CNAME records, SSL setup, provider references, verification commands, and troubleshooting.
Expert guidance for Azure DNS: decision making, architecture, limits, security, configuration, and coding patterns. Covers DNS zones/records, DNSSEC, Private DNS/resolvers, reverse DNS, and migrations.