Token导航 LogoToken导航TokenDH.com
效率权限需确认clawhub未标认证来源可访问clear审计提醒

todo-master待办事项大师

Agent Skill

todo-master 用于辅助 Python 项目开发、测试和数据处理,适合在 OpenClaw 中需要阅读 Python 代码、运行测试或整理脚本流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,034

周安装

129

GitHub Stars

公开资料未说明

下载量

1,063
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:todo-master(待办事项大师)
来源仓库:https://github.com/asir-zhang/todo-master
安装命令:
openclaw skills install todo-master
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install todo-master

简介

todo-master 基于 Python CLI 和 SQLite 提供本地待办管理,支持多维度筛选与归档机制。

  • 适合需要轻量级任务系统的开发者或研究人员,集成优先级与关键字搜索功能。
  • 安装后首次运行需用户确认数据目录,默认为当前 skill 目录下的 data 子目录。
  • 使用前请确保 Python 环境与依赖包已安装,避免因版本不兼容导致异常。
  • 建议定期审查数据库 schema,防止字段变更引发读取错误。

SKILL.md

name
todo-master
description
用于本地待办管理的技能,支持基于 Python CLI 和 SQLite 存储待办;首次必须由用户确认数据目录(默认使用当前 skill 目录下的 data,或指定一个已存在的绝对路径);支持添加待办、快速添加今日/明日待办、查看今日待办、按状态/优先级/关键字筛选查看全部待办、查看单条、更新、完成、重开、归档,并通过数据库 schema migration 保护升级后的已有数据。

Todo Skill

适用场景

  • 需要在 OpenClaw 中维护本地待办,而不是依赖在线服务。
  • 需要一个稳定的 Python 脚本入口,方便被代理或自动化直接调用。
  • 需要让 skill 迭代升级时继续复用已有数据,而不是重建存储。

运行结构

脚本入口:

python3 ./todo-master/scripts/todo.py

主要文件:

  1. ./todo-master/config.json
  2. <data_dir>/todos.sqlite3
  3. ./todo-master/requirements.txt

默认数据目录:

  1. ./todo-master/data

依赖说明

运行环境:

  1. Python 3.10 或更高版本
  2. 当前实现仅依赖 Python 标准库,不需要额外第三方包

如需按统一流程安装,可执行:

python3 -m pip install -r ./todo-master/requirements.txt

初始化

首次使用前必须先让用户确认数据目录:

python3 ./todo-master/scripts/todo.py init --default
python3 ./todo-master/scripts/todo.py init --data-dir /absolute/existing/path

规则:

  1. --default 会使用当前 skill 目录下的 data/
  2. --data-dir 必须是一个已存在的绝对路径
  3. 未初始化前,除 initshow-config 外不要执行其他命令

命令说明

查看当前配置:

python3 ./todo-master/scripts/todo.py show-config

添加普通待办:

python3 ./todo-master/scripts/todo.py add --title "准备周报" --content "汇总本周项目进展" --priority 4
python3 ./todo-master/scripts/todo.py add --title "整理材料" --content "补齐投标附件" --priority 5 --due 2026-03-20
python3 ./todo-master/scripts/todo.py add --title "联系客户" --content "确认下周演示时间" --priority 3 --due 2026-03-20T18:30

快速添加今日/明日待办:

python3 ./todo-master/scripts/todo.py add-today --title "回邮件" --content "回复合作方案" --priority 3
python3 ./todo-master/scripts/todo.py add-tomorrow --title "开复盘会" --content "准备会议提纲" --priority 4

查看今日待办(按今天到期):

python3 ./todo-master/scripts/todo.py list-today
python3 ./todo-master/scripts/todo.py list-today --json

查看全部待办:

python3 ./todo-master/scripts/todo.py list-all
python3 ./todo-master/scripts/todo.py list-all --json
python3 ./todo-master/scripts/todo.py list-all --status open --min-priority 4
python3 ./todo-master/scripts/todo.py list-all --keyword "周报" --limit 10
python3 ./todo-master/scripts/todo.py list-all --overdue

查看单条:

python3 ./todo-master/scripts/todo.py show --id <todo_id>
python3 ./todo-master/scripts/todo.py show --id <todo_id> --json

更新、完成、重开、归档:

python3 ./todo-master/scripts/todo.py update --id <todo_id> --title "新标题" --priority 5
python3 ./todo-master/scripts/todo.py update --id <todo_id> --due 2026-03-21T18:00
python3 ./todo-master/scripts/todo.py update --id <todo_id> --clear-due
python3 ./todo-master/scripts/todo.py done --id <todo_id>
python3 ./todo-master/scripts/todo.py reopen --id <todo_id>
python3 ./todo-master/scripts/todo.py archive --id <todo_id>

查看统计:

python3 ./todo-master/scripts/todo.py stats

数据与升级规则

  1. 配置和数据分离:config.json 只保存数据目录和数据库文件名
  2. SQLite 使用 PRAGMA user_version 管理 schema 版本
  3. 启动时会自动执行向前兼容的 migration
  4. 若发现旧版 JSON 数据文件,会在首次打开 SQLite 时自动导入,避免已有数据丢失
  5. 不要手工修改 SQLite 文件

给代理的执行规则

  1. 新增待办时,titlecontentpriority 都必填
  2. priority 只能是 15
  3. list-today 的语义是“今天到期的待办”
  4. archive 是保留数据的软归档,不是物理删除
  5. 所有数据读写必须走 CLI,不要绕过脚本直接写数据库

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.63%
按下载量换算1,017

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills