From gws
Move a Google Calendar event to a new time and automatically notify all attendees.
npx claudepluginhub fakoli/fakoli-plugins --plugin gwsThis skill uses the workspace's default tool permissions.
Move a Google Calendar event to a new time and automatically notify all attendees.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
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.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Move a Google Calendar event to a new time and automatically notify all attendees.
Use this workflow when the user needs to change the time of an existing meeting and wants attendees notified of the change.
gws calendar +agenda --format table
Ask the user which event to reschedule.
gws calendar events get \
--params '{"calendarId": "primary", "eventId": "EVENT_ID"}' \
--fields "summary,start,end,attendees"
Ask the user for the new date/time. Preview the change:
gws calendar events patch \
--params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' \
--json '{"start": {"dateTime": "NEW_START", "timeZone": "TIMEZONE"}, "end": {"dateTime": "NEW_END", "timeZone": "TIMEZONE"}}' \
--dry-run
After user confirmation, run without --dry-run. The "sendUpdates": "all" parameter ensures all attendees get notified.
--dry-run first"sendUpdates": "all" sends email notifications to all attendees — confirm this is desired