Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

one-drive-automation一驱自动化

Agent Skill

one-drive-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

541

周安装

23

GitHub Stars

52

下载量

190
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:one-drive-automation(一驱自动化)
来源仓库:https://github.com/aaaaqwq/claude-code-skills
仓库路径:skills/one-drive-automation
安装命令:
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill one-drive-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill one-drive-automation

简介

one-drive-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它支持基于上下文过滤内容、提取关键实体并生成结构化摘要。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限范围和操作边界。
  • 安装前建议核实维护状态、是否会触发联网或文件读写,避免误操作影响生产环境。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

OneDrive Automation via Rube MCP

Automate OneDrive operations including file upload/download, search, folder management, sharing links, permissions management, and drive browsing through Composio's OneDrive toolkit.

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active OneDrive connection via RUBE_MANAGE_CONNECTIONS with toolkit one_drive
  • Always call RUBE_SEARCH_TOOLS first to get current tool schemas

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit one_drive
  3. If connection is not ACTIVE, follow the returned auth link to complete Microsoft OAuth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Search and Browse Files

When to use: User wants to find files or browse folder contents in OneDrive

Tool sequence:

  1. ONE_DRIVE_GET_DRIVE - Verify drive access and get drive details [Prerequisite]
  2. ONE_DRIVE_SEARCH_ITEMS - Keyword search across filenames, metadata, and content [Required]
  3. ONE_DRIVE_ONEDRIVE_LIST_ITEMS - List all items in the root of a drive [Optional]
  4. ONE_DRIVE_GET_ITEM - Get detailed metadata for a specific item, expand children [Optional]
  5. ONE_DRIVE_ONEDRIVE_FIND_FILE - Find a specific file by exact name in a folder [Optional]
  6. ONE_DRIVE_ONEDRIVE_FIND_FOLDER - Find a specific folder by name [Optional]
  7. ONE_DRIVE_LIST_DRIVES - List all accessible drives [Optional]

Key parameters:

  • q: Search query (plain keywords only, NOT KQL syntax)
  • search_scope: "root" (folder hierarchy) or "drive" (includes shared items)
  • top: Max items per page (default 200)
  • skip_token: Pagination token from @odata.nextLink
  • select: Comma-separated fields to return (e.g., "id,name,webUrl,size")
  • orderby: Sort order (e.g., "name asc", "name desc")
  • item_id: Item ID for GET_ITEM
  • expand_relations: Array like ["children"] or ["thumbnails"] for GET_ITEM
  • user_id: "me" (default) or specific user ID/email

Pitfalls:

  • ONE_DRIVE_SEARCH_ITEMS does NOT support KQL operators (folder:, file:, filetype:, path:); these are treated as literal text
  • Wildcard characters (*, ?) are NOT supported and are auto-removed; use file extension keywords instead (e.g., "pdf" not "*.pdf")
  • ONE_DRIVE_ONEDRIVE_LIST_ITEMS returns only root-level contents; use recursive ONE_DRIVE_GET_ITEM with expand_relations: ["children"] for deeper levels
  • Large folders paginate; always follow skip_token / @odata.nextLink until exhausted
  • Some drive ID formats may return "ObjectHandle is Invalid" errors due to Microsoft Graph API limitations

2. Upload and Download Files

When to use: User wants to upload files to OneDrive or download files from it

Tool sequence:

  1. ONE_DRIVE_ONEDRIVE_FIND_FOLDER - Locate the target folder [Prerequisite]
  2. ONE_DRIVE_ONEDRIVE_UPLOAD_FILE - Upload a file to a specified folder [Required for upload]
  3. ONE_DRIVE_DOWNLOAD_FILE - Download a file by item ID [Required for download]
  4. ONE_DRIVE_GET_ITEM - Get file details before download [Optional]

Key parameters:

  • file: FileUploadable object with s3key, mimetype, and name for uploads
  • folder: Destination path (e.g., "/Documents/Reports") or folder ID for uploads
  • item_id: File's unique identifier for downloads
  • file_name: Desired filename with extension for downloads
  • drive_id: Specific drive ID (for SharePoint or OneDrive for Business)
  • user_id: "me" (default) or specific user identifier

Pitfalls:

  • Upload automatically renames on conflict (no overwrite option by default)
  • Large files are automatically handled via chunking
  • drive_id overrides user_id when both are provided
  • Item IDs vary by platform: OneDrive for Business uses 01... prefix, OneDrive Personal uses HASH!NUMBER format
  • Item IDs are case-sensitive; use exactly as returned from API

3. Share Files and Manage Permissions

