Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/chaunsin/agent-skills/rclone-clinpx skills add chaunsin/agent-skills --skill rclone-cligit clone --depth 1 https://github.com/chaunsin/agent-skillsWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00137 | $0.03536 |
| Opus 5 | $0.00068 | $0.01768 |
| Sonnet 5 | $0.00027 | $0.00707 |
| Haiku 4.5 | $0.00014 | $0.00354 |
Grade D, and why
rclone-cli scanned grade D with 3 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
sudo -v ; curl https://rclone.org/install.sh | sudo bash Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
sudo -v ; curl https://rclone.org/install.sh | sudo bash Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
sudo -v ; curl https://rclone.org/install.sh | sudo bash How it starts
The opening of the file, as written. The whole thing — 345 lines — stays where its author put it; the contents beside it link to each section on GitHub.
rclone — The Swiss Army Knife of Cloud Storage
Rclone is a command-line program to manage files on cloud storage. It is a feature-rich alternative to cloud vendors' web storage interfaces. Over 70 cloud storage products support rclone including S3 object stores, business & consumer file storage services, and standard transfer protocols.
Rclone has powerful cloud equivalents to the unix commands rsync, cp, mv, mount, ls, ncdu, tree, rm, and cat. It preserves timestamps and verifies checksums at all times. Transfers can be restarted from the last good file.
Official resources: rclone.org | Docs | Commands | Install | Forum | GitHub
Prerequisites
Before using rclone, verify it is installed:
# Check if rclone is installed
rclone --version
# If not found, run the install script:
# See scripts/install.sh in this skill's directory
sudo -v ; curl https://rclone.org/install.sh | sudo bash
# Or for beta version:
sudo -v ; curl https://rclone.org/install.sh | sudo bash -s beta
For offline/manual installation, use the bundled script at scripts/install.sh.
Security Warnings
IMPORTANT: Rclone is extremely powerful and can irreversibly modify or delete data on cloud storage. Pay close attention to the following safety guidelines:
- Always use
--dry-runfirst when runningsync,move,delete, orpurgecommands. This shows what would happen without actually doing it. - Use
--interactive/-iflag while learning rclone to avoid accidental data loss. It asks for confirmation before each destructive operation. - Never expose credentials in plain text on the command line. Use
rclone configto store credentials securely, or use environment variables. - Private keys and tokens (S3 secret keys, service account JSON, OAuth tokens) must never be committed to version control or logged. The config file
~/.config/rclone/rclone.confcontains sensitive data — protect it withchmod 600. rclone purgeignores all filters — it deletes everything under the specified path. Use with extreme caution.rclone syncmakes dest identical to source — files in dest that are not in source will be DELETED. Always verify with--dry-runfirst.- Remote control API (
--rc) should bind to localhost only by default. Exposing it without authentication (--rc-htpasswd) allows anyone to control your rclone instance. - Mount operations can cause data loss if the mount is interrupted during writes. Use
--vfs-cache-mode fullfor safer writes.
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/bisync.md 104 KB
- references/cache.md 21 KB
- references/chunker.md 18 KB
- references/combine.md 4.2 KB
- references/commands/rclone_about.md 2.1 KB
- references/commands/rclone_archive_create.md 2.7 KB
- references/commands/rclone_archive_extract.md 1.9 KB
- references/commands/rclone_archive_list.md 2.2 KB
- references/commands/rclone_archive.md 1.4 KB
- references/commands/rclone_authorize.md 1.7 KB
- references/commands/rclone_backend.md 2.2 KB
- references/commands/rclone_bisync.md 11 KB
- references/commands/rclone_cat.md 4.8 KB
- references/commands/rclone_check.md 6.4 KB
- references/commands/rclone_checksum.md 6.0 KB
- references/commands/rclone_cleanup.md 1.2 KB
- references/commands/rclone_completion_bash.md 1.7 KB
- references/commands/rclone_completion_fish.md 1.4 KB
- references/commands/rclone_completion_powershell.md 1.3 KB
- references/commands/rclone_completion_zsh.md 1.4 KB
- references/commands/rclone_completion.md 1.4 KB
- references/commands/rclone_config_create.md 5.2 KB
- references/commands/rclone_config_delete.md 815 B
- references/commands/rclone_config_disconnect.md 999 B
- references/commands/rclone_config_dump.md 802 B
- references/commands/rclone_config_edit.md 1014 B
- references/commands/rclone_config_encryption_check.md 1.2 KB
- references/commands/rclone_config_encryption_remove.md 1.2 KB
- references/commands/rclone_config_encryption_set.md 1.8 KB
- references/commands/rclone_config_encryption.md 1.3 KB
- references/commands/rclone_config_file.md 822 B
- references/commands/rclone_config_password.md 1.3 KB
- references/commands/rclone_config_paths.md 853 B
- references/commands/rclone_config_providers.md 879 B
- references/commands/rclone_config_reconnect.md 1.0 KB
- references/commands/rclone_config_redacted.md 1.3 KB
- references/commands/rclone_config_show.md 885 B
- references/commands/rclone_config_string.md 1.5 KB
- references/commands/rclone_config_touch.md 817 B
- references/commands/rclone_config_update.md 5.2 KB
- references/commands/rclone_config_userinfo.md 969 B
- references/commands/rclone_config.md 2.7 KB
- references/commands/rclone_convmv.md 18 KB
- references/commands/rclone_copy.md 13 KB
- references/commands/rclone_copyto.md 12 KB
- references/commands/rclone_copyurl.md 3.2 KB
- references/commands/rclone_cryptcheck.md 6.4 KB
- references/commands/rclone_cryptdecode.md 1.4 KB
- references/commands/rclone_dedupe.md 6.1 KB
- references/commands/rclone_delete.md 4.8 KB
- references/commands/rclone_deletefile.md 1.3 KB
- references/commands/rclone_gendocs.md 1022 B
- references/commands/rclone_gitannex.md 3.3 KB
- references/commands/rclone_hashsum.md 5.0 KB
- references/commands/rclone_link.md 1.8 KB
- references/commands/rclone_listremotes.md 2.0 KB
- references/commands/rclone_ls.md 4.7 KB
- references/commands/rclone_lsd.md 5.3 KB
- references/commands/rclone_lsf.md 9.3 KB
- references/commands/rclone_lsjson.md 8.9 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 345 lines · 137 tokens per session scan D f0a3a3871bde
rclone-cli is a skill published in the GitHub repository chaunsin/agent-skills (2 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 137 tokens to every session and 3,536 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it D with 3 findings (asks for root, downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
docx
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of "Word doc", "word document", ".docx", or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when…
docx
当用户需要创建、读取、编辑或处理 Word 文档(.docx)时,使用此技能。触发场景包括提到“Word 文档”、“.docx”,或要求生成带目录、标题、页码、信头等格式的专业文档;也包括提取或重组 .docx 内容、插入或替换图片、在 Word 文件中查找替换、处理修订或批注,以及将内容整理为正式 Word 文档。如果用户要求生成“报告”“备忘录”“信函”“模板”等 Word / .docx 交付物,也应使用此技能。不要用于 PDF、电子表格、Google Docs,或与文档生成无关的一般编程任务。.
xlsx
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or…
xlsx
当电子表格文件是主要输入或输出时使用此技能。这意味着用户想要:打开、读取、编辑或修复现有的 .xlsx、.xlsm、.csv 或 .tsv 文件(例如添加列、计算公式、格式化、制图、清理混乱数据);从头创建新的电子表格或从其他数据源创建;或在表格文件格式之间进行转换。当用户通过名称或路径引用电子表格文件时特别触发——即使是随意提及(如"我下载目录里的 xlsx")——并且想对其进行操作或从中生成内容。也适用于将混乱的表格数据文件(格式错误的行、错位的表头、垃圾数据)清理或重构为规范的电子表格。交付物必须是电子表格文件。当主要交付物是 Word 文档、HTML 报告、独立 Python 脚本、数据库管道或 Google Sheets…
Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and…
当用户需要对PDF文件进行任何操作时,请使用此技能。包括从 PDF 中读取或提取文本/表格、合并多个 PDF、拆分 PDF、旋转页面、添加水印、创建新PDF、填写PDF表单、加密/解密 PDF、提取图片,以及对扫描版 PDF 进行 OCR 使其可搜索。如果用户提到 .pdf 文件或要求生成 PDF,请使用此技能。.