Install
openclaw skills install rhandus-file-managementGoogle Drive file management for OpenClaw using gog CLI. Upload, download, list, search, and organize files.
openclaw skills install rhandus-file-managementGestión de archivos en Google Drive para OpenClaw. Sube, descarga, lista, busca y organiza archivos en la nube.
Utiliza esta herramienta cuando necesites:
drive uploadSube archivos a Google Drive.
file (string, requerido): Ruta del archivo a subir--folder (string, opcional): ID de carpeta en Drive (default: root)--name (string, opcional): Nombre personalizado en Drivedrive downloadDescarga archivos desde Google Drive.
fileId (string, requerido): ID del archivo en Drive--output (string, opcional): Ruta de destino (default: workspace)drive listLista archivos en Google Drive.
--folder (string, opcional): ID de carpeta (default: root)--limit (number, opcional): Máximo resultados (default: 20)--query (string, opcional): Filtro de búsquedadrive searchBusca archivos en Google Drive.
query (string, requerido): Términos de búsqueda--type (string, opcional): Tipo de archivo (document,spreadsheet,presentation,etc.)drive shareComparte un archivo.
fileId (string, requerido): ID del archivo--email (string, requerido): Email para compartir--role (string, opcional): Rol (reader,writer,commenter) (default: reader)Requiere gog CLI configurado con acceso a Google Drive.
La cuenta por defecto es TU_EMAIL_GOOGLE.
# Subir un archivo a Drive
file upload /workspace/ventas-y-gastos/README.md --folder "appDataFolder"
# Listar archivos en Drive
file list --limit 10
# Buscar documentos
file search "reporte ventas 2026"
# Descargar un archivo
file download 1ABC123DEF456 --output /workspace/backups/
# Compartir un archivo
file share 1ABC123DEF456 --email equipo@tiklick.com --role writer