Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Create a new Google Calendar event with attendees, location, description, and optional Google Meet link 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-insert3description: "Google Calendar: Create a new event."4metadata:5version: 0.22.56openclaw:7category: "productivity"8requires:9bins:10- gws11cliHelp: "gws calendar +insert --help"12---1314# calendar +insert1516> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.1718create a new event1920## Usage2122```bash23gws calendar +insert --summary <TEXT> --start <TIME> --end <TIME>24```2526## Flags2728| Flag | Required | Default | Description |29|------|----------|---------|-------------|30| `--calendar` | — | primary | Calendar ID (default: primary) |31| `--summary` | ✓ | — | Event summary/title |32| `--start` | ✓ | — | Start time (ISO 8601, e.g., 2024-01-01T10:00:00Z) |33| `--end` | ✓ | — | End time (ISO 8601) |34| `--location` | — | — | Event location |35| `--description` | — | — | Event description/body |36| `--attendee` | — | — | Attendee email (can be used multiple times) |37| `--meet` | — | — | Add a Google Meet video conference link |3839## Examples4041```bash42gws calendar +insert --summary 'Standup' --start '2026-06-17T09:00:00-07:00' --end '2026-06-17T09:30:00-07:00'43gws calendar +insert --summary 'Review' --start ... --end ... --attendee [email protected]44gws calendar +insert --summary 'Meet' --start ... --end ... --meet45```4647## Tips4849- Use RFC3339 format for times (e.g. 2026-06-17T09:00:00-07:00).50- The --meet flag automatically adds a Google Meet link to the event.5152> [!CAUTION]53> This is a **write** command — confirm with the user before executing.5455## See Also5657- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth58- [gws-calendar](../gws-calendar/SKILL.md) — All manage calendars and events commands59