When to use: User wants to share files/folders or manage who has access

Tool sequence:

  1. ONE_DRIVE_ONEDRIVE_FIND_FILE or ONE_DRIVE_ONEDRIVE_FIND_FOLDER - Locate the item [Prerequisite]
  2. ONE_DRIVE_GET_ITEM_PERMISSIONS - Check current permissions [Prerequisite]
  3. ONE_DRIVE_INVITE_USER_TO_DRIVE_ITEM - Grant access to specific users [Required]
  4. ONE_DRIVE_CREATE_LINK - Create a shareable link [Optional]
  5. ONE_DRIVE_UPDATE_DRIVE_ITEM_METADATA - Update item metadata [Optional]

Key parameters:

  • item_id: The file or folder to share
  • recipients: Array of objects with email or object_id
  • roles: Array with "read" or "write"
  • send_invitation: true to send notification email, false for silent permission grant
  • require_sign_in: true to require authentication to access
  • message: Custom message for invitation (max 2000 characters)
  • expiration_date_time: ISO 8601 date for permission expiry
  • retain_inherited_permissions: true (default) to keep existing inherited permissions

Pitfalls:

  • Using wrong item_id with INVITE_USER_TO_DRIVE_ITEM changes permissions on unintended items; always verify first
  • Write or higher roles are impactful; get explicit user confirmation before granting
  • GET_ITEM_PERMISSIONS returns inherited and owner entries; do not assume response only reflects recent changes
  • permissions cannot be expanded via ONE_DRIVE_GET_ITEM; use the separate permissions endpoint
  • At least one of require_sign_in or send_invitation must be true

4. Manage Folders (Create, Move, Delete, Copy)

When to use: User wants to create, move, rename, delete, or copy files and folders

Tool sequence:

  1. ONE_DRIVE_ONEDRIVE_FIND_FOLDER - Locate source and destination folders [Prerequisite]
  2. ONE_DRIVE_ONEDRIVE_CREATE_FOLDER - Create a new folder [Required for create]
  3. ONE_DRIVE_MOVE_ITEM - Move a file or folder to a new location [Required for move]
  4. ONE_DRIVE_COPY_ITEM - Copy a file or folder (async operation) [Required for copy]
  5. ONE_DRIVE_DELETE_ITEM - Move item to recycle bin [Required for delete]
  6. ONE_DRIVE_UPDATE_DRIVE_ITEM_METADATA - Rename or update item properties [Optional]

Key parameters:

  • name: Folder name for creation or new name for rename/copy
  • parent_folder: Path (e.g., "/Documents/Reports") or folder ID for creation
  • itemId: Item to move
  • parentReference: Object with id (destination folder ID) for moves: {"id": "folder_id"}
  • item_id: Item to copy or delete
  • parent_reference: Object with id and optional driveId for copy destination
  • @microsoft.graph.conflictBehavior: "fail", "replace", or "rename" for copies
  • if_match: ETag for optimistic concurrency on deletes

Pitfalls:

  • ONE_DRIVE_MOVE_ITEM does NOT support cross-drive moves; use ONE_DRIVE_COPY_ITEM for cross-drive transfers
  • parentReference for moves requires folder ID (not folder name); resolve with ONEDRIVE_FIND_FOLDER first
  • ONE_DRIVE_COPY_ITEM is asynchronous; response provides a URL to monitor progress
  • ONE_DRIVE_DELETE_ITEM moves to recycle bin, not permanent deletion
  • Folder creation auto-renames on conflict (e.g., "New Folder" becomes "New Folder 1")
  • Provide either name or parent_reference (or both) for ONE_DRIVE_COPY_ITEM

5. Track Changes and Drive Information

When to use: User wants to monitor changes or get drive/quota information

Tool sequence:

  1. ONE_DRIVE_GET_DRIVE - Get drive properties and metadata [Required]
  2. ONE_DRIVE_GET_QUOTA - Check storage quota (total, used, remaining) [Optional]
  3. ONE_DRIVE_LIST_SITE_DRIVE_ITEMS_DELTA - Track changes in SharePoint site drives [Optional]
  4. ONE_DRIVE_GET_ITEM_VERSIONS - Get version history of a file [Optional]

Key parameters:

  • drive_id: Drive identifier (or "me" for personal drive)
  • site_id: SharePoint site identifier for delta tracking
  • token: Delta token ("latest" for current state, URL for next page, or timestamp)
  • item_id: File ID for version history

Pitfalls:

  • Delta queries are only available for SharePoint site drives via ONE_DRIVE_LIST_SITE_DRIVE_ITEMS_DELTA
  • Token "latest" returns current delta token without items (useful as starting point)
  • Deep or large drives can take several minutes to crawl; use batching and resume logic

