CLI commands
Full reference for every Indigo CLI command. CLI overview
Add a single reference file — SKILLS.md — to your AI agent’s context and it learns every Indigo CLI command, output format, error code, and multi-step workflow. Your agent can then authenticate, search signals, browse meetings, and run setup — all through natural language.
Your agent reads SKILLS.md once to understand the CLI, then runs indigo commands in a shell on your behalf. Commands are authenticated with your credentials and return structured JSON that your agent parses automatically.
Indigo offers two ways to connect AI agents to your data. You can use either or both.
| Skills | MCP | |
|---|---|---|
| How it works | Agent runs CLI commands in a shell | Agent calls query tools directly |
| Best for | Automation, setup, account ops, scripting | Data queries, analytics, exploration |
| Requires | Any agent with shell access | MCP-compatible client (Claude Desktop/Code) |
| Data access | CLI output (JSON or human-readable) | Direct database queries with filters |
| Setup | Add SKILLS.md to agent context | Run indigo setup mcp |
Get the SKILLS.md file
SKILLS.md is a single markdown file (~1,100 lines) that documents every Indigo CLI command — flags, output schemas, exit codes, and workflows.
If you have access to the indigo-nx repository, copy SKILLS.md from the project root:
cp /path/to/indigo-nx/SKILLS.md ./SKILLS.mdDownload the file directly:
curl -o SKILLS.md https://raw.githubusercontent.com/indigoai-us/indigo-nx/main/SKILLS.mdAdd SKILLS.md to your agent
Add SKILLS.md as a Project Knowledge file:
Claude will include the file in every conversation within that project.
Add SKILLS.md to your project’s .claude/ directory or reference it in CLAUDE.md:
# Option A: Copy into .claude directorymkdir -p .claudecp SKILLS.md .claude/SKILLS.md
# Option B: Reference in CLAUDE.mdecho "See SKILLS.md for Indigo CLI capabilities." >> CLAUDE.mdAdd SKILLS.md to your project docs or .cursorrules:
mkdir -p .cursor/docscp SKILLS.md .cursor/docs/SKILLS.mdAdd SKILLS.md to your Windsurf rules:
cp SKILLS.md .windsurfrules/SKILLS.mdCopy SKILLS.md into wherever your agent reads context files — a docs folder, rules file, or project settings. If your agent supports a system prompt field, you can paste the contents directly.
Verify it works
Ask your agent:
Check my Indigo auth status.Your agent should run indigo auth status --json and report whether you’re authenticated. If it doesn’t recognize the command, check that SKILLS.md is loaded — some agents need a restart to pick up new files.
Once SKILLS.md is loaded, your agent understands every command group in the Indigo CLI.
Your agent can check auth status, guide you through login, and detect expired tokens.
Try asking:
Am I logged into Indigo?Help me log in to Indigo.For command details, see indigo auth.
Your agent can search, filter, and retrieve meeting signals — decisions, actions, accomplishments, and key facts.
Try asking:
Find all action items from last week.What decisions were made about the product launch?Show me key facts from yesterday's meetings.| Signal type | Description |
|---|---|
decision | A decision made during a meeting |
action | An action item assigned to a person or team |
accomplishment | A completed milestone or achievement |
key_fact | An important piece of information shared |
For command details, see indigo signals.
Your agent can browse your calendar, search by title or participant, and view meeting details with summaries.
Try asking:
What meetings do I have today?Find meetings with Sarah from last week.Show me the summary of the product planning meeting.For command details, see indigo meetings.
Your agent can run the setup wizard, check configuration status, connect your calendar, manage API keys, and configure MCP.
Try asking:
Check my Indigo setup status.Help me connect my Google Calendar.Set up MCP for Claude Desktop.For command details, see indigo config.
Your agent chains commands together for complex tasks — the real power of Skills.
Daily briefing:
Prepare me for today's meetings.Action item review:
What action items are pending from this week?Meeting intelligence:
Search across my meetings and signals for anything about Q2 planning.First-time setup:
Help me set up Indigo from scratch.Weekly recap:
Give me a summary of what happened in my meetings this week.CLI commands
Full reference for every Indigo CLI command. CLI overview
MCP server
Give your agent direct database access as a complement to Skills. MCP overview
CLI automation
Scripting patterns, exit codes, and CI/CD integration. Automation
MCP use cases
Practical prompts for data queries via MCP. Use cases