Upload, create, and update Google Drive files using gws CLI. Use this skill when any Founder OS plugin needs to write files to Drive — replaces Google Drive MCP server write operations.
From founder-osnpx claudepluginhub thecloudtips/founder-os --plugin founder-osThis skill uses the workspace's default tool permissions.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Enables AI agents to execute x402 payments with per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents pay for APIs, services, or other agents.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Drive write operations via gws CLI. Covers uploading, creating, and updating files.
drive (required for write operations)# Upload a file to Drive
gws drive +upload ./report.pdf --parent FOLDER_ID
The +upload helper handles multipart upload with automatic MIME type detection.
gws drive files create --params '{}' --json '{
"name": "Q1 Report.pdf",
"parents": ["FOLDER_ID"],
"mimeType": "application/pdf"
}' --upload ./report.pdf --format json
gws drive files create --params '{}' --json '{
"name": "Meeting Notes",
"mimeType": "application/vnd.google-apps.document",
"parents": ["FOLDER_ID"]
}' --format json
gws drive files update --params '{"fileId":"FILE_ID"}' --upload ./updated-report.pdf --format json
gws drive files update --params '{"fileId":"FILE_ID"}' --json '{
"name": "Renamed Document"
}' --format json
gws drive files create --params '{}' --json '{
"name": "New Folder",
"mimeType": "application/vnd.google-apps.folder",
"parents": ["PARENT_FOLDER_ID"]
}' --format json
parents to organize files into the correct Drive folder