Domain dns ops
DNS/domain ops: registrars, Cloudflare zones, redirects, DNS/HTTP verification.From its SKILL.md
npx -y skills add mouadja02/skills --skill domain-dns-opsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.1 KB, 518 tokens by cl100k_base, as published. Nobody here has run it
Domain/DNS Ops
Attribution: Sourced from steipete/agent-scripts by Peter Steinberger.
When to Use
- Setting up DNS zones and records on Cloudflare
- Configuring vanity domains, redirects, and nameserver delegation
- Verifying DNS propagation and HTTP redirect chains
Golden Path (new vanity domain → Cloudflare → redirect)
-
Decide routing model
- Page Rule redirect (small scale, per-zone).
- Bulk Redirects (account-level).
- Worker route (fallback).
-
Cloudflare zone
- Create zone in Cloudflare dashboard, then confirm:
curl -s "https://api.cloudflare.com/client/v4/zones?name=example.com" \ -H "Authorization: Bearer $CLOUDFLARE_API_TOKEN" | jq '.result[0] | {id, name, status}'
- Create zone in Cloudflare dashboard, then confirm:
-
Nameservers
- Update nameservers at your registrar to Cloudflare's NS records.
-
DNS placeholders (so CF can terminate HTTPS)
- Proxied apex
A→192.0.2.1(placeholder) - Proxied wildcard
A→192.0.2.1
- Proxied apex
-
Redirect setup
- Page Rule: destination URL +
301permanent redirect. - Or use Cloudflare Bulk Redirects for multiple domains.
- Page Rule: destination URL +
-
Verify
# DNS check
dig +short example.com @1.1.1.1
# HTTPS redirect
curl -I https://example.com
# Expect: HTTP/2 301 or 302 with Location header
Common Commands
# Check if domain resolves to Cloudflare
dig +short example.com @1.1.1.1
# Check HTTP/HTTPS redirect
curl -sIL https://example.com | grep -E "HTTP/|Location:"
# Check DNS propagation
dig +short example.com @8.8.8.8
dig +short example.com @1.1.1.1
Guardrails
- Confirm registrar before debugging Cloudflare "invalid nameservers" (often "wrong registrar").
- Prefer reversible steps; verify after each change (NS → DNS → redirect).
- Do not print API tokens or secrets.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.