Install
openclaw skills install todos简洁高效的待办事项管理技能,支持添加、完成、查看、删除待办,数据存储在本地 JSON 文件
openclaw skills install todos待办事项管理技能,支持:
待办事项存储在 ~/.openclaw/workspace/memory/todos.json
添加待办:明天下午 3 点开会
待办:本周内完成报告
完成:[事项 ID 或关键词]
今日待办
今日已完成
本周待办
本周已完成
未来待办
历史完成(过去 7 天)
删除:[事项 ID]
Python 脚本位于 scripts/todos.py
# 添加待办
python3 scripts/todos.py add "明天下午 3 点开会" --due 2026-03-26T15:00:00
# 查看今日待办
python3 scripts/todos.py list --today --pending
# 标记完成
python3 scripts/todos.py complete 1
# 查询历史
python3 scripts/todos.py list --completed --since 2026-03-18