google-drive
Installation
SKILL.md
Google Drive
File operations via Google Drive API v3.
Environment Variables
GOOGLE_ACCESS_TOKEN- OAuth2 access token withdrivescope
List files
curl -s -H "Authorization: Bearer $GOOGLE_ACCESS_TOKEN" \
"https://www.googleapis.com/drive/v3/files?pageSize=10&fields=files(id,name,mimeType,modifiedTime)" \
| jq '.files[]'