From gws
Create a Google Drive folder structure and move files into the right locations.
npx claudepluginhub fakoli/fakoli-plugins --plugin gwsThis skill uses the workspace's default tool permissions.
Create a Google Drive folder structure and move files into the right locations.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Designs, implements, and audits WCAG 2.2 AA accessible UIs for Web (ARIA/HTML5), iOS (SwiftUI traits), and Android (Compose semantics). Audits code for compliance gaps.
Create a Google Drive folder structure and move files into the right locations.
Use this workflow when the user wants to create a project folder hierarchy, reorganize existing files, or set up a standard folder structure.
gws drive files create \
--json '{"name": "FOLDER_NAME", "mimeType": "application/vnd.google-apps.folder"}'
Capture the folder ID.
gws drive files create \
--json '{"name": "SUB_FOLDER_NAME", "mimeType": "application/vnd.google-apps.folder", "parents": ["PARENT_FOLDER_ID"]}'
gws drive files update \
--params '{"fileId": "FILE_ID", "addParents": "FOLDER_ID", "removeParents": "OLD_PARENT_ID"}'
gws drive files list \
--params '{"q": "'FOLDER_ID' in parents"}' \
--fields "files(id,name,mimeType)" --format table
removeParents parameter is needed to move (not copy) filesmimeType = 'application/vnd.google-apps.folder' to filter for folders only