The Skill exposes operations that can permanently clear calendars or delete calendars and events
Source references: 3The catalog explicitly offers methods to remove every event from a primary calendar, delete a secondary calendar, and delete individual events. The visible rules require schema inspection but no per-action confirmation, backup, or target restriction.
A mistaken account, calendar ID, or event ID could remove the user’s schedule and affect invitees. Clearing a primary calendar deletes all of its events in one operation.
This is a catalog of callable methods, not an instruction to delete automatically. It nevertheless exposes operations that clear every event from a primary calendar, delete a secondary calendar, or delete one event. Calling them without an explicitly identified target and confirmation could cause irreversible data loss. The visible file only requires parameter inspection, with no backup or per-action confirmation rule. A user can restrict use to read-only methods and require separate confirmation showing the account, calendar, and event before any `clear` or `delete` call.
- `clear` — Clears a primary calendar. This operation deletes all events associated with the primary calendar of an account. - `delete` — Deletes a secondary calendar. Use calendars.clear for clearing all events on primary calendars. - `get` — Returns metadata for a calendar.Show 2 other places
- `delete` — Deletes an event. - `get` — Returns an event based on its Google Calendar ID. To retrieve an event using its iCalendar ID, call the events.list method using the iCalUID parameter.Before calling any API method, inspect it:```bash# Browse resources and methodsgws calendar --help# Inspect a method's required params, types, and defaultsgws schema calendar.<resource>.<method>```