Cody imports your calendar from Outlook Classic during every sync and surfaces today’s meetings directly in the assistant panel. It automatically detects how a meeting will be held — virtually via Teams, in person, or hybrid — and adds a one-click Join Teams button to both the panel and the Windows notification so you can enter the meeting without switching back to Outlook or searching for the link.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/miu-ll/Cody-assistant/llms.txt
Use this file to discover all available pages before exploring further.
The Meeting Interface
Meeting data is defined in src/types.ts:
Meeting Mode Detection
Cody classifies every imported event into one of three modes by examining thejoinUrl and location fields:
| Mode | Condition |
|---|---|
virtual | A Teams join URL was found and no meaningful physical location exists |
in-person | No Teams URL, and a physical location is present (or no location at all) |
hybrid | Both a Teams URL and a physical location are present |
Teams Join URL Extraction
The PowerShell COM script reads the full body of each calendar event and applies a regex to find the Teams meeting link:Meeting.joinUrl and surfaced in two places:
- Meetings view — a Join button visible next to each virtual or hybrid meeting.
- Windows toast notification — an action button that opens the URL directly in your browser without Cody’s panel needing to be open (see below).
Staggered Reminders
Cody schedules up to four notifications per meeting using thescheduleReminder IPC channel. Each reminder fires at a specific offset before the meeting start time:
| Reminder | Offset | Notification content |
|---|---|---|
| Day-before | 24 hours before startsAt | Title + date/time summary |
| Hour-before | 1 hour before startsAt | Title + start time |
| Quarter-hour | 15 minutes before startsAt | Title + “starts in 15 minutes” |
| Start | Exactly at startsAt | Title + Join Teams button (if virtual/hybrid) |
meeting-. This prefix is important during Focus Mode — focus mode (timed) still lets meeting reminders through, while dnd (Do Not Disturb) suppresses them entirely.
The Windows toast notification for meetings that have a Teams URL uses the native
ToastGeneric XML template with activationType="protocol". Clicking “Join Teams” passes the URL directly to the OS as a protocol activation — no Cody window opens, and no Electron code runs in the critical path. This makes it safe to join from the notification even when Cody’s assistant panel is hidden.electron/main/index.ts:
Conflict Detection
When two or more meetings overlap in time, Cody flags them with a warning indicator in the Meetings view. An overlap is detected whenmeeting A startsAt < meeting B endsAt and meeting B startsAt < meeting A endsAt.
Conflicting meetings are highlighted so you can reach out to organisers or reschedule before the day begins.
Meetings View
The Meetings tab in the assistant panel shows:Today's agenda
All events from the current calendar day, sorted by start time. Each card shows title, time range, attendees, location, and mode badge (virtual / in-person / hybrid).
Join button
Appears on virtual and hybrid meetings. Clicking it calls
window.desktop.openExternal(joinUrl) to open the Teams link in the default browser.Conflict warning
Overlapping meetings display an amber warning badge. Hover or tap to see which event conflicts with which.
Attendee list
Required attendees are listed beneath the meeting title. The list is parsed from Outlook’s semicolon-delimited
RequiredAttendees string.Morning Briefing Integration
If the morning briefing is enabled (configurable start hour in Settings), Cody displays today’s meetings as the first section of the briefing alongside the three most important tasks. The briefing can also be read aloud via text-to-speech.Calendar Sync Scope
Cody syncs up to 50 calendar events within the next 14 days per sync cycle. Events are read withIncludeRecurrences = $true so recurring series are fully expanded. The scan stops after examining 500 Outlook items to prevent runaway performance on large calendars.
Sync is triggered automatically at the configured interval, via Settings, or with Win+Shift+S. See Outlook Sync for full details on the sync mechanism.