Get up and running with Email Agent in 5 minutes.
- Python 3.13+
- Ollama installed with
llama3.2:1bmodel - Gmail account with Gmail API access
cd email-agent
uv syncpython -m email_agent setupThis will:
- Guide you through Gmail OAuth setup
- Create initial
config.yaml - Verify Ollama connection
Open config.yaml and customize:
agent:
categories:
- "Work"
- "Personal"
- "Finance"
important_senders:
- "[email protected]"
- "@family.com"python -m email_agent| Mode | Command | Description |
|---|---|---|
| Continuous | python -m email_agent |
Polls every 60 seconds |
| Once | python -m email_agent --once |
Process emails, then exit |
| Dry Run | python -m email_agent --dry-run |
Simulate without changes |
| Verbose | python -m email_agent --verbose |
DEBUG logging |
- Full Installation Guide - Detailed setup
- Configuration Reference - All config options
- Usage Guide - All CLI commands