# Gws Calendar Agenda > Google Calendar: Show upcoming events across all calendars. Source: https://skillsagentes.com/skills/googleworkspace/cli/gws-calendar-agenda Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 15 tok installed, 396 tok once triggered, 396 tok with every bundled file Bundle: 1 file, 2 KB Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill gws-calendar-agenda --agent claude-code ``` ## What it does - Muestra próximos eventos de todos los calendarios de Google Calendar mediante `gws calendar +agenda` - Permite filtrar por hoy, mañana, semana, número de días o calendario específico - Permite ajustar la zona horaria con --timezone (IANA) ## Use it when - Cuando el usuario quiere ver su agenda o próximos eventos de Google Calendar - Cuando necesita filtrar eventos por rango de días o por un calendario concreto ## What triggers it - "Muéstrame mi agenda de hoy en Google Calendar" - "¿Qué eventos tengo esta semana?" - "Muestra los eventos de los próximos 3 días del calendario 'Work'" ## Before you install - Requiere el binario `gws` y haber leído gws-shared/SKILL.md para auth y flags globales. ## Files - SKILL.md — 2 KB ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # calendar +agenda > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. Show upcoming events across all calendars ## Usage ```bash gws calendar +agenda ``` ## Flags | Flag | Required | Default | Description | |------|----------|---------|-------------| | `--today` | — | — | Show today's events | | `--tomorrow` | — | — | Show tomorrow's events | | `--week` | — | — | Show this week's events | | `--days` | — | — | Number of days ahead to show | | `--calendar` | — | — | Filter to specific calendar name or ID | | `--timezone` | — | — | IANA timezone override (e.g. America/Denver). Defaults to Google account timezone. | ## Examples ```bash gws calendar +agenda gws calendar +agenda --today gws calendar +agenda --week --format table gws calendar +agenda --days 3 --calendar 'Work' gws calendar +agenda --today --timezone America/New_York ``` ## Tips - Read-only — never modifies events. - Queries all calendars by default; use --calendar to filter. - Uses your Google account timezone by default; override with --timezone. ## See Also - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth - [gws-calendar](../gws-calendar/SKILL.md) — All manage calendars and events commands --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/gws-calendar-agenda