com um clique
calendar-write
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.
Menu
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.
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.
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.
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.
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 | calendar-write |
| description | 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. |
Calendar write operations via gws CLI. Covers creating, updating, and deleting events.
calendar.events (required for write operations)# Quick event creation
gws calendar +insert --summary 'Meeting Title' --start '2026-03-10T14:00:00' --end '2026-03-10T15:00:00'
The +insert helper handles common event creation with minimal parameters.
gws calendar events insert --params '{"calendarId":"primary"}' --json '{
"summary": "Team Standup",
"description": "Weekly sync",
"location": "Conference Room A",
"start": {"dateTime": "2026-03-10T09:00:00-07:00", "timeZone": "America/Los_Angeles"},
"end": {"dateTime": "2026-03-10T09:30:00-07:00", "timeZone": "America/Los_Angeles"},
"attendees": [
{"email": "team@example.com"}
],
"reminders": {
"useDefault": false,
"overrides": [{"method": "popup", "minutes": 10}]
}
}'
# Partial update (only changed fields)
gws calendar events patch --params '{"calendarId":"primary","eventId":"EVENT_ID"}' --json '{
"summary": "Updated Meeting Title",
"start": {"dateTime": "2026-03-10T15:00:00-07:00"}
}'
gws calendar events delete --params '{"calendarId":"primary","eventId":"EVENT_ID"}'
gws calendar events move --params '{"calendarId":"primary","eventId":"EVENT_ID","destination":"other-calendar-id"}'
patch over full update to minimize data sent