Token导航 LogoToken导航TokenDH.com
研究检索权限需确认clawhub未标认证来源可访问clear审计通过

todolisttodolist 搜索

Agent Skill

todolist 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

15,805

周安装

672

GitHub Stars

公开资料未说明

下载量

5,537
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install todolist

简介

todolist 仅限 macOS 系统,通过 AppleScript 控制提醒应用实现全功能待办管理。

  • 支持添加、列出、完成、删除提醒及创建列表,适合 Mac 用户深度集成系统服务。
  • 安装后调用 AppleScript 执行操作,无需额外依赖,但必须运行在 macOS 环境。
  • 使用前应授予终端或代理辅助功能权限,否则无法操控提醒应用;注意沙盒限制。
  • 建议定期检查系统版本兼容性,防止新 macOS 更新破坏 AppleScript 语法。

SKILL.md

name
todo
description
|

To Do List (Mac)

⚠️ System Requirements

This skill is macOS-only, requiring the native Reminders app. It will not work on non-Mac systems.

Feature Overview

This skill bridges macOS Reminders via AppleScript, supporting full reminder lifecycle management:

FeatureCommand
Add remindertodo add
List reminderstodo list
Mark completetodo complete
Unmark completetodo uncomplete
Delete remindertodo delete
Search reminderstodo search
View liststodo lists
Create listtodo create-list
Today's reminderstodo today

Usage

All operations are executed via the scripts/todo.sh script:

./scripts/todo.sh <action> [args...]

1. Add Reminder

# Basic usage
./scripts/todo.sh add "title" "notes" "date" "list" "priority" "recur"

# Example: Simple reminder
./scripts/todo.sh add "Buy milk" "" "" "" 0 ""

# Example: With due date
./scripts/todo.sh add "Submit report" "Q4 summary" "2025-02-10 14:00" "" 1 ""

# Example: Add to specific list
./scripts/todo.sh add "Buy eggs" "Buy 12" "" "Shopping" 5 ""

# Example: High priority + list + date
./scripts/todo.sh add "Important meeting" "Client call" "2025-02-05 10:00" "Work" 1 ""

Priority levels:

  • 0 = No priority
  • 1 = High (🔴)
  • 5 = Medium (🟡)
  • 9 = Low (🔵)

2. List Reminders

# List incomplete reminders from default list
./scripts/todo.sh list

# List from specific list
./scripts/todo.sh list "Shopping"

# Include completed reminders
./scripts/todo.sh list "" true

# List all from specific list (including completed)
./scripts/todo.sh list "Work" true

3. Mark Complete/Uncomplete

# Mark complete (supports fuzzy matching)
./scripts/todo.sh complete "Buy milk"

# Unmark complete
./scripts/todo.sh uncomplete "Buy milk"

4. Delete Reminder

# Delete reminder (supports fuzzy matching)
./scripts/todo.sh delete "Buy milk"

⚠️ Deletion is irreversible. Use with caution.

5. Search Reminders

# Search by keyword in title or content
./scripts/todo.sh search "meeting"

6. Manage Lists

# View all lists with stats
./scripts/todo.sh lists

# Create new list
./scripts/todo.sh create-list "Study Plan"

7. Today's Due Reminders

# View today's incomplete due reminders
./scripts/todo.sh today

Full Example Workflow

# 1. Create a work list
./scripts/todo.sh create-list "Work"

# 2. Add work tasks
./scripts/todo.sh add "Finish Q4 report" "Compile data" "2025-02-05 17:00" "Work" 1 ""
./scripts/todo.sh add "Reply to client email" "" "" "Work" 5 ""
./scripts/todo.sh add "Team weekly" "Prepare slides" "2025-02-06 10:00" "Work" 1 ""

# 3. View work list
./scripts/todo.sh list "Work"

# 4. Complete a task
./scripts/todo.sh complete "Reply to client email"

# 5. Check today's todos
./scripts/todo.sh today

User Interaction Tips

When users want to manage todos:

  1. Clarify intent - Ask what they want to do (add, view, complete, etc.)
  2. Offer shortcuts - For common actions like "remind me to...", directly call add
  3. Show results - Display operation results and current list status
  4. Support fuzzy matching - complete/delete/search all support fuzzy matching

Notes

  1. Date format - Supports natural formats like "2025-02-05", "Feb 5, 2025", "tomorrow"
  2. Fuzzy matching - complete/delete/search use contains matching, no need for full titles
  3. Permissions - macOS may request permission to control Reminders on first run, click Allow
  4. Sync - Changes sync to iCloud and appear on other Apple devices
  5. Recurring reminders - Due to AppleScript limitations, complex recurring settings should be configured manually in the app

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.93%
按下载量换算4,979

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

权限需确认

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

安装前确认

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

来源信息

继续浏览同类 Skills