📁inspect-dropbox-file
- プラグイン
- dropbox
- ソース
- GitHub で見る ↗
説明
Dropboxのファイルまたはフォルダーを、メタデータ・共有リンク・必要に応じてファイルの内容を確認することで詳しく調べます。 次のような場合に使用: ユーザーがファイルの内容を尋ねる、共有されているかどうかを確認する、最終更新日時を調べる、アクセスリンクの有無を確認する、またはDropboxファイルを読み取り・分析したいとき。
原文を表示
Inspect a Dropbox file or folder by checking metadata, shared links, and file content when needed. Use when the user asks what a file is, whether it is shared, when it changed, what access links exist, or asks to read/analyze a Dropbox file.
ユースケース
- ✓ファイルの内容を確認するとき
- ✓ファイルが共有されているか調べるとき
- ✓ファイルの更新日時を確認するとき
- ✓アクセスリンクの有無を確認するとき
- ✓Dropboxファイルを読み取り・分析するとき
本文(日本語訳)
Dropbox ファイルの検査
次のような場合に使用: DropboxのファイルやフォルダーについてSummarize(要約)、比較、共有、復元、整理を行う前に、その内容を把握したいとき。
ツール
get_file_metadatafetchlist_shared_linksget_shared_link_metadatasearchlist_folder
ワークフロー
- ユーザーのリクエストから対象のファイルまたはフォルダーを特定する。
- 対象が曖昧な場合は、
searchまたはlist_folderを使用して候補を絞り込む。 - 特定したアイテムに対して
get_file_metadataを呼び出す。 - ユーザーがコンテンツの確認・要約・抽出・分析を求めている場合は、ファイルに対して
fetchを使用する。 - ユーザーがバージョン履歴やロールバックの選択肢について尋ねている場合は、現在のDropbox MCPツールではリビジョンの一覧取得や復元操作が提供されていないことを説明する。
- ユーザーが共有やアクセス権について尋ねている場合は
list_shared_linksを使用する。レスポンスにhas_moreが含まれるか、カーソルが返されている間は、共有リンクの一覧取得が完了したと判断せず、引き続き取得を続ける。 - ユーザーがDropboxの共有リンクを提示した場合、または特定のリンクについて尋ねている場合は
get_shared_link_metadataを使用する。
出力
ユーザーのリクエストに関連する情報のみを要約して提示する。含める内容は以下のとおり:
- 名前とパス
- ファイルまたはフォルダーの種別
- 利用可能な場合はファイルサイズと更新日時
- 関連する場合は共有・リンクの状態(共有リンクのページネーションが完了しているかどうかを含む)
- 関連する場合はバージョン履歴機能の制限事項
- 関連する場合は取得したコンテンツの要約
- ユーザーから求められた場合は、推奨される次のアクション
安全に関する注意
このワークフローは読み取り専用です。 リンクの作成、共有設定の変更、コピー、移動、削除、コンテンツの復元は行わないでください。 ユーザーがこれらの変更操作を求めた場合は、意図されているアクションを説明したうえで、該当するDropbox skillに切り替えてください。
使用が適切なトリガーの例
- 「このDropboxファイルは何ですか?」
- 「このファイルを要約してください。」
- 「このフォルダーが共有されているか確認してください。」
- 「リビジョン履歴を見せてください。」
- 「このドキュメントはいつ最後に更新されましたか?」
次のような場合には使用しないこと
- ユーザーがファイルの検索やブラウジングのみを行いたい場合 →
find-dropbox-contentを使用してください。 - ユーザーが共有リンクの作成や共有リンクの状態確認を行いたい場合 →
share-dropbox-contentを使用してください。 - ユーザーが特定の受信者に直接共有したり、閲覧者を追加したりしたい場合 → 必要なMCPツールが公開されるまで、受信者への共有機能は利用できないことを説明してください。
- ユーザーがリビジョンを復元したい場合 → DropboxのrestoreツールがMCPに公開されるまで、リカバリー機能は利用できないことを説明してください。
原文(English)を表示
Inspect Dropbox File
Use this skill to understand a Dropbox file or folder before summarizing, comparing, sharing, restoring, or organizing it.
Tools
get_file_metadatafetchlist_shared_linksget_shared_link_metadatasearchlist_folder
Workflow
- Identify the target file or folder from the user request.
- If the target is ambiguous, use
searchorlist_folderto find likely matches. - Call
get_file_metadatafor the chosen item. - If the user asks about content, summary, extraction, or analysis, use
fetchfor files. - If the user asks about version history or rollback options, explain that the current Dropbox MCP tools do not expose revision listing or restore operations.
- If the user asks about sharing or access, use
list_shared_links; continue while the response indicates has_more or returns a cursor before claiming the shared-link listing is complete. - If the user provides a Dropbox shared link or asks about a specific link, use
get_shared_link_metadata.
Output
Summarize only the details relevant to the user request. Include:
- Name and path
- File or folder type
- Size and modified time when available
- Sharing/link status when relevant, including whether shared-link pagination is complete
- Version-history limitation when relevant
- Fetched content summary when relevant
- Recommended next action, if the user asked for one
Safety
This is a read-only workflow. Do not create links, change sharing, copy, move, delete, or restore content. If the user asks for a mutation, explain the intended action and switch to the relevant Dropbox skill.
Good Triggers
- "What is this Dropbox file?"
- "Summarize this file."
- "Check whether this folder is shared."
- "Show me the revision history."
- "When was this document last updated?"
Do Not Use When
- The user only wants to search or browse. Use
find-dropbox-content. - The user wants to create a shared link or inspect shared-link state. Use
share-dropbox-content. - The user wants to add viewers or share directly with named recipients. Explain that recipient-sharing is unavailable until the required MCP tools are exposed.
- The user wants to restore a revision. Explain that recovery is unavailable until the Dropbox restore tool is exposed.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。