Common Patterns

ID Resolution

  • User: Use "me" for authenticated user or specific user email/GUID
  • Item ID from find: Use ONE_DRIVE_ONEDRIVE_FIND_FILE or ONE_DRIVE_ONEDRIVE_FIND_FOLDER to get item IDs
  • Item ID from search: Extract from ONE_DRIVE_SEARCH_ITEMS results
  • Drive ID: Use ONE_DRIVE_LIST_DRIVES or ONE_DRIVE_GET_DRIVE to discover drives
  • Folder path to ID: Use ONE_DRIVE_ONEDRIVE_FIND_FOLDER with path, then extract ID from response

ID formats vary by platform:

  • OneDrive for Business/SharePoint: 01NKDM7HMOJTVYMDOSXFDK2QJDXCDI3WUK
  • OneDrive Personal: D4648F06C91D9D3D!54927

Pagination

OneDrive uses token-based pagination:

  • Follow @odata.nextLink or skip_token until no more pages
  • Set top for page size (varies by endpoint)
  • ONE_DRIVE_ONEDRIVE_LIST_ITEMS auto-handles pagination internally
  • Aggressive parallel requests can trigger HTTP 429; honor Retry-After headers

Path vs ID

Most OneDrive tools accept either paths or IDs:

  • Paths: Start with / (e.g., "/Documents/Reports")
  • IDs: Use unique item identifiers from API responses
  • Item paths for permissions: Use :/path/to/item:/ format

Known Pitfalls

ID Formats

  • Item IDs are case-sensitive and platform-specific
  • Never use web URLs, sharing links, or manually constructed identifiers as item IDs
  • Always use IDs exactly as returned from Microsoft Graph API

Rate Limits

  • Aggressive parallel ONE_DRIVE_GET_ITEM calls can trigger HTTP 429 Too Many Requests
  • Honor Retry-After headers and implement throttling
  • Deep drive crawls should use batching with delays

Search Limitations

  • No KQL support; use plain keywords only
  • No wildcard characters; use extension keywords (e.g., "pdf" not "*.pdf")
  • No path-based filtering in search; use folder listing instead
  • q='*' wildcard-only queries return HTTP 400 invalidRequest

Parameter Quirks

  • drive_id overrides user_id when both are provided
  • permissions cannot be expanded via GET_ITEM; use dedicated permissions endpoint
  • Move operations require folder IDs in parentReference, not folder names
  • Copy operations are asynchronous; response provides monitoring URL

Quick Reference

TaskTool SlugKey Params
Search filesONE_DRIVE_SEARCH_ITEMSq, search_scope, top
List root itemsONE_DRIVE_ONEDRIVE_LIST_ITEMSuser_id, select, top
Get item detailsONE_DRIVE_GET_ITEMitem_id, expand_relations
Find file by nameONE_DRIVE_ONEDRIVE_FIND_FILEname, folder
Find folder by nameONE_DRIVE_ONEDRIVE_FIND_FOLDERname, folder
Upload fileONE_DRIVE_ONEDRIVE_UPLOAD_FILEfile, folder
Download fileONE_DRIVE_DOWNLOAD_FILEitem_id, file_name
Create folderONE_DRIVE_ONEDRIVE_CREATE_FOLDERname, parent_folder
Move itemONE_DRIVE_MOVE_ITEMitemId, parentReference
Copy itemONE_DRIVE_COPY_ITEMitem_id, parent_reference, name
Delete itemONE_DRIVE_DELETE_ITEMitem_id
Share with usersONE_DRIVE_INVITE_USER_TO_DRIVE_ITEMitem_id, recipients, roles
Create share linkONE_DRIVE_CREATE_LINKitem_id, link type
Get permissionsONE_DRIVE_GET_ITEM_PERMISSIONSitem_id
Update metadataONE_DRIVE_UPDATE_DRIVE_ITEM_METADATAitem_id, fields
Get drive infoONE_DRIVE_GET_DRIVEdrive_id
List drivesONE_DRIVE_LIST_DRIVESuser/group/site scope
Get quotaONE_DRIVE_GET_QUOTA(none)
Track changesONE_DRIVE_LIST_SITE_DRIVE_ITEMS_DELTAsite_id, token
Version historyONE_DRIVE_GET_ITEM_VERSIONSitem_id

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.51%
按下载量换算67

Claude

30.39%
按下载量换算58

Cursor

20.72%
按下载量换算39

Gemini CLI

11.25%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills