Install
openclaw skills install suidge-todo-trackerManage follow-up items and remind users during heartbeat checks.
openclaw skills install suidge-todo-tracker用户提到提醒、跟进、待办事项。心跳周期自动检查 pending 事项。
memory/todo.jsonstatus=pending 且 follow_up_time 已到 → 提醒用户(持续提醒直到完成)completed 设 completed_at,cancelled 设 cancelled_at(ISO 8601)scripts/todo-cleaner.py 删除# 添加事项 → 写入 memory/todo.json,status=pending
# 完成事项 → status=completed + completed_at
# 取消事项 → status=cancelled + cancelled_at
# 清理 → python3 scripts/todo-cleaner.py
memory/todo.json — 所有事项。Schema 见 data-structure.md。
| Topic | File |
|---|---|
| 安装配置 | setup.md |
| 数据结构 | data-structure.md |
| 使用示例 | examples.md |
| 清理脚本 | scripts/todo-cleaner.py |