MMM-Chores is a module for MagicMirror² that allows you to manage your household chores.
It provides an admin interface where you can add, edit, and delete tasks. You can also set due dates and assign tasks to different persons. The module displays the tasks on your MagicMirror, allowing you to keep track of your household chores at a glance.



---- AI option is availible and uses only data from data.json if openai api key is provided ↑

cd ~/MagicMirror/modules
git clone https://github.com/PierreGode/MMM-Chores
cd ~/MagicMirror/modules/MMM-Chores
npm install
{
module: “MMM-Chores”,
position: “bottom_right”,
header: “Chores”,
config: {
updateInterval: 60 * 1000,
adminPort: 5003,
openaiApiKey: “your-openApi-key-here”,
useAI: true, // hide AI features when false
showDays: 3, // show tasks from today and the next 2 days (total 3 days)
showPast: true, // also show unfinished tasks from past days
textMirrorSize: “small”, // small, medium or large
dateFormatting: “MM-DD” // Date format pattern to display task dates.
// Use tokens like ‘yyyy’, ‘mm’, ‘dd’.
// Set to “” to hide the date completely.
}
},