Skill Agent Hub
返回目录

SKILL 详情

协作

Apple提醒事项

管理 Apple 提醒事项(添加、编辑、完成)

Collaboration 办公协同
最新版本1.0.0
发布时间2026年7月28日
支持运行时Generic Skill Package
来源官方种子归档

能力说明

这个 Skill 能做什么

管理 Apple 提醒事项(添加、编辑、完成)

安装方式

如何安装

人工安装

  1. 下载当前版本的 SKILL.md 文件。
  2. 在目标运行时的 Skills 目录中创建名为 apple-reminders 的文件夹。
  3. 将文件放入该文件夹,随后按运行时自身的加载方式启用它。
mkdir -p skills/apple-reminders
# 下载下方的 SKILL.md,并保存为:
# skills/apple-reminders/SKILL.md

清单路径:skills/apple-reminders/SKILL.md。具体安装目录可能因运行时而异,请以目标运行时文档为准。

AI 安装将这段话发送给 AI,由它根据目标运行时完成安装并检查结果。
请帮我将「Apple提醒事项」安装到目标 AI 运行时中。

Skill 平台详情页:https://www.skillagenthub.com/skills/apple-reminders
平台镜像下载地址:https://www.skillagenthub.com/api/skills/apple-reminders/download
目标目录:skills/apple-reminders/SKILL.md

请先确认当前运行时的 Skill 目录与安装规范;再下载或保存该版本的 SKILL.md 到正确位置。完成后请检查文件路径、版本和可加载性,并简要报告安装结果。不要执行 Skill 包内任何脚本。

AI 使用提示

分两段提供给 AI

先提供 Skill 指令,再提供具体任务,让模型先了解能力边界,再执行实际工作。

第一段:Skill 指令先发送,用于建立能力、规则与限制。
---
name: apple-reminders
description: "Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output."
description_zh: "管理 Apple 提醒事项(添加、编辑、完成)"
description_en: "Manage Apple Reminders (add, edit, complete)"
version: 1.0.0
---

# Apple Reminders CLI (remindctl)

Use `remindctl` to manage Apple Reminders directly from the terminal. It supports list filtering, date-based views, and scripting output.

Setup
- Install (Homebrew): `brew install steipete/tap/remindctl`
- From source: `pnpm install && pnpm build` (binary at `./bin/remindctl`)
- macOS-only; grant Reminders permission when prompted.

Permissions
- Check status: `remindctl status`
- Request access: `remindctl authorize`

View Reminders
- Default (today): `remindctl`
- Today: `remindctl today`
- Tomorrow: `remindctl tomorrow`
- Week: `remindctl week`
- Overdue: `remindctl overdue`
- Upcoming: `remindctl upcoming`
- Completed: `remindctl completed`
- All: `remindctl all`
- Specific date: `remindctl 2026-01-04`

Manage Lists
- List all lists: `remindctl list`
- Show list: `remindctl list Work`
- Create list: `remindctl list Projects --create`
- Rename list: `remindctl list Work --rename Office`
- Delete list: `remindctl list Work --delete`

Create Reminders
- Quick add: `remindctl add "Buy milk"`
- With list + due: `remindctl add --title "Call mom" --list Personal --due tomorrow`

Edit Reminders
- Edit title/due: `remindctl edit 1 --title "New title" --due 2026-01-04`

Complete Reminders
- Complete by id: `remindctl complete 1 2 3`

Delete Reminders
- Delete by id: `remindctl delete 4A83 --force`

Output Formats
- JSON (scripting): `remindctl today --json`
- Plain TSV: `remindctl today --plain`
- Counts only: `remindctl today --quiet`

Date Formats
Accepted by `--due` and date filters:
- `today`, `tomorrow`, `yesterday`
- `YYYY-MM-DD`
- `YYYY-MM-DD HH:mm`
- ISO 8601 (`2026-01-04T12:34:56Z`)

Notes
- macOS-only.
- If access is denied, enable Terminal/remindctl in System Settings > Privacy & Security > Reminders.
- If running over SSH, grant access on the Mac that runs the command.
第二段:任务请求在第一段之后发送,将方括号内容替换为你的目标。
请使用「Apple提醒事项」完成以下任务。

任务目标:
[描述你希望完成的结果]

输入资料:
[粘贴文本、链接、文件说明或数据]

输出要求:
[说明格式、语言、篇幅和验收标准]

请严格遵循上一段 Skill 指令中的边界、步骤和限制;缺少必要信息时先提出澄清问题。

原始内容

SKILL.md

---
name: apple-reminders
description: "Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output."
description_zh: "管理 Apple 提醒事项(添加、编辑、完成)"
description_en: "Manage Apple Reminders (add, edit, complete)"
version: 1.0.0
---

# Apple Reminders CLI (remindctl)

Use `remindctl` to manage Apple Reminders directly from the terminal. It supports list filtering, date-based views, and scripting output.

Setup
- Install (Homebrew): `brew install steipete/tap/remindctl`
- From source: `pnpm install && pnpm build` (binary at `./bin/remindctl`)
- macOS-only; grant Reminders permission when prompted.

Permissions
- Check status: `remindctl status`
- Request access: `remindctl authorize`

View Reminders
- Default (today): `remindctl`
- Today: `remindctl today`
- Tomorrow: `remindctl tomorrow`
- Week: `remindctl week`
- Overdue: `remindctl overdue`
- Upcoming: `remindctl upcoming`
- Completed: `remindctl completed`
- All: `remindctl all`
- Specific date: `remindctl 2026-01-04`

Manage Lists
- List all lists: `remindctl list`
- Show list: `remindctl list Work`
- Create list: `remindctl list Projects --create`
- Rename list: `remindctl list Work --rename Office`
- Delete list: `remindctl list Work --delete`

Create Reminders
- Quick add: `remindctl add "Buy milk"`
- With list + due: `remindctl add --title "Call mom" --list Personal --due tomorrow`

Edit Reminders
- Edit title/due: `remindctl edit 1 --title "New title" --due 2026-01-04`

Complete Reminders
- Complete by id: `remindctl complete 1 2 3`

Delete Reminders
- Delete by id: `remindctl delete 4A83 --force`

Output Formats
- JSON (scripting): `remindctl today --json`
- Plain TSV: `remindctl today --plain`
- Counts only: `remindctl today --quiet`

Date Formats
Accepted by `--due` and date filters:
- `today`, `tomorrow`, `yesterday`
- `YYYY-MM-DD`
- `YYYY-MM-DD HH:mm`
- ISO 8601 (`2026-01-04T12:34:56Z`)

Notes
- macOS-only.
- If access is denied, enable Terminal/remindctl in System Settings > Privacy & Security > Reminders.
- If running over SSH, grant access on the Mac that runs the command.