Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Show upcoming Google Calendar events across all calendars with time-range and calendar filters via the gws CLI.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: gws-calendar-agenda3description: "Google Calendar: Show upcoming events across all calendars."4metadata:5version: 0.22.56openclaw:7category: "productivity"8requires:9bins:10- gws11cliHelp: "gws calendar +agenda --help"12---1314# calendar +agenda1516> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.1718Show upcoming events across all calendars1920## Usage2122```bash23gws calendar +agenda24```2526## Flags2728| Flag | Required | Default | Description |29|------|----------|---------|-------------|30| `--today` | — | — | Show today's events |31| `--tomorrow` | — | — | Show tomorrow's events |32| `--week` | — | — | Show this week's events |33| `--days` | — | — | Number of days ahead to show |34| `--calendar` | — | — | Filter to specific calendar name or ID |35| `--timezone` | — | — | IANA timezone override (e.g. America/Denver). Defaults to Google account timezone. |3637## Examples3839```bash40gws calendar +agenda41gws calendar +agenda --today42gws calendar +agenda --week --format table43gws calendar +agenda --days 3 --calendar 'Work'44gws calendar +agenda --today --timezone America/New_York45```4647## Tips4849- Read-only — never modifies events.50- Queries all calendars by default; use --calendar to filter.51- Uses your Google account timezone by default; override with --timezone.5253## See Also5455- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth56- [gws-calendar](../gws-calendar/SKILL.md) — All manage calendars and events commands57