{"id":"5751147a-32a1-42a7-8519-25e2041d255e","shortId":"9KZQNd","kind":"skill","title":"dropbox-automation","tagline":"Automate Dropbox file management, sharing, search, uploads, downloads, and folder operations via Rube MCP (Composio). Always search tools first for current schemas.","description":"# Dropbox Automation via Rube MCP\n\nAutomate Dropbox operations including file upload/download, search, folder management, sharing links, batch operations, and metadata retrieval through Composio's Dropbox toolkit.\n\n## Prerequisites\n\n- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)\n- Active Dropbox connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `dropbox`\n- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas\n\n## Setup\n\n**Get 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.\n\n1. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds\n2. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `dropbox`\n3. If connection is not ACTIVE, follow the returned auth link to complete Dropbox OAuth\n4. Confirm connection status shows ACTIVE before running any workflows\n\n## Core Workflows\n\n### 1. Search for Files and Folders\n\n**When to use**: User wants to find files or folders by name, content, or type\n\n**Tool sequence**:\n1. `DROPBOX_SEARCH_FILE_OR_FOLDER` - Search by query string with optional path scope and filters [Required]\n2. `DROPBOX_SEARCH_CONTINUE` - Paginate through additional results using cursor [Required if has_more]\n3. `DROPBOX_GET_METADATA` - Validate and get canonical path for a search result [Optional]\n4. `DROPBOX_READ_FILE` - Read file content to verify it is the intended document [Optional]\n\n**Key parameters**:\n- `query`: Search string (case-insensitive, 1+ non-whitespace characters)\n- `options.path`: Scope search to a folder (e.g., `\"/Documents\"`); empty string for root\n- `options.file_categories`: Filter by type (`\"image\"`, `\"document\"`, `\"pdf\"`, `\"folder\"`, etc.)\n- `options.file_extensions`: Filter by extension (e.g., `[\"jpg\", \"png\"]`)\n- `options.filename_only`: Set `true` to match filenames only (not content)\n- `options.max_results`: Results per page (default 100, max 1000)\n\n**Pitfalls**:\n- Search returns `has_more: true` with a `cursor` when more results exist; MUST continue to avoid silently missing matches\n- Maximum 10,000 matches total across all pages of search + search_continue\n- `DROPBOX_GET_METADATA` returned `path_display` may differ in casing from user input; always use the returned canonical path\n- File content from `DROPBOX_READ_FILE` may be returned as base64-encoded `file_content_bytes`; decode before parsing\n\n### 2. Upload and Download Files\n\n**When to use**: User wants to upload files to Dropbox or download files from it\n\n**Tool sequence**:\n1. `DROPBOX_UPLOAD_FILE` - Upload a file to a specified path [Required for upload]\n2. `DROPBOX_READ_FILE` - Download/read a file from Dropbox [Required for download]\n3. `DROPBOX_DOWNLOAD_ZIP` - Download an entire folder as a zip file [Optional]\n4. `DROPBOX_SAVE_URL` - Save a file from a public URL directly to Dropbox [Optional]\n5. `DROPBOX_GET_SHARED_LINK_FILE` - Download a file from a shared link URL [Optional]\n6. `DROPBOX_EXPORT_FILE` - Export non-downloadable files like Dropbox Paper to markdown/HTML [Optional]\n\n**Key parameters**:\n- `path`: Dropbox path (must start with `/`, e.g., `\"/Documents/report.pdf\"`)\n- `mode`: `\"add\"` (default, fail on conflict) or `\"overwrite\"` for uploads\n- `autorename`: `true` to auto-rename on conflict instead of failing\n- `content`: FileUploadable object with `s3key`, `mimetype`, and `name` for uploads\n- `url`: Public URL for `DROPBOX_SAVE_URL`\n- `export_format`: `\"markdown\"`, `\"html\"`, or `\"plain_text\"` for Paper docs\n\n**Pitfalls**:\n- `DROPBOX_SAVE_URL` is asynchronous and may take up to 15 minutes for large files\n- `DROPBOX_DOWNLOAD_ZIP` folder must be under 20 GB with no single file over 4 GB and fewer than 10,000 entries\n- `DROPBOX_READ_FILE` content may be base64-encoded; check response format\n- Shared link downloads via `DROPBOX_GET_SHARED_LINK_FILE` may require `link_password` for protected links\n\n### 3. Share Files and Manage Links\n\n**When to use**: User wants to create sharing links or manage existing shared links\n\n**Tool sequence**:\n1. `DROPBOX_GET_METADATA` - Confirm file/folder exists and get canonical path [Prerequisite]\n2. `DROPBOX_LIST_SHARED_LINKS` - Check for existing shared links to avoid duplicates [Prerequisite]\n3. `DROPBOX_CREATE_SHARED_LINK` - Create a new shared link [Required]\n4. `DROPBOX_GET_SHARED_LINK_METADATA` - Resolve a shared link URL to metadata [Optional]\n5. `DROPBOX_LIST_SHARED_FOLDERS` - List all shared folders the user has access to [Optional]\n\n**Key parameters**:\n- `path`: File or folder path for link creation\n- `settings.audience`: `\"public\"`, `\"team\"`, or `\"no_one\"`\n- `settings.access`: `\"viewer\"` or `\"editor\"`\n- `settings.expires`: ISO 8601 expiration date (e.g., `\"2026-12-31T23:59:59Z\"`)\n- `settings.require_password` / `settings.link_password`: Password protection\n- `settings.allow_download`: Boolean for download permission\n- `direct_only`: For `LIST_SHARED_LINKS`, set `true` to only return direct links (not parent folder links)\n\n**Pitfalls**:\n- `DROPBOX_CREATE_SHARED_LINK` fails with 409 Conflict if a shared link already exists for the path; check with `DROPBOX_LIST_SHARED_LINKS` first\n- Always validate path with `DROPBOX_GET_METADATA` before creating links to avoid `path/not_found` errors\n- Reuse existing links from `DROPBOX_LIST_SHARED_LINKS` instead of creating duplicates\n- `requested_visibility` is deprecated; use `audience` for newer implementations\n\n### 4. Manage Folders (Create, Move, Delete)\n\n**When to use**: User wants to create, move, rename, or delete files and folders\n\n**Tool sequence**:\n1. `DROPBOX_CREATE_FOLDER` - Create a single folder [Required for create]\n2. `DROPBOX_CREATE_FOLDER_BATCH` - Create multiple folders at once [Optional]\n3. `DROPBOX_MOVE_FILE_OR_FOLDER` - Move or rename a single file/folder [Required for move]\n4. `DROPBOX_MOVE_BATCH` - Move multiple items at once [Optional]\n5. `DROPBOX_DELETE_FILE_OR_FOLDER` - Delete a single file or folder [Required for delete]\n6. `DROPBOX_DELETE_BATCH` - Delete multiple items at once [Optional]\n7. `DROPBOX_COPY_FILE_OR_FOLDER` - Copy a file or folder to a new location [Optional]\n8. `DROPBOX_CHECK_MOVE_BATCH` / `DROPBOX_CHECK_FOLDER_BATCH` - Poll async batch job status [Required for batch ops]\n\n**Key parameters**:\n- `path`: Target path (must start with `/`, case-sensitive)\n- `from_path` / `to_path`: Source and destination for move/copy operations\n- `autorename`: `true` to auto-rename on conflict\n- `entries`: Array of `{from_path, to_path}` for batch moves; array of paths for batch creates\n- `allow_shared_folder`: Set `true` to allow moving shared folders\n- `allow_ownership_transfer`: Set `true` if move changes ownership\n\n**Pitfalls**:\n- All paths are case-sensitive and must start with `/`\n- Paths must NOT end with `/` or whitespace\n- Batch operations may be asynchronous; poll with `DROPBOX_CHECK_MOVE_BATCH` or `DROPBOX_CHECK_FOLDER_BATCH`\n- `DROPBOX_FILES_MOVE_BATCH` (v1) has \"all or nothing\" behavior - if any entry fails, entire batch fails\n- `DROPBOX_MOVE_BATCH` (v2) is preferred over `DROPBOX_FILES_MOVE_BATCH` (v1)\n- Maximum 1000 entries per batch delete/move; 10,000 paths per batch folder create\n- Case-only renaming is not supported in batch move operations\n\n### 5. List Folder Contents\n\n**When to use**: User wants to browse or enumerate files in a Dropbox folder\n\n**Tool sequence**:\n1. `DROPBOX_LIST_FILES_IN_FOLDER` - List contents of a folder [Required]\n2. `DROPBOX_LIST_FOLDERS` - Alternative folder listing with deleted entries support [Optional]\n3. `DROPBOX_GET_METADATA` - Get details for a specific item [Optional]\n\n**Key parameters**:\n- `path`: Folder path (empty string `\"\"` for root)\n- `recursive`: `true` to list all nested contents\n- `limit`: Max results per request (default/max 2000)\n- `include_deleted`: `true` to include deleted but recoverable items\n- `include_media_info`: `true` to get photo/video metadata\n\n**Pitfalls**:\n- Use empty string `\"\"` for root folder, not `\"/\"`\n- Recursive listings can be very large; use `limit` to control page size\n- Results may paginate via cursor even with small limits\n- `DROPBOX_LIST_FILES_IN_FOLDER` returns 409 Conflict with `path/not_found` for incorrect paths\n\n## Common Patterns\n\n### ID Resolution\n- **Path-based**: Most Dropbox tools use path strings (e.g., `\"/Documents/file.pdf\"`)\n- **ID-based**: Some tools accept `id:...` format (e.g., `\"id:4g0reWVRsAAAAAAAAAAAQ\"`)\n- **Canonical path**: Always use `path_display` or `path_lower` from `DROPBOX_GET_METADATA` responses for subsequent calls\n- **Shared link URL**: Use `DROPBOX_GET_SHARED_LINK_METADATA` to resolve URLs to paths/IDs\n\n### Pagination\nDropbox uses cursor-based pagination across most endpoints:\n- Search: Follow `has_more` + `cursor` with `DROPBOX_SEARCH_CONTINUE` (max 10,000 total matches)\n- Folder listing: Follow cursor from response until no more pages\n- Shared links: Follow `has_more` + `cursor` in `DROPBOX_LIST_SHARED_LINKS`\n- Batch job status: Poll with `DROPBOX_CHECK_MOVE_BATCH` / `DROPBOX_CHECK_FOLDER_BATCH`\n\n### Async Operations\nSeveral Dropbox operations run asynchronously:\n- `DROPBOX_SAVE_URL` - returns job ID; poll or set `wait: true` (up to 120s default)\n- `DROPBOX_MOVE_BATCH` / `DROPBOX_FILES_MOVE_BATCH` - may return job ID\n- `DROPBOX_CREATE_FOLDER_BATCH` - may return job ID\n- `DROPBOX_DELETE_BATCH` - returns job ID\n\n## Known Pitfalls\n\n### Path Formats\n- All paths must start with `/` (except empty string for root in some endpoints)\n- Paths must NOT end with `/` or contain trailing whitespace\n- Paths are case-sensitive for write operations\n- `path_display` from API may differ in casing from user input; always prefer API-returned paths\n\n### Rate Limits\n- Dropbox API has per-endpoint rate limits; batch operations help reduce call count\n- Search is limited to 10,000 total matches across all pagination\n- `DROPBOX_SAVE_URL` has a 15-minute timeout for large files\n\n### File Content\n- `DROPBOX_READ_FILE` may return content as base64-encoded `file_content_bytes`\n- Non-downloadable files (Dropbox Paper, Google Docs) require `DROPBOX_EXPORT_FILE` instead\n- Download URLs from shared links require proper authentication headers\n\n### Sharing\n- Creating a shared link when one already exists returns a 409 Conflict error\n- Always check `DROPBOX_LIST_SHARED_LINKS` before creating new links\n- Shared folder access may not appear in standard path listings; use `DROPBOX_LIST_SHARED_FOLDERS`\n\n## Quick Reference\n\n| Task | Tool Slug | Key Params |\n|------|-----------|------------|\n| Search files | `DROPBOX_SEARCH_FILE_OR_FOLDER` | `query`, `options.path` |\n| Continue search | `DROPBOX_SEARCH_CONTINUE` | `cursor` |\n| List folder | `DROPBOX_LIST_FILES_IN_FOLDER` | `path`, `recursive`, `limit` |\n| List folders | `DROPBOX_LIST_FOLDERS` | `path`, `recursive` |\n| Get metadata | `DROPBOX_GET_METADATA` | `path` |\n| Read/download file | `DROPBOX_READ_FILE` | `path` |\n| Upload file | `DROPBOX_UPLOAD_FILE` | `path`, `content`, `mode` |\n| Save URL to Dropbox | `DROPBOX_SAVE_URL` | `path`, `url` |\n| Download folder zip | `DROPBOX_DOWNLOAD_ZIP` | `path` |\n| Export Paper doc | `DROPBOX_EXPORT_FILE` | `path`, `export_format` |\n| Download shared link | `DROPBOX_GET_SHARED_LINK_FILE` | `url` |\n| Create shared link | `DROPBOX_CREATE_SHARED_LINK` | `path`, `settings` |\n| List shared links | `DROPBOX_LIST_SHARED_LINKS` | `path`, `direct_only` |\n| Shared link metadata | `DROPBOX_GET_SHARED_LINK_METADATA` | `url` |\n| List shared folders | `DROPBOX_LIST_SHARED_FOLDERS` | `limit` |\n| Create folder | `DROPBOX_CREATE_FOLDER` | `path` |\n| Create folders batch | `DROPBOX_CREATE_FOLDER_BATCH` | `paths` |\n| Move file/folder | `DROPBOX_MOVE_FILE_OR_FOLDER` | `from_path`, `to_path` |\n| Move batch | `DROPBOX_MOVE_BATCH` | `entries` |\n| Delete file/folder | `DROPBOX_DELETE_FILE_OR_FOLDER` | `path` |\n| Delete batch | `DROPBOX_DELETE_BATCH` | `entries` |\n| Copy file/folder | `DROPBOX_COPY_FILE_OR_FOLDER` | `from_path`, `to_path` |\n| Check batch status | `DROPBOX_CHECK_MOVE_BATCH` | `async_job_id` |\n\n## When to Use\nThis skill is applicable to execute the workflow or actions described in the overview.\n\n## Limitations\n- Use this skill only when the task clearly matches the scope described above.\n- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.\n- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.","tags":["dropbox","automation","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows"],"capabilities":["skill","source-sickn33","skill-dropbox-automation","topic-agent-skills","topic-agentic-skills","topic-ai-agent-skills","topic-ai-agents","topic-ai-coding","topic-ai-workflows","topic-antigravity","topic-antigravity-skills","topic-claude-code","topic-claude-code-skills","topic-codex-cli","topic-codex-skills"],"categories":["antigravity-awesome-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/sickn33/antigravity-awesome-skills/dropbox-automation","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add sickn33/antigravity-awesome-skills","source_repo":"https://github.com/sickn33/antigravity-awesome-skills","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 34831 github stars · SKILL.md body (12,423 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-24T06:51:06.257Z","embedding":null,"createdAt":"2026-04-18T21:36:23.489Z","updatedAt":"2026-04-24T06:51:06.257Z","lastSeenAt":"2026-04-24T06:51:06.257Z","tsv":"'-12':717 '-31':718 '/documents':260 '/documents/file.pdf':1241 '/documents/report.pdf':487 '/mcp':90 '000':324,572,1073,1305,1461 '1':110,157,180,248,394,624,833,1110 '10':323,571,1072,1304,1460 '100':299 '1000':301,1067 '120s':1362 '15':547,1472 '2':122,197,372,408,636,844,1122 '20':559 '2000':1167 '2026':716 '3':130,211,420,602,650,855,1134 '4':145,225,433,566,661,811,870 '409':758,1220,1526 '4g0rewvrsaaaaaaaaaaaq':1252 '5':448,675,880,1090 '59':720 '59z':721 '6':463,895 '7':905 '8':921 '8601':712 'accept':1247 'access':687,1541 'across':327,1291,1464 'action':1761 'activ':62,135,150 'add':87,104,489 'addit':203 'allow':984,990,994 'alreadi':764,1522 'altern':1126 'alway':19,72,347,776,1255,1434,1529 'api':100,1426,1437,1443 'api-return':1436 'appear':1544 'applic':1755 'array':969,978 'ask':1799 'async':931,1342,1746 'asynchron':541,1025,1348 'audienc':807 'auth':139 'authent':1513 'auto':502,964 'auto-renam':501,963 'autom':3,4,27,31 'autorenam':498,960 'avail':61,115 'avoid':318,647,787 'base':1233,1244,1289 'base64':364,581,1488 'base64-encoded':363,580,1487 'batch':42,848,873,898,925,929,932,937,976,982,1021,1031,1036,1040,1052,1056,1064,1070,1076,1087,1329,1337,1341,1366,1370,1378,1385,1450,1691,1695,1709,1712,1723,1726,1740,1745 'behavior':1046 'boolean':730 'boundari':1807 'brows':1100 'byte':368,1492 'call':73,123,1269,1454 'canon':218,351,633,1253 'case':246,343,948,1008,1080,1418,1430 'case-insensit':245 'case-on':1079 'case-sensit':947,1007,1417 'categori':266 'chang':1001 'charact':252 'check':583,641,769,923,927,1029,1034,1335,1339,1530,1739,1743 'clarif':1801 'clear':1774 'client':97 'common':1227 'complet':142 'composio':18,48 'configur':98 'confirm':117,146,628 'conflict':493,505,759,967,1221,1527 'connect':57,64,68,126,132,147 'contain':1412 'content':175,231,292,354,367,509,577,1093,1117,1160,1479,1485,1491,1611 'continu':200,316,333,1302,1570,1574 'control':1202 'copi':907,911,1728,1731 'core':155 'count':1455 'creat':614,652,655,753,784,800,814,823,835,837,843,846,849,983,1078,1376,1516,1536,1647,1651,1683,1686,1689,1693 'creation':699 'criteria':1810 'current':24,80 'cursor':206,310,1209,1288,1298,1311,1323,1575 'cursor-bas':1287 'date':714 'decod':369 'default':298,490,1363 'default/max':1166 'delet':816,827,882,886,894,897,899,1130,1169,1173,1384,1714,1717,1722,1725 'delete/move':1071 'deprec':805 'describ':1762,1778 'destin':956 'detail':1139 'differ':341,1428 'direct':444,734,745,1664 'display':339,1258,1424 'doc':535,1500,1631 'document':238,271 'download':11,375,388,419,422,424,454,470,553,588,729,732,1495,1506,1622,1626,1638 'download/read':412 'dropbox':2,5,26,32,50,63,71,129,143,181,198,212,226,334,356,386,395,409,416,421,434,446,449,464,473,481,523,537,552,574,590,625,637,651,662,676,752,771,780,794,834,845,856,871,881,896,906,922,926,1028,1033,1037,1054,1061,1106,1111,1123,1135,1214,1235,1263,1274,1285,1300,1325,1334,1338,1345,1349,1364,1367,1375,1383,1442,1467,1480,1497,1502,1531,1550,1563,1572,1578,1588,1595,1601,1607,1616,1617,1625,1632,1641,1650,1659,1669,1678,1685,1692,1699,1710,1716,1724,1730,1742 'dropbox-autom':1 'duplic':648,801 'e.g':259,280,486,715,1240,1250 'editor':709 'empti':261,1150,1187,1399 'encod':365,582,1489 'end':1017,1409 'endpoint':106,1293,1405,1447 'entir':426,1051 'entri':573,968,1049,1068,1131,1713,1727 'enumer':1102 'environ':1790 'environment-specif':1789 'error':789,1528 'etc':274 'even':1210 'except':1398 'execut':1757 'exist':314,619,630,643,765,791,1523 'expert':1795 'expir':713 'export':465,467,526,1503,1629,1633,1636 'extens':276,279 'fail':491,508,756,1050,1053 'fewer':569 'file':6,35,160,170,183,228,230,353,358,366,376,384,389,397,400,411,414,431,439,453,456,466,471,551,564,576,594,604,693,828,858,883,889,908,913,1038,1062,1103,1113,1216,1368,1477,1478,1482,1490,1496,1504,1562,1565,1580,1600,1603,1606,1609,1634,1645,1701,1718,1732 'file/folder':629,866,1698,1715,1729 'filenam':289 'fileupload':510 'filter':195,267,277 'find':169 'first':22,77,775 'folder':13,38,162,172,185,258,273,427,555,679,683,695,749,813,830,836,840,847,851,860,885,891,910,915,928,986,993,1035,1077,1092,1107,1115,1120,1125,1127,1148,1191,1218,1308,1340,1377,1540,1553,1567,1577,1582,1587,1590,1623,1677,1681,1684,1687,1690,1694,1703,1720,1734 'follow':136,1295,1310,1320 'format':527,585,1249,1392,1637 'gb':560,567 'get':79,84,213,217,335,450,591,626,632,663,781,1136,1138,1182,1264,1275,1593,1596,1642,1670 'googl':1499 'header':1514 'help':1452 'html':529 'id':1229,1243,1248,1251,1354,1374,1382,1388,1748 'id-bas':1242 'imag':270 'implement':810 'includ':34,1168,1172,1177 'incorrect':1225 'info':1179 'input':346,1433,1804 'insensit':247 'instead':506,798,1505 'intend':237 'iso':711 'item':876,901,1143,1176 'job':933,1330,1353,1373,1381,1387,1747 'jpg':281 'key':101,240,478,690,939,1145,1559 'known':1389 'larg':550,1198,1476 'like':472 'limit':1161,1200,1213,1441,1449,1458,1585,1682,1766 'link':41,140,452,460,587,593,597,601,607,616,621,640,645,654,659,665,670,698,739,746,750,755,763,774,785,792,797,1271,1277,1319,1328,1510,1519,1534,1538,1640,1644,1649,1653,1658,1662,1667,1672 'list':638,677,680,737,772,795,1091,1112,1116,1124,1128,1157,1194,1215,1309,1326,1532,1548,1551,1576,1579,1586,1589,1656,1660,1675,1679 'locat':919 'lower':1261 'manag':7,39,67,125,606,618,812 'markdown':528 'markdown/html':476 'match':288,321,325,1307,1463,1775 'max':300,1162,1303 'maximum':322,1066 'may':340,359,543,578,595,1023,1206,1371,1379,1427,1483,1542 'mcp':17,30,54,86,93,113 'media':1178 'metadata':45,214,336,627,666,673,782,1137,1184,1265,1278,1594,1597,1668,1673 'mimetyp':514 'minut':548,1473 'miss':320,1812 'mode':488,1612 'move':815,824,857,861,869,872,874,924,977,991,1000,1030,1039,1055,1063,1088,1336,1365,1369,1697,1700,1708,1711,1744 'move/copy':958 'multipl':850,875,900 'must':55,315,483,556,944,1011,1015,1395,1407 'name':174,516 'need':102 'nest':1159 'new':657,918,1537 'newer':809 'non':250,469,1494 'non-download':468,1493 'non-whitespac':249 'noth':1045 'oauth':144 'object':511 'one':705,1521 'op':938 'oper':14,33,43,959,1022,1089,1343,1346,1422,1451 'option':191,224,239,432,447,462,477,674,689,854,879,904,920,1133,1144 'options.file':265,275 'options.filename':283 'options.max':293 'options.path':253,1569 'output':1784 'overview':1765 'overwrit':495 'ownership':995,1002 'page':297,329,1203,1317 'pagin':201,1207,1284,1290,1466 'paper':474,534,1498,1630 'param':1560 'paramet':241,479,691,940,1146 'parent':748 'pars':371 'password':598,723,725,726 'path':192,219,338,352,404,480,482,634,692,696,768,778,941,943,951,953,972,974,980,1005,1014,1074,1147,1149,1226,1232,1238,1254,1257,1260,1391,1394,1406,1415,1423,1439,1547,1583,1591,1598,1604,1610,1620,1628,1635,1654,1663,1688,1696,1705,1707,1721,1736,1738 'path-bas':1231 'path/not_found':788,1223 'paths/ids':1283 'pattern':1228 'pdf':272 'per':296,1069,1075,1164,1446 'per-endpoint':1445 'permiss':733,1805 'photo/video':1183 'pitfal':302,536,751,1003,1185,1390 'plain':531 'png':282 'poll':930,1026,1332,1355 'prefer':1059,1435 'prerequisit':52,635,649 'proper':1512 'protect':600,727 'public':442,520,701 'queri':188,242,1568 'quick':1554 'rate':1440,1448 'read':227,229,357,410,575,1481,1602 'read/download':1599 'recover':1175 'recurs':1154,1193,1584,1592 'reduc':1453 'refer':1555 'renam':503,825,863,965,1082 'request':802,1165 'requir':196,207,405,417,596,660,841,867,892,935,1121,1501,1511,1803 'resolut':1230 'resolv':667,1280 'respond':121 'respons':584,1266,1313 'result':204,223,294,295,313,1163,1205 'retriev':46 'return':138,304,337,350,361,744,1219,1352,1372,1380,1386,1438,1484,1524 'reus':790 'review':1796 'root':264,1153,1190,1402 'rube':16,29,53,58,66,74,85,112,118,124 'rube.app':89 'rube.app/mcp':88 'run':152,1347 's3key':513 'safeti':1806 'save':435,437,524,538,1350,1468,1613,1618 'schema':25,82 'scope':193,254,1777 'search':9,20,37,59,75,119,158,182,186,199,222,243,255,303,331,332,1294,1301,1456,1561,1564,1571,1573 'sensit':949,1009,1419 'sequenc':179,393,623,832,1109 'server':94 'set':285,740,987,997,1357,1655 'settings.access':706 'settings.allow':728 'settings.audience':700 'settings.expires':710 'settings.link':724 'settings.require':722 'setup':83 'sever':1344 'share':8,40,451,459,586,592,603,615,620,639,644,653,658,664,669,678,682,738,754,762,773,796,985,992,1270,1276,1318,1327,1509,1515,1518,1533,1539,1552,1639,1643,1648,1652,1657,1661,1666,1671,1676,1680 'show':149 'silent':319 'singl':563,839,865,888 'size':1204 'skill':1753,1769 'skill-dropbox-automation' 'slug':1558 'small':1212 'sourc':954 'source-sickn33' 'specif':1142,1791 'specifi':403 'standard':1546 'start':484,945,1012,1396 'status':148,934,1331,1741 'stop':1797 'string':189,244,262,1151,1188,1239,1400 'subsequ':1268 'substitut':1787 'success':1809 'support':1085,1132 't23':719 'take':544 'target':942 'task':1556,1773 'team':702 'test':1793 'text':532 'timeout':1474 'tool':21,60,76,81,120,178,392,622,831,1108,1236,1246,1557 'toolkit':51,70,128 'topic-agent-skills' 'topic-agentic-skills' 'topic-ai-agent-skills' 'topic-ai-agents' 'topic-ai-coding' 'topic-ai-workflows' 'topic-antigravity' 'topic-antigravity-skills' 'topic-claude-code' 'topic-claude-code-skills' 'topic-codex-cli' 'topic-codex-skills' 'total':326,1306,1462 'trail':1413 'transfer':996 'treat':1782 'true':286,307,499,741,961,988,998,1155,1170,1180,1359 'type':177,269 'upload':10,373,383,396,398,407,497,518,1605,1608 'upload/download':36 'url':436,443,461,519,521,525,539,671,1272,1281,1351,1469,1507,1614,1619,1621,1646,1674 'use':165,205,348,379,610,806,819,1096,1186,1199,1237,1256,1273,1286,1549,1751,1767 'user':166,345,380,611,685,820,1097,1432 'v1':1041,1065 'v2':1057 'valid':215,777,1792 'verifi':111,233 'via':15,28,65,589,1208 'viewer':707 'visibl':803 'wait':1358 'want':167,381,612,821,1098 'whitespac':251,1020,1414 'work':109 'workflow':154,156,1759 'write':1421 'zip':423,430,554,1624,1627","prices":[{"id":"a4345be1-9f56-4b68-b874-4ef9dbe231d7","listingId":"5751147a-32a1-42a7-8519-25e2041d255e","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"sickn33","category":"antigravity-awesome-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T21:36:23.489Z"}],"sources":[{"listingId":"5751147a-32a1-42a7-8519-25e2041d255e","source":"github","sourceId":"sickn33/antigravity-awesome-skills/dropbox-automation","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/dropbox-automation","isPrimary":false,"firstSeenAt":"2026-04-18T21:36:23.489Z","lastSeenAt":"2026-04-24T06:51:06.257Z"}],"details":{"listingId":"5751147a-32a1-42a7-8519-25e2041d255e","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"dropbox-automation","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34831,"topics":["agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows","antigravity","antigravity-skills","claude-code","claude-code-skills","codex-cli","codex-skills","cursor","cursor-skills","developer-tools","gemini-cli","gemini-skills","kiro","mcp","skill-library"],"license":"mit","html_url":"https://github.com/sickn33/antigravity-awesome-skills","pushed_at":"2026-04-24T06:41:17Z","description":"Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.","skill_md_sha":"6e755bbca79d57109a474b227890ea7043c47c3d","skill_md_path":"skills/dropbox-automation/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/dropbox-automation"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"dropbox-automation","description":"Automate Dropbox file management, sharing, search, uploads, downloads, and folder operations via Rube MCP (Composio). Always search tools first for current schemas."},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/dropbox-automation"},"updatedAt":"2026-04-24T06:51:06.257Z"}}