AgentSkillsCN

integration-google-drive

通过 AgenCo 可用的 Google Drive 操作

SKILL.md
--- frontmatter
name: integration-google-drive
description: "Google Drive actions available through AgenCo"
user-invocable: false
disable-model-invocation: false

Google Drive

Actions available through AgenCo secure gateway. All credentials are stored in the cloud vault — never exposed locally.

Actions

ActionDescription
list_filesRetrieves files and folders from Drive with search filters
get_fileFetches file metadata and content details
create_fileUploads new files to Drive with folder placement
update_fileModifies file content or metadata
delete_fileRemoves files from Drive or moves to trash
copy_fileCreates copies of files in specified locations
export_fileExports Google Docs to different formats like PDF or Word
list_permissionsGets sharing settings and access permissions
create_permissionShares files with users or groups with specified access levels

How to Use

Always search first to discover exact tool names and their input schemas, then call the tool.

Step 1: Search for the tool

bash
agenco search-tools '{"queries":["google drive list files"]}'

The response includes toolName (exact name) and inputSchema (required/optional parameters).

Step 2: Call the tool

Use the exact toolName and match the inputSchema from the search results:

bash
agenco call-tool '{"toolName":"<toolName from search>","input":{...}}'

Example

bash
# Find the right tool
agenco search-tools '{"queries":["google drive list files"]}'

# Call it (use the exact toolName and schema from the search result)
agenco call-tool '{"toolName":"google-drive_list_files","input":{...}}'

If Google Drive is not connected, run agenco list-connected-integrations to check, then connect it via the Shield UI.