
Dropbox
Connect agents to Dropbox files, folders, and shared links through Membrane so auth and credential refresh stay out of your integration code.
Overview
Dropbox is an agent skill for the Build phase that connects coding agents to Dropbox files and folders through the Membrane CLI with managed authentication.
Install
npx skills add https://github.com/membranedev/application-skills --skill dropboxWhat is this skill?
- Dropbox files, folders, and shared links exposed via Membrane action names
- Membrane CLI handles authentication and automatic credential refresh
- Free Membrane tier supported; MIT-licensed skill aligned with official Dropbox developer docs
- Install via npm global @membranehq/cli@latest then membrane login --tenant
- Use when the user wants to interact with Dropbox data from an agent workflow
- Membrane skill metadata version 1.0
- Categories: File Storage and Document Management
Adoption & trust: 1.2k installs on skills.sh; 178 GitHub stars; 1/3 security scanners passed (skills.sh audits).
What problem does it solve?
You want your agent to read or organize Dropbox files but do not want to maintain OAuth tokens and Dropbox API plumbing yourself.
Who is it for?
Indie builders adding document sync, shared-link workflows, or file automation where Dropbox is already the team file hub.
Skip if: Greenfield apps that should use S3-compatible object storage only, or air-gapped environments without network and Membrane access.
When should I use this skill?
Use when the user wants to interact with Dropbox data or manage Dropbox accounts through Membrane.
What do I get? / Deliverables
After Membrane login and CLI setup, the agent can invoke documented Dropbox actions while Membrane refreshes credentials in the background.
- Authenticated Membrane session for Dropbox
- Agent-invokable Dropbox file/folder/shared-link actions
Recommended Skills
Journey fit
Build is where third-party file-hosting integrations land for products and internal automations. Integrations subphase reflects OAuth-backed Dropbox API work mediated by Membrane rather than generic PM or frontend UI tasks.
How it compares
Membrane-mediated Dropbox integration skill—not a raw Dropbox REST cheat sheet or desktop sync client.
Common Questions / FAQ
Who is dropbox for?
Developers and solo founders using agents to manage Dropbox-hosted files, folders, and shared links via Membrane.
When should I use dropbox?
During Build integrations when a feature must list, upload, organize, or share Dropbox assets and you want Membrane to own auth.
Is dropbox safe to install?
Review the Security Audits panel on this Prism page; the skill needs network access and ties to your Membrane tenant and Dropbox permissions.
SKILL.md
READMESKILL.md - Dropbox
# Dropbox Dropbox is a file hosting service that provides cloud storage, file synchronization, personal cloud, and client software. It is commonly used by individuals and teams to store and share files, documents, and other data across multiple devices. Official docs: https://developers.dropbox.com/ ## Dropbox Overview - **Files** - **Shared Links** - **Folders** Use action names and parameters as needed. ## Working with Dropbox This skill uses the Membrane CLI to interact with Dropbox. Membrane handles authentication and credentials refresh automatically — so you can focus on the integration logic rather than auth plumbing. ### Install the CLI Install the Membrane CLI so you can run `membrane` from the terminal: ```bash npm install -g @membranehq/cli@latest ``` ### Authentication ```bash membrane login --tenant --clientName=<agentType> ``` This will either open a browser for authentication or print an authorization URL to the console, depending on whether interactive mode is available. **Headless environments:** The command will print an authorization URL. Ask the user to open it in a browser. When they see a code after completing login, finish with: ```bash membrane login complete <code> ``` Add `--json` to any command for machine-readable JSON output. **Agent Types** : claude, openclaw, codex, warp, windsurf, etc. Those will be used to adjust tooling to be used best with your harness ### Connecting to Dropbox Use `membrane connection ensure` to find or create a connection by app URL or domain: ```bash membrane connection ensure "https://www.dropbox.com/" --json ``` The user completes authentication in the browser. The output contains the new connection id. This is the fastest way to get a connection. The URL is normalized to a domain and matched against known apps. If no app is found, one is created and a connector is built automatically. If the returned connection has `state: "READY"`, skip to **Step 2**. #### 1b. Wait for the connection to be ready If the connection is in `BUILDING` state, poll until it's ready: ```bash npx @membranehq/cli connection get <id> --wait --json ``` The `--wait` flag long-polls (up to `--timeout` seconds, default 30) until the state changes. Keep polling until `state` is no longer `BUILDING`. The resulting state tells you what to do next: - **`READY`** — connection is fully set up. Skip to **Step 2**. - **`CLIENT_ACTION_REQUIRED`** — the user or agent needs to do something. The `clientAction` object describes the required action: - `clientAction.type` — the kind of action needed: - `"connect"` — user needs to authenticate (OAuth, API key, etc.). This covers initial authentication and re-authentication for disconnected connections. - `"provide-input"` — more information is needed (e.g. which app to connect to). - `clientAction.description` — human-readable explanation of what's needed. - `clientAction.uiUrl` (optional) — URL to a pre-built UI where the user can complete the action. Show this to the user when present. - `clientAction.agentInstructions` (optional) — instructions for the AI agent on how to proceed programmatically. After the user completes the action (e.g. authenticates in the browser), poll again with `membrane connection get <id> --json` to check if the state moved to `READY`. - **`CONFIGURATION_ERROR`** or **`SETUP_FAILED`** — something went wrong. Check the `error` field for details. ### Searching for actions Search using a natural language description of what you want to do: ```bash membrane action list