一键导入
drive-write
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.
菜单
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.
Scans Founder OS plugin deployment, scores coverage by business area, and produces an actionable automation scorecard. Used by /audit:scan and /audit:report commands.
Loads structured business context files into plugin execution context. Activates at the start of any plugin command to provide business knowledge, current strategy, and operational data. Plugins inline the loading logic directly (same pattern as gws CLI usage).
Read Google Calendar events and check availability using gws CLI. Use this skill when any Founder OS plugin needs to list events, check schedules, or query free/busy status — replaces Google Calendar MCP server read operations.
Create, update, and delete Google Calendar events using gws CLI. Use this skill when any Founder OS plugin needs to modify calendar events — replaces Google Calendar MCP server write operations.
Search, list, and retrieve Google Drive files using gws CLI. Use this skill when any Founder OS plugin needs to find, read, or export Drive files — replaces Google Drive MCP server read operations.
Read Gmail messages and threads using gws CLI. Use this skill when any Founder OS plugin needs to search, list, or retrieve email messages — replaces Gmail MCP server read operations.
| name | drive-write |
| description | 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. |
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