# Recipe Find Large Files

> Identify large Google Drive files consuming storage quota by listing files sorted by size.

- Skill: `vikingokft/recipe-find-large-files` (Agent Skill)
- Install (CLI): `npx skillmds add vikingokft/recipe-find-large-files`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vikingokft/recipe-find-large-files/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Tags: File Management, Google Drive, Storage Quota
- Author: vikingokft (https://skillmd.com/u/vikingokft)
- Updated: 2026-08-22
- Page: https://skillmd.com/skills/vikingokft/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


