← 返回 Skills 市场
plgonzalezrx8

Apple Reminder

作者 Pedro Gonzalez · GitHub ↗ · v1.0.1
darwin ✓ 安全检测通过
3096
总下载
3
收藏
9
当前安装
2
版本数
在 OpenClaw 中安装
/install apple-remind-me
功能描述
Natural language reminders that create actual Apple Reminders.app entries (macOS-native)
使用说明 (SKILL.md)

\r \r

Apple Remind Me (macOS Native)\r

\r Create, manage, and organize Apple Reminders using natural language. Works with Reminders.app natively - syncs to iPhone, iPad, Apple Watch.\r \r

Quick Reference\r

\r | Want to... | Command | Example |\r |-----------|---------|---------|\r | Create reminder | create-reminder.sh "msg" "when" | create-reminder.sh "Call mom" "tomorrow at 2pm" |\r | List reminders | list-reminders.sh [filter] | list-reminders.sh today |\r | Complete reminder | complete-reminder.sh ID | complete-reminder.sh XXXX-XXXX |\r | Delete reminder | delete-reminder.sh ID | delete-reminder.sh XXXX-XXXX |\r | Edit message | edit-reminder-message.sh ID "msg" | edit-reminder-message.sh XXXX "New text" |\r | Edit time | edit-reminder-time.sh ID "when" | edit-reminder-time.sh XXXX "next friday" |\r \r

Available Commands\r

\r

1. Create Reminder\r

Create a new reminder with natural language time parsing.\r \r Usage:\r

./create-reminder.sh "message" "when"\r
```\r
\r
**Examples:**\r
```bash\r
./create-reminder.sh "Pay bills" "later today"\r
./create-reminder.sh "Call dentist" "tomorrow at 3pm"\r
./create-reminder.sh "Check email" "in 2 hours"\r
./create-reminder.sh "Team meeting" "next monday at 10am"\r
```\r
\r
### 2. List Reminders\r
Display all incomplete reminders with IDs, titles, due dates, and lists.\r
\r
**Usage:**\r
```bash\r
./list-reminders.sh\r
```\r
\r
**Output Format:**\r
```\r
⏳ ID: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\r
   Title: Reminder text\r
   Due: 2026-01-27 14:00\r
   List: Reminders\r
```\r
\r
### 3. Complete Reminder\r
Mark a reminder as completed (it will move to completed list in Reminders.app).\r
\r
**Usage:**\r
```bash\r
./complete-reminder.sh "REMINDER-ID"\r
```\r
\r
**Example:**\r
```bash\r
./complete-reminder.sh "CDCBCB94-1215-494E-9F12-471AFEF25C09"\r
```\r
\r
### 4. Delete Reminder\r
Permanently delete a reminder.\r
\r
**Usage:**\r
```bash\r
./delete-reminder.sh "REMINDER-ID"\r
```\r
\r
**Example:**\r
```bash\r
./delete-reminder.sh "7C403BC5-6016-410A-810D-9A0F924682F9"\r
```\r
\r
### 5. Edit Reminder Message\r
Update the text/title of an existing reminder.\r
\r
**Usage:**\r
```bash\r
./edit-reminder-message.sh "REMINDER-ID" "new message"\r
```\r
\r
**Example:**\r
```bash\r
./edit-reminder-message.sh "CDCBCB94-1215-494E-9F12-471AFEF25C09" "Updated reminder text"\r
```\r
\r
### 6. Edit Reminder Time\r
Reschedule a reminder to a new time using natural language.\r
\r
**Usage:**\r
```bash\r
./edit-reminder-time.sh "REMINDER-ID" "new time"\r
```\r
\r
**Examples:**\r
```bash\r
./edit-reminder-time.sh "CDCBCB94-1215-494E-9F12-471AFEF25C09" "tomorrow at 2pm"\r
./edit-reminder-time.sh "CDCBCB94-1215-494E-9F12-471AFEF25C09" "in 3 hours"\r
./edit-reminder-time.sh "CDCBCB94-1215-494E-9F12-471AFEF25C09" "next friday"\r
```\r
\r
## Time Parsing Reference\r
\r
### Relative Times\r
Format: `in [number] [unit]`\r
- `in 5 minutes` → 5 minutes from now\r
- `in 2 hours` → 2 hours from now\r
- `in 3 days` → 3 days from now at current time\r
\r
### Time of Day Shortcuts\r
- `later today` / `later` / `this afternoon` → Today at 17:00\r
- `tonight` → Today at 20:00\r
- `tomorrow` → Tomorrow at 09:00\r
\r
### Tomorrow with Specific Time\r
Format: `tomorrow at [time]`\r
- `tomorrow at 3pm` → Tomorrow at 15:00\r
- `tomorrow at 10:30am` → Tomorrow at 10:30\r
- `tomorrow at 8pm` → Tomorrow at 20:00\r
\r
### Day of Week\r
Format: `next [weekday]` (lowercase required)\r
- `next monday` → Next Monday at 09:00\r
- `next friday` → Next Friday at 09:00\r
- `next sunday` → Next Sunday at 09:00\r
\r
**Note:** Day names must be lowercase (monday, tuesday, etc.)\r
\r
### ISO Format (fallback)\r
- `2026-01-27 14:00` → Exact date and time\r
\r
## Agent Implementation Guide\r
\r
### Creating Reminders\r
When user says: "Remind me to X at/in Y"\r
```bash\r
./create-reminder.sh "X" "Y"\r
```\r
\r
### Listing Reminders\r
When user asks: "What are my reminders?" or "Show my reminders"\r
```bash\r
./list-reminders.sh\r
```\r
\r
### Completing Reminders\r
When user says: "Mark [reminder] as done" or "Complete [reminder]"\r
1. List reminders to find the ID\r
2. Use the ID to complete:\r
```bash\r
./complete-reminder.sh "REMINDER-ID"\r
```\r
\r
### Editing Reminders\r
When user says: "Change [reminder] to say X" or "Reschedule [reminder] to Y"\r
1. List reminders to find the ID\r
2. Edit message or time:\r
```bash\r
./edit-reminder-message.sh "REMINDER-ID" "new message"\r
./edit-reminder-time.sh "REMINDER-ID" "new time"\r
```\r
\r
### Deleting Reminders\r
When user says: "Delete [reminder]" or "Remove [reminder]"\r
1. List reminders to find the ID\r
2. Delete:\r
```bash\r
./delete-reminder.sh "REMINDER-ID"\r
```\r
\r
## Workflow Examples\r
\r
### Complete Workflow: Find and Complete a Reminder\r
```bash\r
# 1. List all reminders\r
./list-reminders.sh | grep "Pay bills"\r
\r
# 2. Get the ID from output\r
# Output shows: ID: CDCBCB94-1215-494E-9F12-471AFEF25C09\r
\r
# 3. Mark as complete\r
./complete-reminder.sh "CDCBCB94-1215-494E-9F12-471AFEF25C09"\r
```\r
\r
### Complete Workflow: Reschedule a Reminder\r
```bash\r
# 1. List reminders and find the one to reschedule\r
./list-reminders.sh | grep "Team meeting"\r
\r
# 2. Reschedule to new time\r
./edit-reminder-time.sh "REMINDER-ID" "next friday at 2pm"\r
```\r
\r
## Technical Details\r
\r
- **Backend:** Uses `remindctl` command-line tool (macOS native)\r
- **Date Parsing:** BSD date utility (macOS compatible)\r
- **Time Format:** ISO 8601 timestamps for remindctl\r
- **List Filtering:** Shows only incomplete reminders by default\r
- **Sync:** All changes sync immediately to iCloud and all devices\r
\r
## Requirements\r
\r
- macOS (darwin)\r
- `remindctl` (installed at `/usr/local/bin/remindctl`)\r
- `date` (BSD version, macOS default)\r
- `python3` (for JSON parsing in list-reminders.sh)\r
- Apple Reminders.app\r
\r
## Limitations\r
\r
- Day of week parsing requires lowercase (e.g., "monday" not "Monday")\r
- "Next [weekday]" adds 7 days (doesn't calculate exact next occurrence)\r
- No support for recurring reminders\r
- No support for custom reminder lists (uses default "Reminders" list)\r
- No location-based reminders\r
安全使用建议
This skill is coherent and appears to do only what it claims, but before installing check: (1) remindctl is required — install it from a trusted source and verify its path (/usr/local/bin/remindctl) and behavior; (2) ensure python3 is present (SKILL.md references it though registry metadata omitted it); (3) the remindctl tool will require macOS Reminders permissions and may prompt for access to your Reminders/iCloud; (4) because these are shell scripts that execute binaries, avoid installing if you don't trust the remindctl binary or the skill source — run the scripts manually in a terminal first to inspect outputs or run them in a restricted environment. If you want higher assurance, request the upstream/homepage or a signed release for remindctl.
功能分析
Type: OpenClaw Skill Name: apple-remind-me Version: 1.0.1 The OpenClaw skill bundle for Apple Reminders is benign. All scripts (`complete-reminder.sh`, `create-reminder.sh`, `delete-reminder.sh`, `edit-reminder-message.sh`, `edit-reminder-time.sh`, `list-reminders.sh`) exclusively interact with the macOS-native `remindctl` command-line tool, `date` utility, and `python3` for JSON parsing. The `SKILL.md` documentation clearly outlines the functionality, requirements, and agent instructions, with no evidence of prompt injection attempts, data exfiltration, malicious execution, persistence mechanisms, or obfuscation. The functionality is entirely aligned with managing Apple Reminders.
能力评估
Purpose & Capability
Name/description match the actual implementation: all scripts call remindctl and date to manage Reminders.app. The only minor mismatch is that the registry metadata lists required binaries as remindctl and date, while SKILL.md also mentions python3; this appears to be an omission in the declared metadata rather than malicious behavior.
Instruction Scope
SKILL.md instructs the agent to run included scripts for create/list/complete/delete/edit operations. The scripts operate only on Reminders via remindctl, use date for time parsing and python3 for JSON formatting, and do not read unrelated files, environment variables, or send data to external endpoints.
Install Mechanism
No download/install spec; the skill is provided as scripts (no network fetch). That keeps the install surface small. There is no extraction of remote archives or external installers in the bundle.
Credentials
The skill declares no credentials or config paths — appropriate for local Reminders access. Note: SKILL.md lists python3 as a requirement but the registry metadata's 'required binaries' omitted it; ensure python3 is available. Also remindctl is required and will need to be a trusted binary (and may require macOS Reminders access permissions).
Persistence & Privilege
Skill does not request persistent always:true, does not modify other skills or system-wide configs, and contains only per-skill scripts. The scripts perform expected CRUD operations on Reminders and do not escalate privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install apple-remind-me
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /apple-remind-me 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
- Changed skill metadata source from "clawdbot" to "openclaw". - No functional or command changes; documentation and features remain the same.
v1.0.0
Initial release of Apple Remind Me (macOS-native): - Create, list, complete, edit, and delete Apple Reminders from the command line using natural language. - Works natively with Reminders.app; syncs instantly to iPhone, iPad, and Apple Watch. - Supports time parsing like “in 2 hours”, “tomorrow at 3pm”, and “next monday”. - Provides concise shell scripts for all reminder actions. - Requires macOS, remindctl, and BSD date utility. - Limitations: lowercase day names, no recurring/location-based reminders, only uses default Reminders list.
元数据
Slug apple-remind-me
版本 1.0.1
许可证
累计安装 9
当前安装数 9
历史版本数 2
常见问题

Apple Reminder 是什么?

Natural language reminders that create actual Apple Reminders.app entries (macOS-native). 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 3096 次。

如何安装 Apple Reminder?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install apple-remind-me」即可一键安装,无需额外配置。

Apple Reminder 是免费的吗?

是的,Apple Reminder 完全免费(开源免费),可自由下载、安装和使用。

Apple Reminder 支持哪些平台?

Apple Reminder 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(darwin)。

谁开发了 Apple Reminder?

由 Pedro Gonzalez(@plgonzalezrx8)开发并维护,当前版本 v1.0.1。

💬 留言讨论