Conversation
…d in - New Calendar tab (sidebar + __rowboat_calendar__ tab) with month grid, week time-grid, and agenda mode; directional slide transitions between views and periods (motion/react). - Meetings view folded into the calendar as agenda mode; Meetings tab, sidebar entry, and view state removed. Old entry points (deep link ?type=meetings, open-view meetings, home "All meetings", tour, credit rewards) land on calendar agenda. - Shared calendar-event parsing/formatting extracted from meetings-view into lib/calendar-events.ts + use-calendar-events hook + shared event details popover; behavior unchanged. - Calendar sync widened from -7/+14 days to ±60 and events.list now paginates (was silently capped at 250 events). - date-grid unit tests; analytics view type + docs updated. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Adds Google Calendar write support behind five new calendar:* IPC channels (getWriteStatus, createEvent, updateEvent, deleteEvent, respond), backed by core/knowledge/calendar_write.ts. All writes target the primary calendar; successful writes persist the returned event into calendar_sync/ for an instant UI refresh, then wake the sync loop to reconcile. Renderer: drag/click quick-create in month and week grids, inline title/date/time editing plus delete and RSVP in the event details popover, meeting-note matching for event links. Write UI is gated by useCalendarWriteAccess, which re-checks after OAuth connects. Scope upgrade: calendar.events.readonly → calendar.events in providers.ts. The sync loop now accepts either grant so legacy readonly connections keep syncing until the startup scope migration prompts a reconnect. Note: the hosted rowboat-mode OAuth backend must add calendar.events to its scope list in lockstep before this ships. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…vailability, multi-calendar, tray countdown, assistant tools - Keyboard shortcuts (T/J/K/arrows, D/W/M/A views, C create, S availability) - Drag-to-reschedule + bottom-edge resize with optimistic updates - Recurring-event awareness: series badge, this-event vs whole-series delete - Availability sharing: drag free windows, copy formatted text with timezone - Multi-calendar: secondary Google calendars sync (calendars.json, per-calendar colors, visibility toggles, calendarId-routed writes, calendarlist scope) - Tray next-meeting countdown with one-click Join & take notes - Assistant calendar tools (list/find-free-slots/create/update/delete/RSVP) behind a new calendar skill Co-Authored-By: Claude Fable 5 <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
I replaced the flat Meetings list with a full visual calendar and took it from read-only to a complete scheduling surface: writes (create/edit/delete/RSVP), drag-to-reschedule, recurring-event handling, availability sharing, secondary Google calendars, a tray next-meeting countdown, and assistant calendar tools.
Visual calendar (2d66e5f)
lib/calendar-events.ts+ ause-calendar-eventshook + a shared event details popover (behavior unchanged).events.list(it was silently capped at 250 events).Calendar write (03eb64f)
calendar:*IPC channels (getWriteStatus / createEvent / updateEvent / deleteEvent / respond) backed bycore/knowledge/calendar_write.ts.calendar_sync/for an instant UI refresh, then wake the sync loop to reconcile.useCalendarWriteAccess, which re-checks after OAuth connects.Upgrades (fc94ceb)
calendars.json, per-calendar colors, visibility toggles, calendarId-routed writes).OAuth scopes are upgraded from
calendar.events.readonlytocalendar.events, pluscalendarlist.readonlyfor multi-calendar. The hosted rowboat-mode OAuth backend must add both scopes in lockstep before this ships. The sync loop accepts either grant, so legacy readonly connections keep syncing until the startup scope migration prompts a reconnect.Test plan
date-gridunit tests added; tools catalog test updatednpm run deps, lint, typecheck pass🤖 Generated with Claude Code