This repository contains two main projects merged into a single unified backup:
Location: AIVoiceAssistant/
AI-Powered Voice-First Productivity Assistant - A modern web application that helps users with ADHD, bipolar disorder, and everyday stress to intelligently prioritize tasks through voice interaction.
Original Repository: AIvoiceAssistsant
Tech Stack:
- Frontend: React + TypeScript + Vite
- Backend: Node.js/Express
- UI: Tailwind CSS with glassmorphism design
Location: Lazy/
AI-Powered Executive Function Companion - A mobile-first application with FastAPI backend for voice-to-task processing and intelligent task management.
Original Repository: Lazy
Tech Stack:
- Mobile: React Native + Expo
- Backend: FastAPI (Python)
- AI: OpenAI Whisper + GPT-4o
- Database: SQLite (with Alembic migrations)
Smooth/
├── AIVoiceAssistant/ # AI Voice Assistant Web App
│ ├── client/ # React frontend
│ ├── server/ # Node.js backend
│ └── shared/ # Shared types/schemas
│
├── Lazy/ # Lazy AI Executive Function Companion
│ ├── mobile/ # React Native mobile app
│ └── backend/ # FastAPI backend
│
└── start.sh # Helper script for AIVoiceAssistant
cd AIVoiceAssistant
npm install
npm run devcd Lazy/backend
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python main.pycd Lazy/mobile
npm install
npm start- This is a unified backup repository combining both projects
- Each project maintains its original structure and dependencies
- Both projects can be developed independently within this repository
- Original git history is preserved in the nested
.gitdirectories (if needed for reference)
Created: Unified backup of AI Assistant and Lazy projects Purpose: Single repository backup for both projects