Install
openclaw skills install @ainsley2007/personal-aissistantManages day-to-day planning, todos (with optional timed pings), birthdays, and habits with streaks. Proactive Telegram nudges via OpenClaw cron. Python scripts + markdown data. Asks user for schedule preferences. Use when the user asks about todos, birthdays, habits, planning, or briefings.
openclaw skills install @ainsley2007/personal-aissistantTelegram-first planner for an OpenClaw NUC. Markdown data + Python scripts. No preset times — ask the user and save via config.py.
| Layer | Role |
|---|---|
data/*.md | Human-readable storage |
scripts/*.py | CRUD, agenda, cron setup |
| OpenClaw cron | --command runs scripts (no LLM for briefings) |
| Agent | Parses chat, runs scripts |
No separate reminders — "remind me at 2pm" creates a todo with --due + --time + cron ping.
{baseDir}/references/onboarding.md — one question at a time:
Then: python3 {baseDir}/scripts/setup_cron.py
python3 {baseDir}/scripts/config.py set|show|unset ...
python3 {baseDir}/scripts/todo.py add|list|edit|done|remove ...
python3 {baseDir}/scripts/birthday.py add|list|upcoming|remove ...
python3 {baseDir}/scripts/habit.py add|list|log|remove ...
python3 {baseDir}/scripts/today.py [--weekly] [--overdue]
python3 {baseDir}/scripts/setup_cron.py
todo.py add "<title>" [--due YYYY-MM-DD] [--time HH:MM] [--priority high]
Priority inferred from wording if omitted ("urgent" → high). --time requires --due. Timed todos get a cron ping at due date+time.
todo.py edit <id> [--title] [--due] [--time] [--priority] [--clear-time]
Reschedules cron when time changes.
todo.py done <id> or todo.py remove <id> — removes linked cron.
birthday.py add "<name>" --date MM-DD [--year YYYY] — day-of morning briefing only.
habit.py add "<name>" — no time. Streak in morning briefing. EOD nudge + midnight auto-miss via global cron.
habit.py log <id> yes|no
today.pytoday.py --overduetoday.py --weekly| Job | When | Script |
|---|---|---|
| Morning briefing | User-configured | today.py |
| Weekly review | User-configured | today.py --weekly |
| Habit EOD | User-configured | habits_eod.py |
| Habit midnight | Daily 00:00 | habits_midnight.py |
| Timed todo | Per todo due+time | created by todo.py add/edit |
today.py --overdue only — no nag cron.