feat(calendar): add respond, search, colors, time, conflicts commands#2
Closed
salmonumbrella wants to merge 1 commit intosteipete:mainfrom
salmonumbrella:feat/calendar-enhancements
Closed
feat(calendar): add respond, search, colors, time, conflicts commands#2salmonumbrella wants to merge 1 commit intosteipete:mainfrom salmonumbrella:feat/calendar-enhancements
salmonumbrella wants to merge 1 commit intosteipete:mainfrom
salmonumbrella:feat/calendar-enhancements
Conversation
Adds comprehensive calendar enhancements inspired by nspady/google-calendar-mcp: New commands: - `calendar respond`: RSVP to events (accepted/declined/tentative) - `calendar search`: Full-text search across all calendars - `calendar colors`: List available event/calendar colors - `calendar time`: Show event times in any timezone - `calendar conflicts`: Detect scheduling overlaps via FreeBusy API Enhanced existing commands: - `calendar events`: Multi-calendar support via --all flag or comma-separated IDs - `calendar create`: New --organizer flag to set event organizer email, --color flag to set event color ID Also adds tests for the new parseEventTimes helper function. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
8 tasks
karbassi
added a commit
to karbassi/gogcli
that referenced
this pull request
Apr 8, 2026
Adds security review entries for gmail Users.Messages.Get, calendar
Events.Get, people People.Get (shared with contacts), tasks Tasks.Get,
and forms Forms.Get. None require redaction — risks are limited to
PII the caller already has access to, and none of the endpoints
return credentials in the API contract. Documents the gmail naming
collision ("raw" subcommand vs Gmail's format=raw) and the resolution.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
karbassi
added a commit
to karbassi/gogcli
that referenced
this pull request
Apr 8, 2026
…ands Adds example commands for gmail/calendar/people/contacts/tasks/forms raw subcommands to the README reference and expands the CHANGELOG entry to list the full set of raw commands now shipping under this unreleased version. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
karbassi
added a commit
to karbassi/gogcli
that referenced
this pull request
Apr 8, 2026
Adds security review entries for gmail Users.Messages.Get, calendar
Events.Get, people People.Get (shared with contacts), tasks Tasks.Get,
and forms Forms.Get. None require redaction — risks are limited to
PII the caller already has access to, and none of the endpoints
return credentials in the API contract. Documents the gmail naming
collision ("raw" subcommand vs Gmail's format=raw) and the resolution.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
karbassi
added a commit
to karbassi/gogcli
that referenced
this pull request
Apr 8, 2026
…ands Adds example commands for gmail/calendar/people/contacts/tasks/forms raw subcommands to the README reference and expands the CHANGELOG entry to list the full set of raw commands now shipping under this unreleased version. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds comprehensive calendar enhancements inspired by nspady/google-calendar-mcp:
New Commands
calendar respond: RSVP to calendar events with accepted/declined/tentative statuscalendar search: Full-text search across all calendars with optional date range filteringcalendar colors: List all available event and calendar colors (useful for--colorflag)calendar time: Show event times converted to any timezone (e.g.,--timezone America/New_York)calendar conflicts: Detect scheduling overlaps using the FreeBusy APIEnhanced Existing Commands
calendar events: Multi-calendar support via--allflag (aggregates all calendars) or comma-separated calendar IDs (e.g.,--calendar "primary,work@example.com")calendar create: New--organizerflag to set event organizer email,--colorflag to set event color IDExample Usage
Test plan
go test ./internal/cmd/...)TestParseEventTimesto test the new helper function with edge cases (nil event, nil Start/End, timed events, all-day events)🤖 Generated with Claude Code