# Send Alicloud Network Dns Cli to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "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",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "agents/openai.yaml",
      "references/sources.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "alicloud-network-dns-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T21:28:44.753Z",
      "expiresAt": "2026-05-06T21:28:44.753Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=alicloud-network-dns-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=alicloud-network-dns-cli",
        "contentDisposition": "attachment; filename=\"alicloud-network-dns-cli-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "alicloud-network-dns-cli"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Goals

Query and manage Alibaba Cloud DNS records via aliyun-cli.
Quickly configure CNAME for Function Compute custom domains.

### When to Use

When you need to add/update DNS records in Alibaba Cloud DNS.
When you need CNAME setup for FC custom domains.

### Install aliyun-cli (without sudo)

curl -fsSL https://aliyuncli.alicdn.com/aliyun-cli-linux-latest-amd64.tgz -o /tmp/aliyun-cli.tgz
mkdir -p ~/.local/bin
 tar -xzf /tmp/aliyun-cli.tgz -C /tmp
mv /tmp/aliyun ~/.local/bin/aliyun
chmod +x ~/.local/bin/aliyun

### Configure Credentials

~/.local/bin/aliyun configure set \\
  --profile default \\
  --access-key-id <AK> \\
  --access-key-secret <SK> \\
  --region cn-hangzhou

Configure region as default; if best region is unclear, ask the user.

### Query DNS Records

Query subdomain records:

~/.local/bin/aliyun alidns DescribeSubDomainRecords \\
  --SubDomain news.example.com

### Add CNAME Record

~/.local/bin/aliyun alidns AddDomainRecord \\
  --DomainName example.com \\
  --RR news \\
  --Type CNAME \\
  --Value <TARGET>

### FC Custom Domain CNAME Target

Custom domain should point to FC public CNAME:

<account_id>.<region_id>.fc.aliyuncs.com

Example (Hangzhou):

1629965279769872.cn-hangzhou.fc.aliyuncs.com

### Common Issues

If apex CNAME is not supported, use subdomain like www or ALIAS/ANAME records.
Create FC custom domain only after DNS propagation, otherwise DomainNameNotResolved may occur.

### References

aliyun-cli installation

https://help.aliyun.com/zh/cli/install-cli-on-linux



Alidns API（AddDomainRecord / DescribeSubDomainRecords）

https://help.aliyun.com/zh/dns/api-alidns-2015-01-09-adddomainrecord
https://help.aliyun.com/zh/dns/api-alidns-2015-01-09-describesubdomainrecords



FC custom domain configuration and CNAME guidance

https://www.alibabacloud.com/help/en/functioncompute/fc/user-guide/configure-custom-domain-names



Official source list:references/sources.md

### Validation

mkdir -p output/alicloud-network-dns-cli
echo "validation_placeholder" > output/alicloud-network-dns-cli/validate.txt

Pass criteria: command exits 0 and output/alicloud-network-dns-cli/validate.txt is generated.

### Output And Evidence

Save artifacts, command outputs, and API response summaries under output/alicloud-network-dns-cli/.
Include key parameters (region/resource id/time range) in evidence files for reproducibility.

### Prerequisites

Configure least-privilege Alibaba Cloud credentials before execution.
Prefer environment variables: ALICLOUD_ACCESS_KEY_ID, ALICLOUD_ACCESS_KEY_SECRET, optional ALICLOUD_REGION_ID.
If region is unclear, ask the user before running mutating operations.

### Workflow

Confirm user intent, region, identifiers, and whether the operation is read-only or mutating.
Run one minimal read-only query first to verify connectivity and permissions.
Execute the target operation with explicit parameters and bounded scope.
Verify results and save output/evidence files.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: cinience
- Version: 1.0.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T21:28:44.753Z
- Expires at: 2026-05-06T21:28:44.753Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/alicloud-network-dns-cli)
- [Send to Agent page](https://openagent3.xyz/skills/alicloud-network-dns-cli/agent)
- [JSON manifest](https://openagent3.xyz/skills/alicloud-network-dns-cli/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/alicloud-network-dns-cli/agent.md)
- [Download page](https://openagent3.xyz/downloads/alicloud-network-dns-cli)