Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Identify the largest files in Google Drive sorted by storage quota usage.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-find-large-files3description: "Identify large Google Drive files consuming storage quota."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-drive14---1516# Find Largest Files in Drive1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`1920Identify large Google Drive files consuming storage quota.2122## Steps23241. List files sorted by size: `gws drive files list --params '{"orderBy": "quotaBytesUsed desc", "pageSize": 20, "fields": "files(id,name,size,mimeType,owners)"}' --format table`252. Review the output and identify files to archive or move2627