{
  "schemaVersion": "1.0",
  "item": {
    "slug": "alicloud-network-dns-cli",
    "name": "Alicloud Network Dns Cli",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/cinience/alicloud-network-dns-cli",
    "canonicalUrl": "https://clawhub.ai/cinience/alicloud-network-dns-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/alicloud-network-dns-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=alicloud-network-dns-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "agents/openai.yaml",
      "references/sources.md"
    ],
    "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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/alicloud-network-dns-cli"
    },
    "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/alicloud-network-dns-cli",
    "agentPageUrl": "https://openagent3.xyz/skills/alicloud-network-dns-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/alicloud-network-dns-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/alicloud-network-dns-cli/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": "Goals",
        "body": "Query and manage Alibaba Cloud DNS records via aliyun-cli.\nQuickly configure CNAME for Function Compute custom domains."
      },
      {
        "title": "When to Use",
        "body": "When you need to add/update DNS records in Alibaba Cloud DNS.\nWhen you need CNAME setup for FC custom domains."
      },
      {
        "title": "Install aliyun-cli (without sudo)",
        "body": "curl -fsSL https://aliyuncli.alicdn.com/aliyun-cli-linux-latest-amd64.tgz -o /tmp/aliyun-cli.tgz\nmkdir -p ~/.local/bin\n tar -xzf /tmp/aliyun-cli.tgz -C /tmp\nmv /tmp/aliyun ~/.local/bin/aliyun\nchmod +x ~/.local/bin/aliyun"
      },
      {
        "title": "Configure Credentials",
        "body": "~/.local/bin/aliyun configure set \\\n  --profile default \\\n  --access-key-id <AK> \\\n  --access-key-secret <SK> \\\n  --region cn-hangzhou\n\nConfigure region as default; if best region is unclear, ask the user."
      },
      {
        "title": "Query DNS Records",
        "body": "Query subdomain records:\n\n~/.local/bin/aliyun alidns DescribeSubDomainRecords \\\n  --SubDomain news.example.com"
      },
      {
        "title": "Add CNAME Record",
        "body": "~/.local/bin/aliyun alidns AddDomainRecord \\\n  --DomainName example.com \\\n  --RR news \\\n  --Type CNAME \\\n  --Value <TARGET>"
      },
      {
        "title": "FC Custom Domain CNAME Target",
        "body": "Custom domain should point to FC public CNAME:\n\n<account_id>.<region_id>.fc.aliyuncs.com\n\nExample (Hangzhou):\n\n1629965279769872.cn-hangzhou.fc.aliyuncs.com"
      },
      {
        "title": "Common Issues",
        "body": "If apex CNAME is not supported, use subdomain like www or ALIAS/ANAME records.\nCreate FC custom domain only after DNS propagation, otherwise DomainNameNotResolved may occur."
      },
      {
        "title": "References",
        "body": "aliyun-cli installation\n\nhttps://help.aliyun.com/zh/cli/install-cli-on-linux\n\n\n\nAlidns API（AddDomainRecord / DescribeSubDomainRecords）\n\nhttps://help.aliyun.com/zh/dns/api-alidns-2015-01-09-adddomainrecord\nhttps://help.aliyun.com/zh/dns/api-alidns-2015-01-09-describesubdomainrecords\n\n\n\nFC custom domain configuration and CNAME guidance\n\nhttps://www.alibabacloud.com/help/en/functioncompute/fc/user-guide/configure-custom-domain-names\n\n\n\nOfficial source list:references/sources.md"
      },
      {
        "title": "Validation",
        "body": "mkdir -p output/alicloud-network-dns-cli\necho \"validation_placeholder\" > output/alicloud-network-dns-cli/validate.txt\n\nPass criteria: command exits 0 and output/alicloud-network-dns-cli/validate.txt is generated."
      },
      {
        "title": "Output And Evidence",
        "body": "Save artifacts, command outputs, and API response summaries under output/alicloud-network-dns-cli/.\nInclude key parameters (region/resource id/time range) in evidence files for reproducibility."
      },
      {
        "title": "Prerequisites",
        "body": "Configure least-privilege Alibaba Cloud credentials before execution.\nPrefer environment variables: ALICLOUD_ACCESS_KEY_ID, ALICLOUD_ACCESS_KEY_SECRET, optional ALICLOUD_REGION_ID.\nIf region is unclear, ask the user before running mutating operations."
      },
      {
        "title": "Workflow",
        "body": "Confirm user intent, region, identifiers, and whether the operation is read-only or mutating.\nRun one minimal read-only query first to verify connectivity and permissions.\nExecute the target operation with explicit parameters and bounded scope.\nVerify results and save output/evidence files."
      }
    ],
    "body": "Category: tool\n\nAlibaba Cloud DNS (Alidns) CLI\nGoals\nQuery and manage Alibaba Cloud DNS records via aliyun-cli.\nQuickly configure CNAME for Function Compute custom domains.\nWhen to Use\nWhen you need to add/update DNS records in Alibaba Cloud DNS.\nWhen you need CNAME setup for FC custom domains.\nInstall aliyun-cli (without sudo)\ncurl -fsSL https://aliyuncli.alicdn.com/aliyun-cli-linux-latest-amd64.tgz -o /tmp/aliyun-cli.tgz\nmkdir -p ~/.local/bin\n tar -xzf /tmp/aliyun-cli.tgz -C /tmp\nmv /tmp/aliyun ~/.local/bin/aliyun\nchmod +x ~/.local/bin/aliyun\n\nConfigure Credentials\n~/.local/bin/aliyun configure set \\\n  --profile default \\\n  --access-key-id <AK> \\\n  --access-key-secret <SK> \\\n  --region cn-hangzhou\n\n\nConfigure region as default; if best region is unclear, ask the user.\n\nQuery DNS Records\n\nQuery subdomain records:\n\n~/.local/bin/aliyun alidns DescribeSubDomainRecords \\\n  --SubDomain news.example.com\n\nAdd CNAME Record\n~/.local/bin/aliyun alidns AddDomainRecord \\\n  --DomainName example.com \\\n  --RR news \\\n  --Type CNAME \\\n  --Value <TARGET>\n\nFC Custom Domain CNAME Target\n\nCustom domain should point to FC public CNAME:\n\n<account_id>.<region_id>.fc.aliyuncs.com\n\n\nExample (Hangzhou):\n\n1629965279769872.cn-hangzhou.fc.aliyuncs.com\n\nCommon Issues\nIf apex CNAME is not supported, use subdomain like www or ALIAS/ANAME records.\nCreate FC custom domain only after DNS propagation, otherwise DomainNameNotResolved may occur.\nReferences\n\naliyun-cli installation\n\nhttps://help.aliyun.com/zh/cli/install-cli-on-linux\n\nAlidns API（AddDomainRecord / DescribeSubDomainRecords）\n\nhttps://help.aliyun.com/zh/dns/api-alidns-2015-01-09-adddomainrecord\nhttps://help.aliyun.com/zh/dns/api-alidns-2015-01-09-describesubdomainrecords\n\nFC custom domain configuration and CNAME guidance\n\nhttps://www.alibabacloud.com/help/en/functioncompute/fc/user-guide/configure-custom-domain-names\n\nOfficial source list:references/sources.md\n\nValidation\nmkdir -p output/alicloud-network-dns-cli\necho \"validation_placeholder\" > output/alicloud-network-dns-cli/validate.txt\n\n\nPass criteria: command exits 0 and output/alicloud-network-dns-cli/validate.txt is generated.\n\nOutput And Evidence\nSave artifacts, command outputs, and API response summaries under output/alicloud-network-dns-cli/.\nInclude key parameters (region/resource id/time range) in evidence files for reproducibility.\nPrerequisites\nConfigure least-privilege Alibaba Cloud credentials before execution.\nPrefer environment variables: ALICLOUD_ACCESS_KEY_ID, ALICLOUD_ACCESS_KEY_SECRET, optional ALICLOUD_REGION_ID.\nIf region is unclear, ask the user before running mutating operations.\nWorkflow\nConfirm user intent, region, identifiers, and whether the operation is read-only or mutating.\nRun one minimal read-only query first to verify connectivity and permissions.\nExecute the target operation with explicit parameters and bounded scope.\nVerify results and save output/evidence files."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/cinience/alicloud-network-dns-cli",
    "publisherUrl": "https://clawhub.ai/cinience/alicloud-network-dns-cli",
    "owner": "cinience",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/alicloud-network-dns-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/alicloud-network-dns-cli",
    "agentUrl": "https://openagent3.xyz/skills/alicloud-network-dns-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/alicloud-network-dns-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/alicloud-network-dns-cli/agent.md"
  }
}