From 7e9be3c28c2c16f7584957e1f22c1496d499b155 Mon Sep 17 00:00:00 2001 From: Jay Hickey Date: Fri, 2 Jan 2026 09:04:56 -0800 Subject: [PATCH] Update gog Calendar command date format to RFC3339 I am seeing instances where Clawdis is not including timezone in the gog calendar range requests. This results in a 400 bad request from the Google API, e.g. ``` gog calendar events primary --from 2026-01-02T00:00:00 --to 2026-01-03T23:59:59 --account Google API error (400 badRequest): Bad Request ``` While this is a valid ISO 8601 format, Google Calendar API requires a stricter RFC 3339 format like the following: ``` gog calendar events primary --from 2026-01-02T00:00:00Z --to 2026-01-03T23:59:59Z --account ``` --- skills/gog/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/gog/SKILL.md b/skills/gog/SKILL.md index c6cbc7b224..4f4ae58f1e 100644 --- a/skills/gog/SKILL.md +++ b/skills/gog/SKILL.md @@ -17,7 +17,7 @@ Setup (once) Common commands - Gmail search: `gog gmail search 'newer_than:7d' --max 10` - Gmail send: `gog gmail send --to a@b.com --subject "Hi" --body "Hello"` -- Calendar: `gog calendar events --from --to ` +- Calendar: `gog calendar events --from --to ` - Drive: `gog drive search "query" --max 10` - Contacts: `gog contacts list --max 20`