dropbox-automation — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited dropbox-automation (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Automate Dropbox operations including file upload/download, search, folder management, sharing links, batch operations, and metadata retrieval through Composio's Dropbox toolkit.
RUBE_MANAGE_CONNECTIONS with toolkit dropboxRUBE_SEARCH_TOOLS first to get current tool schemasGet Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
RUBE_SEARCH_TOOLS respondsRUBE_MANAGE_CONNECTIONS with toolkit dropboxWhen to use: User wants to find files or folders by name, content, or type
Tool sequence:
DROPBOX_SEARCH_FILE_OR_FOLDER - Search by query string with optional path scope and filters [Required]DROPBOX_SEARCH_CONTINUE - Paginate through additional results using cursor [Required if has_more]DROPBOX_GET_METADATA - Validate and get canonical path for a search result [Optional]DROPBOX_READ_FILE - Read file content to verify it is the intended document [Optional]Key parameters:
query: Search string (case-insensitive, 1+ non-whitespace characters)options.path: Scope search to a folder (e.g., "/Documents"); empty string for rootoptions.file_categories: Filter by type ("image", "document", "pdf", "folder", etc.)options.file_extensions: Filter by extension (e.g., ["jpg", "png"])options.filename_only: Set true to match filenames only (not content)options.max_results: Results per page (default 100, max 1000)Pitfalls:
has_more: true with a cursor when more results exist; MUST continue to avoid silently missing matchesDROPBOX_GET_METADATA returned path_display may differ in casing from user input; always use the returned canonical pathDROPBOX_READ_FILE may be returned as base64-encoded file_content_bytes; decode before parsingWhen to use: User wants to upload files to Dropbox or download files from it
Tool sequence:
DROPBOX_UPLOAD_FILE - Upload a file to a specified path [Required for upload]DROPBOX_READ_FILE - Download/read a file from Dropbox [Required for download]DROPBOX_DOWNLOAD_ZIP - Download an entire folder as a zip file [Optional]DROPBOX_SAVE_URL - Save a file from a public URL directly to Dropbox [Optional]DROPBOX_GET_SHARED_LINK_FILE - Download a file from a shared link URL [Optional]DROPBOX_EXPORT_FILE - Export non-downloadable files like Dropbox Paper to markdown/HTML [Optional]Key parameters:
path: Dropbox path (must start with /, e.g., "/Documents/report.pdf")mode: "add" (default, fail on conflict) or "overwrite" for uploadsautorename: true to auto-rename on conflict instead of failingcontent: FileUploadable object with s3key, mimetype, and name for uploadsurl: Public URL for DROPBOX_SAVE_URLexport_format: "markdown", "html", or "plain_text" for Paper docsPitfalls:
DROPBOX_SAVE_URL is asynchronous and may take up to 15 minutes for large filesDROPBOX_DOWNLOAD_ZIP folder must be under 20 GB with no single file over 4 GB and fewer than 10,000 entriesDROPBOX_READ_FILE content may be base64-encoded; check response formatDROPBOX_GET_SHARED_LINK_FILE may require link_password for protected linksWhen to use: User wants to create sharing links or manage existing shared links
Tool sequence:
DROPBOX_GET_METADATA - Confirm file/folder exists and get canonical path [Prerequisite]DROPBOX_LIST_SHARED_LINKS - Check for existing shared links to avoid duplicates [Prerequisite]DROPBOX_CREATE_SHARED_LINK - Create a new shared link [Required]DROPBOX_GET_SHARED_LINK_METADATA - Resolve a shared link URL to metadata [Optional]DROPBOX_LIST_SHARED_FOLDERS - List all shared folders the user has access to [Optional]Key parameters:
path: File or folder path for link creationsettings.audience: "public", "team", or "no_one"settings.access: "viewer" or "editor"settings.expires: ISO 8601 expiration date (e.g., "2026-12-31T23:59:59Z")settings.require_password / settings.link_password: Password protectionsettings.allow_download: Boolean for download permissiondirect_only: For LIST_SHARED_LINKS, set true to only return direct links (not parent folder links)Pitfalls:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.