agentsclimarketplace

Domain dns ops

Skill mouadja02/skills/skills/devops/domain-dns-ops

DNS/domain ops: registrars, Cloudflare zones, redirects, DNS/HTTP verification.From its SKILL.md

Install
npx -y skills add mouadja02/skills --skill domain-dns-ops

Assembled 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)

  1. Decide routing model

    • Page Rule redirect (small scale, per-zone).
    • Bulk Redirects (account-level).
    • Worker route (fallback).
  2. 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}'
      
  3. Nameservers

    • Update nameservers at your registrar to Cloudflare's NS records.
  4. DNS placeholders (so CF can terminate HTTPS)

    • Proxied apex A192.0.2.1 (placeholder)
    • Proxied wildcard A192.0.2.1
  5. Redirect setup

    • Page Rule: destination URL + 301 permanent redirect.
    • Or use Cloudflare Bulk Redirects for multiple domains.
  6. 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.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.