Install
openclaw skills install family-todo-managementManage family todo lists with multi-user support
openclaw skills install family-todo-managementA lightweight, multi-user todo list manager for any family, powered by Node.js and JSON.
memory/todo.json), easy to backup.todo.js in your skill folder (e.g., skills/family-todo/todo.js).memory/todo.json exists (or let the script create it).todo.js to set your user IDs (see below).Open todo.js and modify the USERS constant at the top:
const USERS = {
'Mark': 'YOUR_TELEGRAM_ID_HERE', // e.g., '123456789'
'Jane': 'PARTNER_TELEGRAM_ID_HERE', // e.g., '987654321'
'Shared': 'GROUP_ID' // Family shared tasks
};
node todo.js add "Buy milk" "Mark"node todo.js add "Walk the dog" "Susie"node todo.js list (Shows all active tasks)node todo.js list Mark (Shows tasks for Mark + Family)node todo.js done <ID> or node todo.js done "Buy milk"node todo.js brief (Morning reminder)node todo.js review (Evening review)MIT