agentsclimarketplace

Dns management

Skill ominou5/funnel-architect-plugin/skills/dns-management

Guides users through DNS configuration for custom funnel domains. Covers A/CNAME records, SSL setup, and platform-specific DNS requirements.From its SKILL.md

Install
npx -y skills add ominou5/funnel-architect-plugin --skill dns-management

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • runs commandsInstructs the agent to run 3 commands, including `dig example.com +short` and 2 more.

SKILL.md

1.6 KB, 436 tokens by cl100k_base, as published. Nobody here has run it

DNS Management

Common DNS Setup Patterns

Netlify

Type: CNAME
Name: @ (or www)
Value: [site-name].netlify.app
TTL: Auto

Vercel

Type: A
Name: @
Value: 76.76.21.21

Type: CNAME
Name: www
Value: cname.vercel-dns.com
TTL: Auto

Cloudflare Pages

Type: CNAME
Name: @
Value: [project-name].pages.dev
TTL: Auto

DNS Providers Quick Reference

ProviderDashboard URLPropagation
Cloudflaredash.cloudflare.comInstant (proxied)
Namecheapap.www.namecheap.com1–24 hours
GoDaddydcc.godaddy.com1–24 hours
Google Domainsdomains.google.com1–48 hours
Route 53 (AWS)console.aws.amazon.com/route531–24 hours

SSL/TLS

  • Netlify: Automatic Let's Encrypt (free)
  • Vercel: Automatic (free)
  • Cloudflare: Universal SSL (free, edge-only) or Full SSL (end-to-end)

www vs non-www

Pick one and redirect the other:

  • Set primary domain (e.g., example.com)
  • Add redirect: www.example.com → example.com (301)
  • Configure in hosting platform's redirect settings

Verification

# Check DNS propagation
dig example.com +short

# Check if SSL is active
curl -I https://example.com

# Check redirect
curl -I http://www.example.com

Troubleshooting

  • DNS not propagating: Wait 24–48 hours, or flush local DNS cache
  • SSL not working: Ensure DNS points to hosting provider, not old server
  • Mixed content: Update all internal links to use https://

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. 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.