
Recipe Organize Drive Folder
Create a Google Drive folder tree and move existing files into the right parents using gws drive CLI commands.
Install
npx skills add https://github.com/googleworkspace/cli --skill recipe-organize-drive-folderWhat is this skill?
- Four-step recipe: create project folder, create sub-folders, move files with update parents, list children to verify
- Uses gws drive files create with application/vnd.google-apps.folder mimeType
- Moves files via files update with addParents and removeParents params
- Verification step lists folder contents with table format
- Requires gws-drive skill and gws binary per OpenClaw metadata 0.22.5
Adoption & trust: 16k installs on skills.sh; 26.9k GitHub stars; 3/3 security scanners passed (skills.sh audits).
Recommended Skills
Grill Memattpocock/skills
Grill With Docsmattpocock/skills
Brainstormingobra/superpowers
Lark Tasklarksuite/cli
Lark Workflow Standup Reportlarksuite/cli
Cavemanjuliusbrussee/blueprint
Journey fit
Primary fit
File organization lands in Build / pm when you stand up a project workspace before deep implementation or client handoffs. Folder structure is project hygiene and artifact management—not integration coding—so pm is the right subphase shelf.
Common Questions / FAQ
Is Recipe Organize Drive Folder safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Recipe Organize Drive Folder
# Organize Files into Google Drive Folders > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` Create a Google Drive folder structure and move files into the right locations. ## Steps 1. Create a project folder: `gws drive files create --json '{"name": "Q2 Project", "mimeType": "application/vnd.google-apps.folder"}'` 2. Create sub-folders: `gws drive files create --json '{"name": "Documents", "mimeType": "application/vnd.google-apps.folder", "parents": ["PARENT_FOLDER_ID"]}'` 3. Move existing files into folder: `gws drive files update --params '{"fileId": "FILE_ID", "addParents": "FOLDER_ID", "removeParents": "OLD_PARENT_ID"}'` 4. Verify structure: `gws drive files list --params '{"q": "FOLDER_ID in parents"}' --format table`