{
  "schemaVersion": "1.0",
  "item": {
    "slug": "cloudflare-dns",
    "name": "Cloudflare Dns",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/pushp1997/cloudflare-dns",
    "canonicalUrl": "https://clawhub.ai/pushp1997/cloudflare-dns",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/cloudflare-dns",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cloudflare-dns",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/cf-dns.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/cloudflare-dns"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/cloudflare-dns",
    "agentPageUrl": "https://openagent3.xyz/skills/cloudflare-dns/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cloudflare-dns/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cloudflare-dns/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Cloudflare DNS",
        "body": "Manage DNS records via Cloudflare API using the bundled cf-dns.sh script."
      },
      {
        "title": "Setup",
        "body": "Store credentials in environment or pass via flags:\n\nexport CF_API_TOKEN=\"your-api-token\"\nexport CF_ZONE_ID=\"your-zone-id\"       # optional, can auto-detect from domain\n\nGet API token: Cloudflare Dashboard → My Profile → API Tokens → Create Token → \"Edit zone DNS\" template.\n\nGet Zone ID: Cloudflare Dashboard → select domain → Overview → right sidebar \"Zone ID\"."
      },
      {
        "title": "Usage",
        "body": "The script is at scripts/cf-dns.sh. All commands:\n\n# List zones (find zone ID)\ncf-dns.sh zones\n\n# List all records for a zone\ncf-dns.sh list <zone_id>\ncf-dns.sh list --domain example.com\n\n# Get specific record\ncf-dns.sh get <zone_id> <record_id>\n\n# Create record\ncf-dns.sh create <zone_id> --type A --name www --content 1.2.3.4 [--ttl 300] [--proxied]\ncf-dns.sh create <zone_id> --type CNAME --name blog --content example.com\ncf-dns.sh create <zone_id> --type TXT --name @ --content \"v=spf1 ...\"\ncf-dns.sh create <zone_id> --type MX --name @ --content mail.example.com --priority 10\n\n# Update record\ncf-dns.sh update <zone_id> <record_id> --content 5.6.7.8 [--ttl 600] [--proxied]\n\n# Delete record\ncf-dns.sh delete <zone_id> <record_id>\n\n# DDNS: update A record to current public IP\ncf-dns.sh ddns <zone_id> --name home\ncf-dns.sh ddns --domain example.com --name home"
      },
      {
        "title": "Common Patterns",
        "body": "Add subdomain pointing to IP:\n\ncf-dns.sh create <zone_id> --type A --name subdomain --content 203.0.113.50 --proxied\n\nSet up email (MX + SPF):\n\ncf-dns.sh create <zone_id> --type MX --name @ --content mail.example.com --priority 10\ncf-dns.sh create <zone_id> --type TXT --name @ --content \"v=spf1 include:_spf.google.com ~all\"\n\nDynamic DNS for home server:\n\n# Run periodically via cron\ncf-dns.sh ddns --domain example.com --name home"
      },
      {
        "title": "Notes",
        "body": "--proxied enables Cloudflare proxy (orange cloud) — hides origin IP, adds CDN\nTTL in seconds; use 1 for \"Auto\" when proxied\n@ means root domain\nScript outputs JSON; pipe to jq for parsing"
      }
    ],
    "body": "Cloudflare DNS\n\nManage DNS records via Cloudflare API using the bundled cf-dns.sh script.\n\nSetup\n\nStore credentials in environment or pass via flags:\n\nexport CF_API_TOKEN=\"your-api-token\"\nexport CF_ZONE_ID=\"your-zone-id\"       # optional, can auto-detect from domain\n\n\nGet API token: Cloudflare Dashboard → My Profile → API Tokens → Create Token → \"Edit zone DNS\" template.\n\nGet Zone ID: Cloudflare Dashboard → select domain → Overview → right sidebar \"Zone ID\".\n\nUsage\n\nThe script is at scripts/cf-dns.sh. All commands:\n\n# List zones (find zone ID)\ncf-dns.sh zones\n\n# List all records for a zone\ncf-dns.sh list <zone_id>\ncf-dns.sh list --domain example.com\n\n# Get specific record\ncf-dns.sh get <zone_id> <record_id>\n\n# Create record\ncf-dns.sh create <zone_id> --type A --name www --content 1.2.3.4 [--ttl 300] [--proxied]\ncf-dns.sh create <zone_id> --type CNAME --name blog --content example.com\ncf-dns.sh create <zone_id> --type TXT --name @ --content \"v=spf1 ...\"\ncf-dns.sh create <zone_id> --type MX --name @ --content mail.example.com --priority 10\n\n# Update record\ncf-dns.sh update <zone_id> <record_id> --content 5.6.7.8 [--ttl 600] [--proxied]\n\n# Delete record\ncf-dns.sh delete <zone_id> <record_id>\n\n# DDNS: update A record to current public IP\ncf-dns.sh ddns <zone_id> --name home\ncf-dns.sh ddns --domain example.com --name home\n\nCommon Patterns\n\nAdd subdomain pointing to IP:\n\ncf-dns.sh create <zone_id> --type A --name subdomain --content 203.0.113.50 --proxied\n\n\nSet up email (MX + SPF):\n\ncf-dns.sh create <zone_id> --type MX --name @ --content mail.example.com --priority 10\ncf-dns.sh create <zone_id> --type TXT --name @ --content \"v=spf1 include:_spf.google.com ~all\"\n\n\nDynamic DNS for home server:\n\n# Run periodically via cron\ncf-dns.sh ddns --domain example.com --name home\n\nNotes\n--proxied enables Cloudflare proxy (orange cloud) — hides origin IP, adds CDN\nTTL in seconds; use 1 for \"Auto\" when proxied\n@ means root domain\nScript outputs JSON; pipe to jq for parsing"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/pushp1997/cloudflare-dns",
    "publisherUrl": "https://clawhub.ai/pushp1997/cloudflare-dns",
    "owner": "pushp1997",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/cloudflare-dns",
    "downloadUrl": "https://openagent3.xyz/downloads/cloudflare-dns",
    "agentUrl": "https://openagent3.xyz/skills/cloudflare-dns/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cloudflare-dns/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cloudflare-dns/agent.md"
  }
}