gws-calendar
🤖 AI Summary
This skill provides a CLI for interacting with the Google Calendar v3 API, enabling CRUD operations on calendar access control lists (ACLs) and offering helper commands to insert events or view an agenda.
How to Install
Claude Code:
git clone --depth 1 https://github.com/googleworkspace/cli.git && cp cli/skills/gws-calendar ~/.claude/skills/gws-calendar -r# calendar (v3)
> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
```bash
gws calendar [flags]
```
## Helper Commands
| Command | Description |
|---------|-------------|
| [`+insert`](../gws-calendar-insert/SKILL.md) | create a new event |
| [`+agenda`](../gws-calendar-agenda/SKILL.md) | Show upcoming events across all calendars |
## API Resources
### acl
- `delete` — Deletes an access control rule.
- `get` — Returns an access control rule.
- `insert` — Creates an access control rule.
- `list` — Returns the rules in the access control list for the calendar.
- `patch` — Updates an access control rule. This method supports patch semantics.
- `update` — Updates an access control rule.
- `watch` — Watch for changes to ACL resources.
### calendarList
- `delete` — Removes a calendar from the user's calendar list.
- `get` — Returns a calendar from the user's calendar list.
- `insert` — Inserts an existing calendar into the user's calendar list.
- `list` — Returns the calendars on the user's calendar list.
- `patch` — Updates an existing calendar on the user's calendar list. This method supports patch semantics.
- `update` — Updates an existing calendar on the user's calendar list.
- `watch` — Watch for changes to CalendarList resources.
### calendars
- `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.
- `insert` — Creates a secondary calendar.
The authenticated user for the request is made the data owner of the new calendar.
Note: We recommend to authenticate as the intended data owner of the calendar. You can use domain-wide delegation of authority to allow applications to act on behalf of a specific user. Don't use a service account for authentication. If you use a service account for authentication, the service account is the data owner, which can lead to unexpected behavior.
- `patch` — Updates metadata for a calendar. This method supports patch semantics.
- `update` — Updates metadata for a calendar.
### channels
- `stop` — Stop watching resources through this channel
### colors
- `get` — Returns the color definitions for calendars and events.
### events
- `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.
- `import` — Imports an event. This operation is used to add a private copy of an existing event to a calendar. Only events with an eventType of default may be imported.
Deprecated behavior: If a non-default event is imported, its type will be changed to default and any event-type-specific properties it may
Details
| Category | Design → ui |
| Source | googleworkspace/cli |
| SKILL.md | View on GitHub → |
| Repo Stars | ★ 27.3K |
| Est. per Skill | 546 (shared across 50 skills from this repo) |
| Difficulty | Intermediate |
| Risk Level | N/A |
Related Skills
chat-widget
Live Support Chat Widget Build a real-time support chat system with a floating widget for users and
ux-copy
UX Copy Overview Part of StyleSeed, this skill generates concise product copy for common UI states.
transformers-js
Transformers.js - Machine Learning for JavaScript Transformers.js enables running state-of-the-art m
skyvern-browser-automation
Skyvern Browser Automation -- CLI Judgment Procedure Skyvern uses AI to navigate and interact with w
Works Well With
Skills from the same repository — often designed to work together
gws-admin-reports
admin-reports (reportsv1) > PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and se
gws-calendar-agenda
calendar +agenda > PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security ru
gws-calendar-insert
calendar +insert > PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security ru