# Send Cloudflare 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": "cloudflare-toolkit",
    "name": "Cloudflare",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/InsipidPoint/cloudflare-toolkit",
    "canonicalUrl": "https://clawhub.ai/InsipidPoint/cloudflare-toolkit",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/cloudflare-toolkit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cloudflare-toolkit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api-guide.md",
      "scripts/cf.sh"
    ],
    "downloadMode": "redirect",
    "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-toolkit"
    },
    "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/cloudflare-toolkit",
    "downloadUrl": "https://openagent3.xyz/downloads/cloudflare-toolkit",
    "agentUrl": "https://openagent3.xyz/skills/cloudflare-toolkit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cloudflare-toolkit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cloudflare-toolkit/agent.md"
  }
}
```
## Documentation

### Cloudflare

Manage Cloudflare zones, DNS, SSL, tunnels, and settings via the bundled scripts/cf.sh bash script.

### Prerequisites

curl, jq, and openssl must be available on the system
Set CLOUDFLARE_API_TOKEN environment variable
Optionally set CLOUDFLARE_ACCOUNT_ID for tunnel operations

### CLI: scripts/cf.sh

All operations go through the bundled scripts/cf.sh bash script (included in this skill). No external downloads needed.

# Run from skill directory
./scripts/cf.sh <command> [args...]
# Or reference by absolute path
/path/to/skills/cloudflare/scripts/cf.sh <command> [args...]

### Commands

CommandArgsDescriptionhelpShow all commandsverifyVerify API token is validzones[domain]List zones (optionally filter by domain name)zone-get<zone_id>Get zone detailszone-id<domain>Get zone ID from domain namedns-list<zone_id> [type] [name]List DNS recordsdns-create<zone_id> <type> <name> <content> [proxied] [ttl]Create DNS recorddns-update<zone_id> <record_id> <type> <name> <content> [proxied] [ttl]Update DNS recorddns-delete<zone_id> <record_id>Delete DNS recorddns-export<zone_id>Export all records as JSONdns-import<zone_id> <file.json>Import records from JSONsettings-list<zone_id>List all zone settingssetting-get<zone_id> <setting>Get specific settingsetting-set<zone_id> <setting> <value>Update a settingssl-get<zone_id>Get current SSL modessl-set<zone_id> <mode>Set SSL mode (off/flexible/full/strict)cache-purge<zone_id> [url1 url2 ...]Purge specific URLs or everythingpagerules-list<zone_id>List page rulesfirewall-list<zone_id>List firewall rulestunnels-listList Cloudflare Tunnels (needs ACCOUNT_ID)tunnel-get<tunnel_id>Get tunnel detailstunnel-create<name>Create a tunnel (needs ACCOUNT_ID)tunnel-delete<tunnel_id>Delete a tunnel (needs ACCOUNT_ID)analytics<zone_id> [since_minutes]Zone analytics (default: last 24h)

### Proxied flag

true — orange cloud, traffic through Cloudflare (CDN, WAF, DDoS)
false — grey cloud, DNS-only (use for MX, non-HTTP services)

### TTL

1 = automatic (Cloudflare-managed)
Set explicit seconds for DNS-only records (e.g., 3600)

### Point domain to server

# Find zone ID
cf zones example.com
# Create A record (proxied)
cf dns-create <zone_id> A example.com 1.2.3.4 true
# Create www CNAME
cf dns-create <zone_id> CNAME www.example.com example.com true

### Set up email (MX + SPF)

cf dns-create <zone_id> MX example.com "mx.provider.com" false 1
cf dns-create <zone_id> TXT example.com "v=spf1 include:provider.com ~all" false

### Enable strict SSL

cf ssl-set <zone_id> strict

### Safety rules

Always confirm with the user before:

Deleting DNS records (dns-delete)
Changing SSL mode
Modifying firewall rules
Any destructive operation

Safe to do freely:

Listing/reading zones, records, settings, analytics
Verifying token

### Reference

For DNS record types, SSL modes, and API details: see references/api-guide.md
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: InsipidPoint
- Version: 1.5.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/cloudflare-toolkit)
- [Send to Agent page](https://openagent3.xyz/skills/cloudflare-toolkit/agent)
- [JSON manifest](https://openagent3.xyz/skills/cloudflare-toolkit/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/cloudflare-toolkit/agent.md)
- [Download page](https://openagent3.xyz/downloads/cloudflare-toolkit)