AgentStack
SKILL verified MIT Self-run

Dns

skill-floomhq-moto-dns · by floomhq

>

No reviews yet
0 installs
39 views
0.0% view→install

Install

$ agentstack add skill-floomhq-moto-dns

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Dns? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

DNS Management

Auth

# Set your DNS provider API key
DNS_API_KEY=""
DNS_API_BASE=""  # e.g., https://api.hosting.ionos.com/dns/v1/zones

Header: X-API-Key: $DNS_API_KEY (or Authorization: Bearer $DNS_API_KEY depending on provider)

Known Zone IDs

| Domain | Zone ID | |--------|---------| | example.com | `` |

Operations

List all zones (find zone ID)

curl -s -H "X-API-Key: $DNS_API_KEY" "$DNS_API_BASE" | jq '.[] | {name, id}'

List records for a zone

curl -s -H "X-API-Key: $DNS_API_KEY" "$DNS_API_BASE/{zoneId}" | jq '.records[] | {name, type, content, id}'
# Filter by type:
curl -s -H "X-API-Key: $DNS_API_KEY" "$DNS_API_BASE/{zoneId}?recordType=A"

Add record

curl -s -X POST \
  -H "X-API-Key: $DNS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[{"name":"sub.domain.com","type":"A","content":"1.2.3.4","ttl":3600}]' \
  "$DNS_API_BASE/{zoneId}/records"

Update record (need record ID first)

curl -s -X PUT \
  -H "X-API-Key: $DNS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"content":"1.2.3.4","ttl":3600}' \
  "$DNS_API_BASE/{zoneId}/records/{recordId}"

Delete record

curl -s -X DELETE \
  -H "X-API-Key: $DNS_API_KEY" \
  "$DNS_API_BASE/{zoneId}/records/{recordId}"

Workflow

  1. If zone ID unknown: list zones, find matching domain
  2. List existing records for the zone
  3. Add / update / delete as needed
  4. Verify: dig sub.domain.com @8.8.8.8 (propagation takes 1-5 min)

Common Record Types

| Type | Use case | Example content | |------|----------|-----------------| | A | IPv4 | 93.184.216.34 | | CNAME | Alias | cname.vercel-dns.com | | TXT | Verification, SPF | "v=spf1 include:..." | | MX | Email | 10 smtp.example.com |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

  • Author: floomhq
  • Source: floomhq/moto
  • License: MIT
  • Homepage: https://github.com/floomhq/moto#readme

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.