Recipe Find Large Files

v1.0.12

Identify large Google Drive files consuming storage quota.

0· 359·9 current·9 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for googleworkspace-bot/recipe-find-large-files.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Recipe Find Large Files" (googleworkspace-bot/recipe-find-large-files) from ClawHub.
Skill page: https://clawhub.ai/googleworkspace-bot/recipe-find-large-files
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: gws
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install recipe-find-large-files

ClawHub CLI

Package manager switcher

npx clawhub@latest install recipe-find-large-files
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description ask for finding large Drive files and the SKILL.md invokes the gws CLI and references gws-drive — these are the expected tools for Google Drive operations.
Instruction Scope
Instructions are narrowly scoped: run a single gws command to list files by quotaBytesUsed and review results. The recipe does not ask to read unrelated files, environment variables, or to transmit data to external endpoints.
Install Mechanism
No install spec and no code files (instruction-only). That minimizes on-disk code execution risk; the only runtime requirement is an existing gws binary and the gws-drive skill.
Credentials
The recipe declares no env vars itself, which is reasonable for an instruction-only recipe. However, practical use requires authentication to Google Drive — that responsibility is delegated to the referenced gws-drive skill or to the gws CLI environment. Verify gws-drive's credential requirements before granting access.
Persistence & Privilege
always is false, the skill is user-invocable and does not request persistent or elevated privileges or modify other skills. Autonomous invocation is allowed by default but is not excessive here given the scope.
Assessment
This recipe is small and coherent: it runs the gws CLI to list the largest Drive files. Before installing or using it, ensure you have a trusted gws binary and the companion gws-drive skill (or other auth mechanism) properly configured — that other skill will handle Drive credentials. Review the gws-drive skill's requested permissions and storage of tokens, because this recipe itself doesn't declare credentials but relies on them. Also confirm you trust the source of the gws tool (it will have access to your Drive data when authenticated). If you don't want to grant Drive access, do not enable the companion gws-drive skill or run the command.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binsgws
latestvk971qhch7ysh34tdfthz97kf4x83y51k
359downloads
0stars
13versions
Updated 3w ago
v1.0.12
MIT-0

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

Comments

Loading comments...