← All skills
Tencent SkillHub · Communication & Collaboration

Clawdbot Skill Dropbox

Upload, download, and manage files in Dropbox with automatic OAuth token refresh.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Upload, download, and manage files in Dropbox with automatic OAuth token refresh.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, package.json, scripts/dropbox.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Dropbox

Upload, download, list, and search files in Dropbox. Supports automatic token refresh.

Required Credentials

VariableRequiredDescriptionDROPBOX_APP_KEY✅ YesYour Dropbox app keyDROPBOX_APP_SECRET✅ YesYour Dropbox app secretDROPBOX_REFRESH_TOKEN✅ YesOAuth refresh token (long-lived)DROPBOX_ACCESS_TOKENOptionalShort-lived access token (auto-refreshed) Store in ~/.config/atlas/dropbox.env: DROPBOX_APP_KEY=your_app_key DROPBOX_APP_SECRET=your_app_secret DROPBOX_REFRESH_TOKEN=xxx... DROPBOX_ACCESS_TOKEN=sl.u.xxx...

1. Create a Dropbox App

Go to https://www.dropbox.com/developers/apps Click "Create app" Choose "Scoped access" Choose "Full Dropbox" (or "App folder" for limited access) Name your app Note the App key and App secret

2. Set Permissions

In the app settings under "Permissions", enable: files.metadata.read files.metadata.write files.content.read files.content.write account_info.read Click "Submit" to save.

3. Run OAuth Flow

Generate the authorization URL: import urllib.parse APP_KEY = "your_app_key" params = { "client_id": APP_KEY, "response_type": "code", "token_access_type": "offline" # This gets you a refresh token! } auth_url = "https://www.dropbox.com/oauth2/authorize?" + urllib.parse.urlencode(params) print(auth_url) Give the URL to the user. They will: Open it in a browser Authorize the app Receive an authorization code

4. Exchange Code for Tokens

curl -X POST "https://api.dropboxapi.com/oauth2/token" \ -d "code=AUTHORIZATION_CODE" \ -d "grant_type=authorization_code" \ -d "client_id=APP_KEY" \ -d "client_secret=APP_SECRET" Response includes: access_token — Short-lived (~4 hours) refresh_token — Long-lived (never expires unless revoked)

Usage

# Account info dropbox.py account # List folder dropbox.py ls "/path/to/folder" # Search files dropbox.py search "query" # Download file dropbox.py download "/path/to/file.pdf" # Upload file dropbox.py upload local_file.pdf "/Dropbox/path/remote_file.pdf"

Token Refresh

The script automatically handles token refresh: On 401 Unauthorized, it uses the refresh token to get a new access token Updates dropbox.env with the new access token Retries the original request

Token Lifecycle

TokenLifetimeStorageAccess Token~4 hoursUpdated automaticallyRefresh TokenNever expires*Keep secure, don't share *Refresh tokens only expire if explicitly revoked or app access is removed.

Troubleshooting

401 Unauthorized on refresh: App may have been disconnected — re-run OAuth flow from step 3 403 Forbidden: Check app permissions in Dropbox console Path errors: Dropbox paths start with / and are case-insensitive Use forward slashes even on Windows

API Reference

OAuth Guide: https://developers.dropbox.com/oauth-guide API Explorer: https://dropbox.github.io/dropbox-api-v2-explorer/

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/dropbox.py Scripts
  • package.json Config