# Send Cloud Storage 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": "cloud-storage",
    "name": "Cloud Storage",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/ivangdavila/cloud-storage",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/cloud-storage",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/cloud-storage",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cloud-storage",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "auth.md",
      "costs.md",
      "providers.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "cloud-storage",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T15:33:49.783Z",
      "expiresAt": "2026-05-06T15:33:49.783Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cloud-storage",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cloud-storage",
        "contentDisposition": "attachment; filename=\"cloud-storage-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "cloud-storage"
      },
      "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/cloud-storage"
    },
    "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/cloud-storage",
    "downloadUrl": "https://openagent3.xyz/downloads/cloud-storage",
    "agentUrl": "https://openagent3.xyz/skills/cloud-storage/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cloud-storage/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cloud-storage/agent.md"
  }
}
```
## Documentation

### When to Use

User needs to upload, download, sync, or manage files across cloud storage providers. Agent handles multi-provider operations with cost awareness.

### Quick Reference

TopicFileProvider-specific patternsproviders.mdAuthentication setupauth.mdCost calculationcosts.md

### Scope

This skill covers operational cloud storage tasks across providers:

S3, GCS, Azure Blob, Backblaze B2, Cloudflare R2
Google Drive, Dropbox, OneDrive, iCloud

For storage architecture decisions, see storage skill.
For S3-specific deep patterns, see s3 skill.

### Critical Rules

Verify operations completed — API 200 ≠ success; check file exists with correct size/checksum
Calculate ALL costs before large transfers — egress fees often exceed storage costs; check costs.md
Never delete without backup verification — confirm backup exists AND is restorable before removing source
Handle partial failures — long operations fail mid-way; implement checkpoints and resume logic
Rate limits vary wildly — Google 750GB/day upload, Dropbox batch limits, S3 3500 PUT/s per prefix

### Authentication Traps

OAuth tokens expire — refresh before long operations, not during
Service account ≠ user account — different quotas, permissions, audit trails
Wrong region/endpoint — S3 bucket in eu-west-1 won't work with s3.amazonaws.com
MFA required — some operations need session tokens, plan for interactive auth

### Multi-Provider Gotchas

ConceptTranslates differentlyShared folderDrive "Shared with me" ≠ Dropbox "Team Folders" ≠ OneDrive "SharePoint"File IDDrive uses IDs; Dropbox uses paths; S3 uses keysVersioningS3 explicit enable; Drive automatic; Dropbox 180 daysPermissionsS3 ACLs + policies; Drive roles; Dropbox link-based

### Before Any Bulk Operation

Estimated time calculated (size ÷ bandwidth)
 Rate limits checked for both source AND destination
 Cost estimate including egress + API calls
 Checkpoint/resume strategy for failures
 Verification method defined (checksum, count, spot-check)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.1
## 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-29T15:33:49.783Z
- Expires at: 2026-05-06T15:33:49.783Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/cloud-storage)
- [Send to Agent page](https://openagent3.xyz/skills/cloud-storage/agent)
- [JSON manifest](https://openagent3.xyz/skills/cloud-storage/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/cloud-storage/agent.md)
- [Download page](https://openagent3.xyz/downloads/cloud-storage)