rclone

Upload, sync, and manage files across cloud storage providers with rclone.

Updated Jan 1, 2026
One-click install
npx skills add https://github.com/jayteealao/blank-template --skill rclone-jayteealao
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rclone
Source: https://github.com/jayteealao/blank-template/tree/main/.claude/skills/rclone
Command: npx skills add https://github.com/jayteealao/blank-template --skill rclone-jayteealao

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

rclone provides a unified CLI to upload, sync, and manage files across cloud storage providers, eliminating manual transfers and scattered workflows.

Core Features & Use Cases

  • Upload single files or entire directories to remote storage (S3-compatible, Google Drive, Dropbox, etc.), preserving structure.
  • Sync local directories with remote mirrors, enabling bidirectional maintenance and deletions to keep both sides aligned.
  • Verify transfers and preview changes with dry-run, and handle large files with chunked uploads and retries.
  • Use Case: Migrate an on-prem library to a cloud bucket and keep it in sync with ongoing local changes.

Quick Start

Run common tasks using rclone; examples: rclone copy /path/to/file.mp4 remote:bucket/path/ --progress rclone sync /local/path remote:bucket/path/ --progress Optional: preview with dry-run rclone copy /path/to/file remote:bucket/ --dry-run

Frequently Asked Questions about rclone

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I sync local directories with cloud storage using rclone?

To sync local directories with cloud storage, rclone mirrors the local path to the remote bucket, aligning both sides by copying new files and applying deletions to keep directories matched.

Can I preview file transfers to S3-compatible storage before executing them?

Yes, you can preview file transfers to S3-compatible storage by running the command with the --dry-run flag, which displays the planned changes without modifying any remote or local files.

What is the best way to automate batch uploads to remote cloud drives?

The best way to automate batch uploads is using rclone copy, which transfers entire directories to configured remotes while preserving the file structure and showing progress with the --progress flag.

Do I need a configured remote to manage files across cloud providers?

Yes, managing files across cloud providers requires an installed rclone client with at least one configured remote, enabling unified CLI access to services like S3, Google Drive, and Dropbox.

How does rclone handle large file transfers and data verification?

Rclone handles large file transfers using chunked uploads and automatic retries, while data verification is managed through the --checksum flag to ensure file integrity across cloud storage.