$npx -y skills add googleworkspace/cli --skill gws-calendar-agendaGoogle Calendar: Show upcoming events across all calendars.
| 1 | # calendar +agenda |
| 2 | |
| 3 | > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. |
| 4 | |
| 5 | Show upcoming events across all calendars |
| 6 | |
| 7 | ## Usage |
| 8 | |
| 9 | ```bash |
| 10 | gws calendar +agenda |
| 11 | ``` |
| 12 | |
| 13 | ## Flags |
| 14 | |
| 15 | | Flag | Required | Default | Description | |
| 16 | |------|----------|---------|-------------| |
| 17 | | `--today` | — | — | Show today's events | |
| 18 | | `--tomorrow` | — | — | Show tomorrow's events | |
| 19 | | `--week` | — | — | Show this week's events | |
| 20 | | `--days` | — | — | Number of days ahead to show | |
| 21 | | `--calendar` | — | — | Filter to specific calendar name or ID | |
| 22 | | `--timezone` | — | — | IANA timezone override (e.g. America/Denver). Defaults to Google account timezone. | |
| 23 | |
| 24 | ## Examples |
| 25 | |
| 26 | ```bash |
| 27 | gws calendar +agenda |
| 28 | gws calendar +agenda --today |
| 29 | gws calendar +agenda --week --format table |
| 30 | gws calendar +agenda --days 3 --calendar 'Work' |
| 31 | gws calendar +agenda --today --timezone America/New_York |
| 32 | ``` |
| 33 | |
| 34 | ## Tips |
| 35 | |
| 36 | - Read-only — never modifies events. |
| 37 | - Queries all calendars by default; use --calendar to filter. |
| 38 | - Uses your Google account timezone by default; override with --timezone. |
| 39 | |
| 40 | ## See Also |
| 41 | |
| 42 | - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth |
| 43 | - [gws-calendar](../gws-calendar/SKILL.md) — All manage calendars and events commands |