-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Added new advanced project idea #1108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| # AI Mood-Based Activity Recommender | ||
|
|
||
| **Tier:** 3-Advanced | ||
|
|
||
| ## Description | ||
|
|
||
| The AI Mood-Based Activity Recommender is a web application that interprets a user's current emotional state and intelligently suggests personalized activities to support well-being, productivity, and emotional regulation. Users can express their mood through text input, emoji-based selection, or a slider scale, and the app responds with tailored recommendations β ranging from breathing exercises and journaling prompts to music playlists, games, or social activities. | ||
|
|
||
| The application is especially valuable for students managing academic stress, individuals navigating mental health challenges, or anyone seeking a healthier way to engage with their emotions on a daily basis. | ||
|
|
||
| **Resources required:** | ||
| - A free API key from [OpenAI](https://platform.openai.com/) or [Google Gemini](https://ai.google.dev/) to power the mood analysis and activity recommendation engine. | ||
| - (Optional) A [Firebase](https://firebase.google.com/) or [Supabase](https://supabase.com/) account for storing user mood history if persistence is needed. | ||
|
|
||
| --- | ||
|
|
||
| ## User Stories | ||
|
|
||
| - [ ] User can express their current mood by typing a free-form description (e.g., "I feel restless and can't focus") or by selecting from a visual mood board with emoji/icons. | ||
| - [ ] User can receive a curated list of 3β5 AI-generated activity recommendations tailored to their expressed mood, each with a brief explanation of why it might help. | ||
| - [ ] User can view detailed information about a recommended activity, including estimated duration, required materials, and a step-by-step guide to get started. | ||
| - [ ] User can mark an activity as "completed" or "not helpful" to provide feedback that refines future suggestions. | ||
| - [ ] User can view a mood history log that shows their past mood entries alongside the activities they tried, displayed in a timeline or calendar view. | ||
| - [ ] User can request a fresh set of alternative recommendations for the same mood without re-entering their input. | ||
| - [ ] User can filter recommendations by category (e.g., physical, creative, social, mindfulness) to match their current energy level or preference. | ||
| - [ ] User can save favourite activities to a personal collection for quick access later. | ||
|
|
||
| --- | ||
|
|
||
| ## Bonus Features | ||
|
|
||
| - [ ] User can receive mood insights based on weekly or monthly patterns, such as "You tend to feel anxious on Sunday evenings β here are proactive activities to try." | ||
| - [ ] User can interact with an AI-powered chatbot that asks gentle follow-up questions to better understand their mood before generating recommendations. | ||
| - [ ] User can optionally enable webcam-based facial expression analysis (using face-api.js or MediaPipe) to auto-detect mood without typing. | ||
| - [ ] User can set daily mood check-in reminders via browser notifications or email. | ||
| - [ ] User can view a progress dashboard showing mood trends over time, streaks of completed activities, and most-used categories β visualised with charts. | ||
| - [ ] User can share a specific activity recommendation as a card on social media or via a shareable link. | ||
| - [ ] User can switch between a "Quick Mode" (instant single recommendation) and a "Deep Dive Mode" (multi-step guided session with reflection prompts). | ||
|
|
||
| --- | ||
|
|
||
| ## Useful Links and Resources | ||
|
|
||
| ### AI & NLP | ||
| - [OpenAI API Docs](https://platform.openai.com/docs) β For GPT-powered mood analysis and recommendation generation | ||
| - [Google Gemini API](https://ai.google.dev/docs) β Alternative LLM for mood understanding | ||
| - [Hugging Face β Emotion Detection Models](https://huggingface.co/models?pipeline_tag=text-classification&search=emotion) β Pre-trained sentiment/emotion classifiers | ||
|
|
||
| ### Facial Expression (Bonus) | ||
| - [face-api.js](https://github.com/justadudewhohacks/face-api.js) β In-browser face and emotion detection | ||
| - [MediaPipe Face Landmarker](https://developers.google.com/mediapipe/solutions/vision/face_landmarker) β Google's real-time facial landmark solution | ||
|
|
||
| ### Frontend & UI | ||
| - [React Documentation](https://react.dev/) β Component-based UI framework | ||
| - [Framer Motion](https://www.framer.com/motion/) β Animations for mood transitions and activity cards | ||
| - [Chart.js](https://www.chartjs.org/) β For mood trend visualisations in the dashboard | ||
|
|
||
| ### Backend & Storage | ||
| - [Firebase Firestore](https://firebase.google.com/docs/firestore) β Real-time NoSQL database for mood history | ||
| - [Supabase](https://supabase.com/docs) β Open-source Firebase alternative with PostgreSQL | ||
|
|
||
| ### Mental Health & Activity Research | ||
| - [NHS β 5 Steps to Mental Wellbeing](https://www.nhs.uk/mental-health/self-help/guides-tools-and-activities/five-steps-to-mental-wellbeing/) β Evidence-based activity categories | ||
| - [Greater Good Science Center](https://greatergood.berkeley.edu/topic/emotions) β Research-backed emotional regulation strategies | ||
|
|
||
| --- | ||
|
|
||
| ## Example Projects | ||
|
|
||
| - **Wysa** (https://www.wysa.com) β An AI-powered mental health chatbot that recommends evidence-based exercises (CBT, mindfulness) based on user-reported emotions. Great reference for conversational mood input and structured activity flows. | ||
| - **Reflectly** (https://reflectly.app) β A journaling app that uses AI to personalise daily reflections and mood tracking. Strong reference for mood history UI and calendar-based visualisation. | ||
| - **Moodfit** (https://www.getmoodfit.com) β A mood tracking and mental fitness app with activity suggestions linked to emotional states. Good reference for the feedback loop between mood input and activity outcomes. | ||
| - **Daylio** (https://daylio.net) β A micro-diary app that tracks activities and moods together. Useful reference for minimalist mood logging UX and activity correlation analytics. | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -120,6 +120,7 @@ required to complete them. | |||||
|
|
||||||
| | Name | Short Description | Tier | | ||||||
| | ----------------------------------------------------------------------------- | ------------------------------------------------------------------- | ---------- | | ||||||
| | [AI Mood Activity Recommender] | Suggest activities based on user mood using AI | 3-Advanced | | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add the missing README link target for the new project row. Line 123 currently renders as bracketed text, not a clickable link. Please point it to the new project file like other entries in this table. Suggested fix-| [AI Mood Activity Recommender] | Suggest activities based on user mood using AI | 3-Advanced |
+| [AI Mood Activity Recommender](./Projects/3-Advanced/AI_Mood_Activity_Recommender.md) | Suggest activities based on user mood using AI | 3-Advanced |π Committable suggestion
Suggested change
π€ Prompt for AI Agents |
||||||
| | [Battleship Bot](./Projects/3-Advanced/Battleship-Bot.md) | Create a Discord bot that plays Battleship | 3-Advanced | | ||||||
| | [Battleship Game Engine](./Projects/3-Advanced/Battleship-Game-Engine.md) | Create a callable engine to play the Battleship game | 3-Advanced | | ||||||
| | [Boole Bots Game](./Projects/3-Advanced/Boole-Bot-Game.md) | Battling Bots driven by Boolean algebra | 3-Advanced | | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
π§© Analysis chain
π Script executed:
Repository: florinpop17/app-ideas
Length of output: 941
Update two broken resource links.
Two external URLs in the resources section are not accessible:
https://platform.openai.com/docsreturns 403 Forbidden β consider linking directly to the API documentation or getting started guide insteadhttps://greatergood.berkeley.edu/topic/emotionsreturns 404 β the page no longer exists; consider replacing with their science of emotions section or another mental health research resourceThe remaining 10 links are all accessible and functional.
π€ Prompt for AI Agents