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.
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.
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