This project automates email processing, meeting scheduling, and task management using n8n workflows.
- n8n Workflows: Handle email processing, meeting creation, and task management
- Backend API: Provides minimal endpoints for AI analysis
- Frontend: User interface for monitoring and configuration
email-processing.json
: Analyzes incoming emails and routes them appropriatelycalendar-events.json
: Creates and manages calendar eventstask-management.json
: Creates and updates tasks in Trello
- Email categorization endpoint
- AI analysis utilities
The original API-based implementation is preserved in the api-legacy
branch.
-
Install n8n: npm install n8n -g
-
Start n8n: n8n start
-
Import workflows from the
workflows/n8n/
directory -
Configure credentials for:
- Gmail
- Google Calendar
- Trello
- OpenAI
- Activate the workflows
-
Install dependencies: pip install -r requirements.txt
-
Configure environment variables: cp .env.example .env
Edit .env with your API keys
- Start the API:
uvicorn backend.main:app --reload