Token导航 LogoToken导航TokenDH.com
开发执行命令clawhub未标认证来源可访问clear审计通过

todo-list-pro待办事项列表专业版

Agent Skill

todo-list-pro 用于处理数据库查询、表结构、迁移和数据维护任务,适合在 OpenClaw 中需要分析 schema、编写 SQL 或排查数据问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,120

周安装

134

GitHub Stars

公开资料未说明

下载量

1,093
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install todo-list-pro

简介

todo-list-pro 基于 SQLite 管理本地待办与工作报告,支持进度量化和归档功能。

  • 适合需要结构化数据存储的项目管理场景,如周报撰写或开发任务跟踪。
  • 安装后首次使用需确认数据目录路径,默认使用当前 skill 目录下的 data 文件夹。
  • 使用前请确保 SQLite 驱动可用,避免因环境问题导致数据库锁定或损坏。
  • 建议定期导出备份,防止意外删除造成数据损失。

SKILL.md

name
todo_list
description
Track local todo or work-report items in a SQLite database, including planned work, progress amounts, completion status, deletion, and archiving. Use when Codex needs to add tasks, delete tasks, update progress, list current work, mark work complete, summarize progress, or archive finished or cancelled items for a user.

todo_list

Use this skill to persist local work items instead of keeping them only in chat context.

Workflow

  • Run commands from {baseDir}/scripts/todo_list.py.
  • Store data in ~/.work_report_summary/todo_list.db by default.
  • Override the database path with TODO_LIST_DB_PATH only for tests or when the user explicitly wants a different file.
  • Prefer --json whenever the command output will be used in a follow-up step.
  • Keep completed items visible in active lists until the user asks to archive them.
  • Treat archived items as terminal history. Do not update their progress after archiving.
  • Use delete only when the user explicitly wants permanent removal. Prefer archive when the user means "move to history".
  • Before running delete, ask for one more explicit confirmation from the user. Permanent deletion should be confirmed, not inferred.

Natural-Language Patterns

Map common user requests to the deterministic CLI instead of keeping task state only in conversation memory.

  • Add planned work when the user says things like:

帮我记一下今天要做周报 新增一个任务:整理 demo,计划 3 步 记个 todo:修登录页 bug

  • Update progress when the user says things like:

这个任务我做了 2 步 把周报进度更新到 60% 这个任务今天先完成一半

  • Mark complete when the user says things like:

这个任务做完了 把第 3 个任务标记完成 周报已经完成

  • List or review current work when the user says things like:

看看我现在还有什么没做 列出今天的 todo 我有哪些已经完成但还没归档的任务

  • Summarize when the user says things like:

汇总一下我今天做了多少 看下整体进度 给我一个当前完成情况

  • Archive only when the user explicitly asks to archive or move finished work into history:

把这个任务归档 把已完成任务都归档

  • Delete only when the user explicitly asks to permanently remove a task:

把这个任务删掉 永久删除第 3 个任务 这个 todo 不要了,直接删除

  • If the user asks to delete, confirm once more before actually deleting.

When the user does not specify an exact task id, identify the task by title or recent context first, then run the CLI with the resolved id.

Core Commands

  • Add a task:

python {baseDir}/scripts/todo_list.py --json add --title "Prepare weekly report" --planned-amount 3 --unit sections --details "Collect wins and blockers"

  • Record progress:

python {baseDir}/scripts/todo_list.py --json progress --id 1 --increment 1 --note "Finished the metrics section"

  • Mark a task complete:

python {baseDir}/scripts/todo_list.py --json complete --id 1

  • List active tasks:

python {baseDir}/scripts/todo_list.py --json list --status active

  • Archive a task:

python {baseDir}/scripts/todo_list.py --json archive --id 1

  • Archive by exact title:

python {baseDir}/scripts/todo_list.py --json archive --title "Prepare weekly report"

  • Archive all completed tasks:

python {baseDir}/scripts/todo_list.py --json archive --all-completed

  • Delete a task permanently:

python {baseDir}/scripts/todo_list.py --json delete --id 1 --confirm

  • Delete by exact title:

python {baseDir}/scripts/todo_list.py --json delete --title "Prepare weekly report" --confirm

  • Summarize progress:

python {baseDir}/scripts/todo_list.py --json summary

References

  • Read {baseDir}/references/commands.md for full CLI shapes and example flows.
  • Read {baseDir}/references/chat_reference.md for natural-language examples and intent-to-command mapping.
  • Read {baseDir}/references/storage.md when changing the SQLite schema, default path, or environment-variable behavior.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.94%
按下载量换算917

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install todo-list-pro 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills