From 17a1d302b991801d417989463e3620c0743f5553 Mon Sep 17 00:00:00 2001 From: Matthew Russell Date: Sun, 11 Jan 2026 02:11:41 -0800 Subject: [PATCH 1/2] Add calendar event color docs to gog skill --- skills/gog/SKILL.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/skills/gog/SKILL.md b/skills/gog/SKILL.md index b690f89dd..fd1068012 100644 --- a/skills/gog/SKILL.md +++ b/skills/gog/SKILL.md @@ -17,7 +17,11 @@ 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 list events: `gog calendar events --from --to ` +- Calendar create event: `gog calendar create --summary "Title" --from --to ` +- Calendar create with color: `gog calendar create --summary "Title" --from --to --event-color 7` +- Calendar update event: `gog calendar update --summary "New Title" --event-color 4` +- Calendar show colors: `gog calendar colors` - Drive search: `gog drive search "query" --max 10` - Contacts: `gog contacts list --max 20` - Sheets get: `gog sheets get "Tab!A1:D10" --json` @@ -28,6 +32,22 @@ Common commands - Docs export: `gog docs export --format txt --out /tmp/doc.txt` - Docs cat: `gog docs cat ` +Calendar Colors +- Use `gog calendar colors` to see all available event colors (IDs 1-11) +- Add colors to events with `--event-color ` flag +- Event color IDs: + - 1: Lavender (#a4bdfc) + - 2: Sage (#7ae7bf) + - 3: Grape (#dbadff) + - 4: Flamingo (#ff887c) + - 5: Banana (#fbd75b) + - 6: Tangerine (#ffb878) + - 7: Peacock (#46d6db) + - 8: Graphite (#e1e1e1) + - 9: Blueberry (#5484ed) + - 10: Basil (#51b749) + - 11: Tomato (#dc2127) + Notes - Set `GOG_ACCOUNT=you@gmail.com` to avoid repeating `--account`. - For scripting, prefer `--json` plus `--no-input`. From eb1de642dbebef0c8e7107876ee175302f1952b9 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 11 Jan 2026 10:39:40 +0000 Subject: [PATCH 2/2] docs: verify gog calendar colors (#715) (thanks @mjrussell) --- CHANGELOG.md | 1 + skills/gog/SKILL.md | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec9e59601..c59840b66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ### Changes - macOS: prompt to install the global `clawdbot` CLI when missing in local mode; install via `clawd.bot/install-cli.sh` (no onboarding) and use external launchd/CLI instead of the embedded gateway runtime. +- Docs: add gog calendar event color IDs from `gog calendar colors`. (#715) — thanks @mjrussell. ## 2026.1.10 diff --git a/skills/gog/SKILL.md b/skills/gog/SKILL.md index fd1068012..e901b7a30 100644 --- a/skills/gog/SKILL.md +++ b/skills/gog/SKILL.md @@ -35,18 +35,18 @@ Common commands Calendar Colors - Use `gog calendar colors` to see all available event colors (IDs 1-11) - Add colors to events with `--event-color ` flag -- Event color IDs: - - 1: Lavender (#a4bdfc) - - 2: Sage (#7ae7bf) - - 3: Grape (#dbadff) - - 4: Flamingo (#ff887c) - - 5: Banana (#fbd75b) - - 6: Tangerine (#ffb878) - - 7: Peacock (#46d6db) - - 8: Graphite (#e1e1e1) - - 9: Blueberry (#5484ed) - - 10: Basil (#51b749) - - 11: Tomato (#dc2127) +- Event color IDs (from `gog calendar colors` output): + - 1: #a4bdfc + - 2: #7ae7bf + - 3: #dbadff + - 4: #ff887c + - 5: #fbd75b + - 6: #ffb878 + - 7: #46d6db + - 8: #e1e1e1 + - 9: #5484ed + - 10: #51b749 + - 11: #dc2127 Notes - Set `GOG_ACCOUNT=you@gmail.com` to avoid repeating `--account`.