indigo meetings
The meetings command group lets you browse your calendar and access meeting details from the terminal.
Commands
indigo meetings list
Lists upcoming and past meetings from your connected calendar.
indigo meetings list [options]Options:
| Flag | Description |
|---|---|
--limit <n> | Number of results to return |
--offset <n> | Number of results to skip (for pagination) |
--json | Output as JSON |
Examples:
List meetings:
indigo meetings listGet JSON output for scripting:
indigo meetings list --jsonindigo meetings view <id>
Displays full details for a specific meeting, including title, time, attendees, and any associated signals.
indigo meetings view <id> [options]Options:
| Flag | Description |
|---|---|
--json | Output as JSON |
Example:
indigo meetings view mtg_xyz789JSON output:
{ "id": "mtg_xyz789", "title": "Weekly Product Sync", "start": "2025-01-15T10:00:00Z", "end": "2025-01-15T10:30:00Z", "attendees": [ "alice@example.com", "bob@example.com" ], "signals_count": 4}indigo meetings search <query>
Searches meetings by title, description, or attendee name/email.
indigo meetings search <query> [options]Options:
| Flag | Description |
|---|---|
--limit <n> | Number of results to return |
--json | Output as JSON |
Examples:
Search by meeting title:
indigo meetings search "product sync"Search by attendee:
indigo meetings search "alice@example.com"Search and output as JSON:
indigo meetings search "quarterly review" --jsonPractical usage
Check your schedule before a meeting block:
indigo meetings list --limit 5Find all meetings with a specific person:
indigo meetings search "bob@example.com" --json | jq '.[].title'Look up a meeting for context, then check its signals:
indigo meetings view mtg_xyz789indigo signals search "product sync" --type decision