dropboxlisted
Install: claude install-skill hsigstad/research-kit
# Dropbox
Browse, upload, and download files on Dropbox using rclone.
> **Backing up a pipeline/project artifact** (corpus, cache, scraped raw) rather than
> sharing an ad-hoc file? Use the **`backup`** skill — it covers the format (per-file
> ZSTD vs `tar.zst`) and location (`data/` shared lake vs `pipelines/<slug>/`) decisions,
> plus verify + audit steps.
## Available remotes
- **`bi-dropbox:`** — BI/work Dropbox. Contains shared coauthor folders and `data/` directory.
- **`personal-dropbox:`** — Henrik's personal Dropbox. Parts synced locally to `~/Dropbox`.
## Common operations
**Browse:**
```bash
rclone lsd <remote>:path # list directories
rclone ls <remote>:path # list files with sizes
```
**Upload:**
```bash
rclone copy /local/path <remote>:destination/ --progress
```
**Download:**
```bash
rclone copy <remote>:path /local/destination/ --progress
```
**Sync (mirror local to remote):**
```bash
rclone sync /local/path <remote>:destination/ --progress --dry-run # preview first
```
## Parsing the request
The user may say things like:
- `/dropbox upload camara-MG.csv to TCEAndreiHenrik`
- `/dropbox what's in the data folder?`
- `/dropbox download the latest file from ArntzenFivaSigstad`
Extract:
1. **Action** — browse, upload, download, or sync
2. **Remote** — which Dropbox account (guess from context: coauthor folders → bi-dropbox, personal shared folders like TCEAndreiHenrik → personal-dropbox)
3. **Path** — remote path and/or local path
#