Ell-ena is your AI-powered teammate that makes managing work effortless. From automatically creating tickets to capturing every detail in meeting transcriptions, Ell-ena keeps the full context of your projects at its fingertipsβso nothing ever falls through the cracks.
Itβs like having a smart, proactive teammate who anticipates what you need, organizes your workflow, and helps you stay on top of everythingβ¦ without you even asking.
Imagine a world where staying productive is easy and smart. Instead of juggling different apps for tasks, tickets, and meeting notes, users can simply talk to Ell-ena β and it takes care of the rest.
Ell-ena understands natural language commands and turns them into structured tasks, tickets, or notes with context-aware automation. Whether you're a developer, student, or manager, Ell-ena fits right into your workflow and grows with your needs.
Ell-ena implements a sophisticated architecture that combines Flutter for cross-platform UI with Supabase for backend services, enhanced by AI-powered processing pipelines for natural language understanding and contextual intelligence.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β FRONTEND (Flutter) β
βββββββββββββββββ¬ββββββββββββββββββ¬βββββββββββββββββββββ¬ββββββββββββββββββ€
β Auth Module β Task Manager β Meeting Manager β Chat Interface β
βββββββββ¬ββββββββ΄βββββββββ¬βββββββββ΄βββββββββββ¬ββββββββββ΄βββββββββ¬βββββββββ
β β β β
βΌ βΌ βΌ βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Supabase Service Layer β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β βββββββββββββββ βββββββββββββββ βββββββββββββββ βββββββββββββββ β
β β Auth Client β β Data Client β βStorage Clientβ β RPC Client β β
β ββββββββ¬βββββββ ββββββββ¬βββββββ ββββββββ¬βββββββ ββββββββ¬βββββββ β
β β β β β β
βββββββββββΌββββββββββββββββββΌββββββββββββββββββΌββββββββββββββββββΌββββββββββ
β β β β
βΌ βΌ βΌ βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β BACKEND (Supabase) β
βββββββββββββββββ¬ββββββββββββββββββ¬βββββββββββββββββββββ¬ββββββββββββββββββ€
β Authenticationβ PostgreSQL DB β Object Storage β Edge Functions β
βββββββββ¬ββββββββ΄βββββββββ¬βββββββββ΄βββββββββββ¬ββββββββββ΄βββββββββ¬βββββββββ
β β β β
βΌ βΌ βΌ βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β AI Processing Pipeline β
βββββββββββββββββ¬ββββββββββββββββββ¬βββββββββββββββββββββ¬ββββββββββββββββββ€
β NLU Processor β Vector Database β Embedding Generatorβ AI Summarizer β
βββββββββββββββββ΄ββββββββββββββββββ΄βββββββββββββββββββββ΄ββββββββββββββββββ
Final_Ell-ena_overview.mp4
Iβve made demo videos for Ell-ena and separated them by features. So, we can directly check out the RAG & vector search implementation or the bot transcriber. please see this through the drive link. Loved building Ell-enaβwould be super excited to see new ideas fixes and features coming up and getting it merged soon! π

