技能详情(站内镜像,无评论)
作者:linyishan @AlphaFactor
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.6
统计:⭐ 0 · 308 · 3 current installs · 3 all-time installs
⭐ 0
安装量(当前) 3
🛡 VirusTotal :良性 · OpenClaw :良性
Package:alphafactor/todolist
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's code and instructions match its stated purpose (managing macOS Reminders via AppleScript); nothing in the provided files indicates unrelated data access or exfiltration, but the script content was truncated in the listing so I cannot fully verify the very end of the file.
目的
The name/description say macOS Reminders via AppleScript and the included scripts/todo.sh implements that using osascript and Reminders APIs. No unrelated binaries, environment variables, or external services are requested.
说明范围
SKILL.md instructs the agent to run the bundled scripts/todo.sh for actions (add, list, complete, delete, search, lists, create-list, today). The AppleScript blocks operate on Reminders objects and do not reference files, arbitrary shell execution, or external endpoints in the visible portion. Note: the provided file listing is truncated near the end, so the last lines could not be inspected.
安装机制
There is no install spec; this is instruction-only with a bundled script. Nothing is downloaded or extracted from external URLs in the metadata or SKILL.md.
证书
No environment variables, credentials, or config paths are requested. The script will require macOS's Reminders automation permission (user-granted), which is expected for this purpose. No unrelated secrets are requested.
持久
The skill is not always-enabled and doesn't declare elevated platform privileges. It modifies only Reminders data (create/complete/delete) which is consistent with its purpose and will sync via iCloud per macOS behavior. Autonomous invocation is allowed by default but is not exceptional here.
综合结论
This skill appears coherent and implements exactly what it claims: controlling macOS Reminders via AppleScript. Before installing or running it: (1) inspect the full scripts/todo.sh file locally (the provided listing was truncated) to confirm there are no unexpected commands (e.g., do shell script, curl, or other network calls); (2) be prepared for macOS to prompt for permission to control Reminders — grant only if you trust the skill; (3) tes…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Todo List for MacOS」。简介:**macOS Only** - Manage macOS Reminders app via AppleScript. Full-featured remi…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/alphafactor/todolist/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: todo
description: |
**macOS Only** - Manage macOS Reminders app via AppleScript.
Full-featured reminder management: add, list, complete, delete, search, create lists, and more.
**Note: This skill is macOS-only**, requiring the native Reminders app.
Use cases:
- Create reminders with due dates and priorities
- List reminders from specific lists or incomplete ones
- Mark reminders as complete/uncomplete
- Delete reminders
- Search reminders by title or content
- Create new reminder lists
- View today's due reminders
---
# 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:
| Feature | Command |
|---------|---------|
| Add reminder | `todo add` |
| List reminders | `todo list` |
| Mark complete | `todo complete` |
| Unmark complete | `todo uncomplete` |
| Delete reminder | `todo delete` |
| Search reminders | `todo search` |
| View lists | `todo lists` |
| Create list | `todo create-list` |
| Today's reminders | `todo today` |
## Usage
All operations are executed via the `scripts/todo.sh` script:
```bash
./scripts/todo.sh <action> [args...]
```
### 1. Add Reminder
```bash
# 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
```bash
# 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
```bash
# Mark complete (supports fuzzy matching)
./scripts/todo.sh complete "Buy milk"
# Unmark complete
./scripts/todo.sh uncomplete "Buy milk"
```
### 4. Delete Reminder
```bash
# Delete reminder (supports fuzzy matching)
./scripts/todo.sh delete "Buy milk"
```
⚠️ Deletion is irreversible. Use with caution.
### 5. Search Reminders
```bash
# Search by keyword in title or content
./scripts/todo.sh search "meeting"
```
### 6. Manage Lists
```bash
# View all lists with stats
./scripts/todo.sh lists
# Create new list
./scripts/todo.sh create-list "Study Plan"
```
### 7. Today's Due Reminders
```bash
# View today's incomplete due reminders
./scripts/todo.sh today
```
## Full Example Workflow
```bash
# 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