# Recipe Find Large Files

> Identify large Google Drive files consuming storage quota.

- Skill: `nota-america/recipe-find-large-files` (Agent Skill)
- Install (CLI): `npx skillmds@latest add nota-america/recipe-find-large-files`
- Raw SKILL.md: https://api.skillmd.com/api/skills/nota-america/recipe-find-large-files/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: nota-america (https://skillmd.com/u/nota-america)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/nota-america/recipe-find-large-files

---


# 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