- Generate to-do items and tickets using natural language commands
- Transcribe meetings and maintain full contextual notes
- Chat-based interface for intuitive and seamless user interactions
- Context-aware automation to enrich task details automatically
- RAG (Retrieval-Augmented Generation) implementation for contextual intelligence
- Multi-account login support with team management capabilities
- Real-time collaboration features across teams
- Auth Module: Handles user authentication, team management, and role-based access control
- Task Manager: Processes task creation, updates, and workflow management
- Meeting Manager: Manages meeting scheduling, transcription, and contextual analysis
- Chat Interface: Provides natural language interaction with the AI assistant
- Auth Client: Manages authentication tokens and session state
- Data Client: Handles real-time data synchronization with PostgreSQL
- Storage Client: Manages file uploads and retrieval
- RPC Client: Executes remote procedure calls to Edge Functions
- Authentication: Handles user identity, security, and session management
- PostgreSQL DB: Stores structured data with Row-Level Security policies
- Object Storage: Manages binary assets like audio recordings and documents
- Edge Functions: Executes serverless functions for business logic
- NLU Processor: Processes natural language using Gemini API
- Vector Database: Stores and retrieves semantic embeddings for context-aware searches
- Embedding Generator: Creates vector embeddings from text for semantic similarity
- AI Summarizer: Generates concise summaries of meeting transcriptions
-
User Input Processing:
- User interacts with the Flutter UI
- Input is processed by the appropriate manager module
- Requests are routed through the Supabase Service Layer
-
Backend Processing:
- Authentication verifies user identity and permissions
- PostgreSQL handles data persistence with real-time updates
- Edge Functions process complex business logic
-
AI Enhancement:
- Natural language is processed through the NLU pipeline
- Text is vectorized for semantic understanding
- Context-aware responses are generated based on historical data
- Meeting transcriptions are summarized and enriched with action items
-
Response Delivery:
- Processed data is returned to the frontend
- UI updates in real-time through Supabase subscriptions
- User receives intelligent, context-aware responses
- Flutter SDK (3.7.0 or later)
- Supabase account
- Gemini API key
- Vexa API key
-
Clone the repository
git clone https://github.com/yourusername/Ell-ena.git cd Ell-ena
-
Set up backend (Supabase)
- Follow instructions in BACKEND.md
-
Set up frontend (Flutter)
- Follow instructions in FRONTEND.md
supabase/
βββ config.toml # Supabase configuration
βββ functions/ # Edge Functions
β βββ fetch-transcript/ # Retrieves meeting transcriptions
β βββ generate-embeddings/ # Creates vector embeddings
β βββ get-embedding/ # Retrieves embeddings
β βββ search-meetings/ # Performs semantic search
β βββ start-bot/ # Initializes AI assistant
β βββ summarize-transcription/ # Generates AI summaries
βββ migrations/ # Database migrations
lib/
βββ main.dart # Application entry point
βββ screens/ # UI screens
β βββ auth/ # Authentication screens
β βββ calendar/ # Calendar view
β βββ chat/ # AI assistant interface
β βββ home/ # Dashboard screens
β βββ meetings/ # Meeting management
β βββ onboarding/ # User onboarding
β βββ profile/ # User profile
β βββ splash_screen.dart # Initial loading screen
β βββ tasks/ # Task management
β βββ tickets/ # Ticket management
β βββ workspace/ # Team workspace
βββ services/ # Business logic
β βββ ai_service.dart # AI processing service
β βββ meeting_formatter.dart # Meeting data formatter
β βββ navigation_service.dart # Navigation management
β βββ supabase_service.dart # Supabase integration
βββ widgets/ # Reusable UI components
βββ custom_widgets.dart # Shared widgets
sqls/
βββ 01_user_auth_schema.sql # User authentication schema
βββ 02_user_auth_policies.sql # Row-level security policies
βββ 03_task_schema.sql # Task management schema
βββ 04_tickets_schema.sql # Ticket management schema
βββ 05_meetings_schema.sql # Meeting management schema
βββ 06_meeting_transcription.sql # Transcription storage
βββ 07_meetings_processed_transcriptions.sql # Processed text
βββ 08_meetings_ai_summary.sql # AI-generated summaries
βββ 09_meeting_vector_search.sql # Vector search capabilities
βββ 10_generate_missing_embeddings.sql # Embedding generation
- Multi-language support: Expand NLU capabilities to support multiple languages.
- Enhanced analytics: Use AI to generate predictive analytics for tasks and meetings.
- Offline capabilities: Allow limited offline task management with later synchronization.
- Third-party integrations: Integrate with external productivity tools like Jira, Trello, and Google Calendar.
Ell-ena is an open-source project under AOSSIE for GSoC'25. We welcome contributions from the community!
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
Please read our Contributing Guidelines for more details.
- Backend Setup: Instructions for setting up the Supabase backend
- Frontend Setup: Instructions for setting up the Flutter frontend
Reference designs for the project can be found here:
Note: This project is part of GSoC'25 under AOSSIE and is actively under development.