{"id":29960306,"url":"https://github.com/yosephdev/revolutaging","last_synced_at":"2025-08-03T22:40:16.776Z","repository":{"id":303340487,"uuid":"1003186186","full_name":"yosephdev/revolutaging","owner":"yosephdev","description":"A compassionate AI companion application designed specifically for seniors, featuring empathetic chat, health monitoring, caregiver alerts, and voice-first accessibility","archived":false,"fork":false,"pushed_at":"2025-07-07T05:05:37.000Z","size":193,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-07T05:36:56.631Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://revolutaging.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yosephdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-16T18:57:21.000Z","updated_at":"2025-07-07T05:05:40.000Z","dependencies_parsed_at":"2025-07-07T05:36:58.726Z","dependency_job_id":"e8cf97f7-14dc-4003-95f0-8b8f1aa9943a","html_url":"https://github.com/yosephdev/revolutaging","commit_stats":null,"previous_names":["yosephdev/revolutaging"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yosephdev/revolutaging","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yosephdev%2Frevolutaging","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yosephdev%2Frevolutaging/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yosephdev%2Frevolutaging/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yosephdev%2Frevolutaging/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yosephdev","download_url":"https://codeload.github.com/yosephdev/revolutaging/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yosephdev%2Frevolutaging/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268624187,"owners_count":24280150,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-03T02:00:12.545Z","response_time":2577,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-08-03T22:40:07.084Z","updated_at":"2025-08-03T22:40:16.762Z","avatar_url":"https://github.com/yosephdev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# RevolutAging - AI Companion for Seniors\n\nA compassionate AI companion application designed specifically for seniors, featuring empathetic chat, health monitoring, caregiver alerts, and voice-first accessibility.\n\n[Try RevolutAging Live](https://yosephdev.github.io/revolutaging/) | [View Demo](#features)\n\n![RevolutAging App Preview](public/revolutaging-preview.png)\n\n## 🌟 Features\n\n- **🧠 Empathetic AI Companion**: Natural conversation with memory and emotional intelligence\n- **📊 Health Dashboard**: Visual tracking of sleep, activity, mood, and vital signs\n- **👩‍⚕️ Smart Caregiver Alerts**: Intelligent monitoring with severity-based notifications\n- **🎙️ Voice-First Interface**: Large buttons, clear audio feedback, speech recognition\n- **💡 Senior-Friendly Design**: High contrast, large text, accessible navigation\n- **🔐 Privacy-First**: Secure data handling with Firebase Authentication and Firestore.\n- **💊 Medication Tracking**: Manage medications with photo uploads.\n\n## 🚀 Quick Start\n\n### Prerequisites\n\n- Node.js 18+\n- npm or yarn package manager\n- Firebase Account and Project\n\n### Installation\n\n1.  **Clone the repository:**\n    ```bash\n    git clone https://github.com/yosephdev/revolutaging.git\n    cd revolutaging\n    ```\n\n2.  **Install dependencies:**\n    ```bash\n    npm install\n    ```\n\n3.  **Set up Firebase:**\n    *   Create a new project on the [Firebase Console](https://console.firebase.google.com/).\n    *   In your project, create a new Web App.\n    *   Copy the `firebaseConfig` object from your project settings.\n    *   Create a new file `src/lib/firebase.ts` and add your `firebaseConfig` to it.\n\n4.  **Start the development server:**\n    ```bash\n    npm run dev\n    ```\n\nThe application will be available at `http://localhost:5173`\n\n### Build for Production\n\n```bash\nnpm run build\nnpm run preview\n```\n\n## 🏗️ Architecture\n\n### Frontend Stack\n- **React 18** - Component-based UI framework\n- **TypeScript** - Type-safe development\n- **Tailwind CSS** - Utility-first styling\n- **Vite** - Fast build tool and dev server\n- **Shadcn/UI** - Accessible component library\n- **Recharts** - Data visualization\n\n### Backend\n- **Firebase** - Authentication, Firestore Database, and Storage\n\n## 📁 Project Structure\n\n```\nsrc/\n├── components/          # Reusable UI components\n│   ├── ui/             # Shadcn/UI base components\n│   ├── AICompanion.tsx # Main chat interface\n│   ├── HealthDashboard.tsx # Health metrics visualization\n│   ├── CaregiverAlertSystem.tsx # Alert management\n│   └── ...\n├── hooks/              # Custom React hooks\n│   ├── useAuth.ts      # Firebase authentication hook\n│   ├── useVoiceCommands.ts # Speech recognition logic\n│   └── use-toast.ts    # Toast notifications\n├── lib/\n│   ├── firebase.ts     # Firebase configuration\n│   └── utils.ts\n├── services/           # API integration layer\n│   └── api.ts          # Firebase service calls\n├── pages/              # Route components\n│   ├── Index.tsx       # Main application page\n│   ├── MedicationPage.tsx # Medication tracking page\n│   └── auth/\n│       └── LoginPage.tsx # Login and registration page\n└── types/              # TypeScript type definitions\n    └── speech.d.ts     # Web Speech API types\n```\n\n## 🔮 Roadmap\n\n- [ ] TensorFlow health analysis integration\n- [ ] Advanced voice conversation\n- [ ] Video calling for family\n- [x] Medication tracking with photos\n- [ ] Emergency contact automation\n- [ ] Multi-language support\n\n## 🤝 Contributing\n\nThis project is designed for easy backend integration. Key integration points:\n\n1.  **API Layer**: The mock API in `/src/services/api.ts` has been replaced with Firebase services.\n2.  **Data Models**: TypeScript interfaces are used for all data models.\n3.  **Authentication**: Firebase Authentication is used for user login and registration.\n4.  **Real-time**: Firestore provides real-time data for alerts and other features.\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyosephdev%2Frevolutaging","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyosephdev%2Frevolutaging","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyosephdev%2Frevolutaging/lists"}