mit einem Klick
dropbox
Manage Dropbox files and Paper docs
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Manage Dropbox files and Paper docs
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Generate Quarto and HTML reports of local Codex session cost, token usage by model, project, coding vs cowork cost, weekly trends, annual projections, and top expensive sessions.
Check that core Sidekick integrations can authenticate and read common restricted files
Generate summary of 1:1 and meeting notes organized by audience, wins, and kudos
Capture missing TODOs from recent work context. Use when Codex needs to scan the user's Slack DMs with their manager or direct reports, manager/direct-report 1:1 docs, and leadership meeting notes for direct asks or action items assigned to the user, deduplicate against the user's configured todo app, and create missing tasks with source links and searchable metadata.
Draft concise interview scorecards from pasted long-form interview notes, nearby Google Calendar interview context, and memory/miclog/ transcript excerpts. Use when writing hiring feedback, interview scorecards, spikes/troughs, or candidate evaluation summaries.
Calculate a team's average Jira hours from Rovo Jira completed work, with optional Workday Approved Time Off absence adjustments for a date window and team roster.
| name | dropbox |
| description | Manage Dropbox files and Paper docs |
| argument-hint | <operation> [args] |
| allowed-tools | Bash, Read |
Final fallback command-line interface for Dropbox file and Paper doc operations.
Prefer Dropbox MCP (dropbox-mcp) for Paper reads, edits, comments, and thread resolution when it is available:
paper_read_document for Paper reads by URL, file ID, or pad ID.paper_resolve_doc_ref only when a canonical ID is needed without reading the full document.paper_read_document first and pass returned receipts to Dropbox MCP write tools.For Dropbox Paper reads and writes, use this fallback order:
dropbox-mcp) when it can perform the needed read or write.sidekick.clients.dropbox only when Dropbox MCP and Chrome plugin paths are unavailable or unsuitable and DROPBOX_ACCESS_TOKEN is set.Use this skill and sidekick.clients.dropbox only when the fallback order above permits it, standalone local-client execution is specifically needed, debugging the local client, or the user explicitly asks for the local client.
When invoked, use the Dropbox client to handle the request: $ARGUMENTS
Note: Dropbox commands return Markdown by default for Paper documents. Use --html flag only if you need raw HTML for content manipulation.
Write caution: update-paper-contents replaces the full Paper doc body. Prefer Dropbox MCP receipts or the Chrome plugin/live editor for targeted Paper edits.
python -m sidekick.clients.dropbox get-file-contents /path/to/file.txt
Download file content directly from a shared link. Primary use: accessing team space files you don't own.
This is the ONLY way to get Paper doc content you don't own.
For Paper docs: Returns Markdown by default. Use --html flag only if you need raw HTML for content manipulation.
Example:
# Export Paper doc (returns Markdown by default)
python -m sidekick.clients.dropbox export-shared-link "https://www.dropbox.com/s/abc123/Doc.paper?dl=0"
# For HTML (content manipulation):
python -m sidekick.clients.dropbox export-shared-link "https://www.dropbox.com/s/abc123/Doc.paper?dl=0" --html
Use get-paper-contents for Paper docs you own when doing read-write workflows.
For a specific file in a shared folder:
python -m sidekick.clients.dropbox export-shared-link "https://www.dropbox.com/sh/xyz789/folder" --path "/subfolder/file.txt"
For password-protected links:
python -m sidekick.clients.dropbox export-shared-link "https://www.dropbox.com/s/abc123/file.txt?dl=0" --password "secret"
python -m sidekick.clients.dropbox get-metadata /path/to/file
python -m sidekick.clients.dropbox get-paper-contents /Paper/Doc.paper [--format html|markdown]
python -m sidekick.clients.dropbox get-paper-contents-from-link "https://paper.dropbox.com/doc/..."
python -m sidekick.clients.dropbox create-paper-contents /Paper/NewDoc.paper [--content "text"] [--format html|markdown]
python -m sidekick.clients.dropbox update-paper-contents /Paper/Doc.paper [--content "text"] [--format html|markdown]
When the user asks to:
All Dropbox paths must:
/Examples:
/Documents/notes.txt/Paper/MyDoc.paperFor full documentation, see the detailed Dropbox skill documentation in this folder.