This skill allows the agent to create a new event in Google Calendar using the native CLI.
WHEN [A new event needs to be scheduled or created in the calendar]
THEN [Execute the gog tool with the args parameter]
CRITICAL RULE: Do NOT use the --title, --start, or --end flags. They do not exist. You MUST use --summary for the title, and --from and --to for the time bounds. The time MUST be in RFC3339 format or relative (e.g. "tomorrow 16:00").
{
"args": "calendar create primary --summary \"New Sync Meeting\" --from \"2026-04-26T10:00:00Z\" --to \"2026-04-26T11:00:00Z\" --json"
}
A JSON object confirming the created event details.
共 1 个版本