family-todo-manager
⚠Review·Scanned 2/18/2026
This skill is a Node.js family todo manager that stores tasks in memory/todo.json and is operated via node todo.js CLI commands. It reads environment variables TODO_ADMIN_ID, TODO_PARTNER_ID, and TODO_GROUP_ID and performs local filesystem read/write to memory/todo.json.
from clawhub.ai·v8e270f5·6.2 KB·0 installs
Scanned from 1.0.0 at 8e270f5 · Transparency log ↗
$ vett add clawhub.ai/thurendous/family-todo-managerReview findings below
Family Todo Manager
A lightweight, multi-user todo list manager for any family, powered by Node.js and JSON.
Features
- 📝 Natural Language Add: "Add a task: Buy milk tomorrow"
- 👥 Multi-User: Supports Admin (You), Partner, and Family shared tasks.
- ⏰ Cron Integration: Designed to work with OpenClaw cron for daily briefings.
- 💾 JSON Storage: Simple file-based storage (
memory/todo.json), easy to backup. - 🆔 Timestamp IDs: Tasks have unique, time-ordered IDs.
Installation
- Place
todo.jsin your skill folder (e.g.,skills/family-todo/todo.js). - Ensure
memory/todo.jsonexists (or let the script create it). - Configuration: Edit
todo.jsto set your user IDs (see below).
Configuration
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
};
Usage
Add Task
node todo.js add "Buy milk" "Mark"node todo.js add "Walk the dog" "Susie"
List Tasks
node todo.js list(Shows all active tasks)node todo.js list Mark(Shows tasks for Mark + Family)
Complete Task
node todo.js done <ID>ornode todo.js done "Buy milk"
Daily Briefing (Cron)
node todo.js brief(Morning reminder)node todo.js review(Evening review)
License
MIT