# Recipe Find Large Files > Identify large Google Drive files consuming storage quota. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-find-large-files Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 15 tok installed, 175 tok once triggered, 175 tok with every bundled file Bundle: 1 file, 700 B Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-find-large-files --agent claude-code ``` ## What it does - Lista los archivos de Google Drive ordenados por tamaño para identificar los que consumen más cuota de almacenamiento - Ejecuta `gws drive files list` con `orderBy quotaBytesUsed desc` y muestra id, nombre, tamaño, mimeType y propietarios ## Use it when - Necesitas encontrar archivos grandes en Drive para liberar espacio de almacenamiento - Quieres decidir qué archivos archivar o mover ## What triggers it - "Encuentra los archivos más grandes en mi Google Drive" - "¿Qué archivos están ocupando más cuota de almacenamiento en Drive?" ## Before you install - Requiere el binario `gws` y la skill `gws-drive` cargada. ## Files - SKILL.md — 700 B ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # Find Largest Files in Drive > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` Identify large Google Drive files consuming storage quota. ## Steps 1. List files sorted by size: `gws drive files list --params '{"orderBy": "quotaBytesUsed desc", "pageSize": 20, "fields": "files(id,name,size,mimeType,owners)"}' --format table` 2. Review the output and identify files to archive or move --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-find-large-files