agentio-dropbox

Manage Dropbox files and folders through the agentio CLI.

2|Updated Jan 3, 2026
One-click install
npx skills add https://github.com/plosson/agentio --skill agentio-dropbox-plosson
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agentio-dropbox
Source: https://github.com/plosson/agentio/tree/main/claude/skills/agentio-dropbox
Command: npx skills add https://github.com/plosson/agentio --skill agentio-dropbox-plosson

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Automating Dropbox file operations from scripts, CI pipelines, or LLM agents normally requires writing custom API integration code and handling OAuth flows. This Skill exposes every common Dropbox operation as a plain CLI command that agents and shell scripts can invoke directly. ## Core Features & Use Cases - File and Folder Management: List, search, upload, download, move, copy, create, and delete files and folders with simple commands. - Sharing and Metadata: Generate permanent share links or temporary 4-hour download URLs, and inspect file metadata or the connected account. - Use Case: In a scheduled GitHub Actions workflow, download a folder of reports as a zip, process it, upload the result back to Dropbox with --overwrite, and post the share link to Slack. ## Quick Start Use the agentio-dropbox skill to list everything in my /Documents folder and download the latest report as a zip archive.

Frequently Asked Questions about agentio-dropbox

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

FAQPage Schema
How do I upload a file to Dropbox from the command line?▼

Run agentio dropbox put with the local file path and an optional --path destination. Use --overwrite to replace an existing file, since an existing destination otherwise raises an error. Files above 150 MB upload automatically in 8 MB chunks.

How to search Dropbox files from a script or CI pipeline?▼

Use agentio dropbox search with --query to match file names and contents across the account. Add --path to restrict the search to a folder, --filename-only to skip content matching, and --limit to control result count.

Can I download an entire Dropbox folder at once?▼

Yes, agentio dropbox download on a folder path returns it as a zip archive, optionally renamed with --output. Dropbox caps folder downloads at 20 GB and 10,000 files.

Does deleting Dropbox files via CLI remove them permanently?▼

No, deleted items go to the Dropbox trash and remain recoverable for 30 days, or 180 days on business plans. Use --force to skip the confirmation prompt in automated scripts.

Why is my newly uploaded Dropbox file not appearing in search results?▼

Dropbox indexes new uploads asynchronously, so files can take a few minutes to become searchable. The file is still immediately accessible via list, get, or download using its exact path.