macos-reminders

macos-reminders is a skill for Claude Code, Codex from lucaperret/agent-skills. It costs 101 tokens per session (1,405 once invoked), scanned A, original, MIT.

A macOS Reminders tool for creating, listing, and managing reminders through AppleScript.

In plain words
What is it for?
Use it to create reminders with notes, lists, due dates, times, priorities, or flags, and to list existing reminders and reminder lists.
Why use it?
It lets you add and organize to-dos from an automated workflow instead of entering each reminder manually in the Reminders app.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Use it to create reminders with notes, lists, due dates, times, priorities, or flags, and to list existing reminders and reminder lists.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lucaperret/agent-skills/macos-reminders
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add lucaperret/agent-skills --skill macos-reminders
Clone the repo
git clone --depth 1 https://github.com/lucaperret/agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for macos-reminders

README.md
[![agentmods](https://agentmods.dev/badge/skills/lucaperret/agent-skills/macos-reminders/github.svg)](https://agentmods.dev/skills/lucaperret/agent-skills/macos-reminders)
Your own site
<a href="https://agentmods.dev/skills/lucaperret/agent-skills/macos-reminders"><img src="https://agentmods.dev/badge/skills/lucaperret/agent-skills/macos-reminders/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for macos-reminders

Your own site · 80×15
<a href="https://agentmods.dev/skills/lucaperret/agent-skills/macos-reminders"><img src="https://agentmods.dev/badge/skills/lucaperret/agent-skills/macos-reminders.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,405 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00101 $0.01405
Opus 5 $0.00051 $0.00702
Sonnet 5 $0.00020 $0.00281
Haiku 4.5 $0.00010 $0.00140

Measured 9d ago against content hash 4dd252276223, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

macos-reminders scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/reminders.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/macos-reminders/SKILL.md · 137 lines

How it starts

The opening of the file, as written. The whole thing — 137 lines — stays where its author put it; the contents beside it link to each section on GitHub.

macOS Reminders

Manage Apple Reminders via $SKILL_DIR/scripts/reminders.sh. All date handling uses relative math (current date + N * days) to avoid locale issues (FR/EN/DE date formats).

Quick start

List reminder lists

Always list reminder lists first to find the correct list name:

"$SKILL_DIR/scripts/reminders.sh" list-lists

Create a reminder

echo '<json>' | "$SKILL_DIR/scripts/reminders.sh" create-reminder

JSON fields:

Field Required Default Description
name yes - Reminder title
list no default list Reminder list name (from list-lists)
body no "" Notes/details
offset_days no - Due date as days from today (0=today, 1=tomorrow)
iso_date no - Absolute due date YYYY-MM-DD (overrides offset_days)
hour no 9 Due time hour (0-23)
minute no 0 Due time minute (0-59)
priority no 0 Priority: 0=none, 1=high, 5=medium, 9=low
flagged no false Mark as flagged

List reminders

echo '<json>' | "$SKILL_DIR/scripts/reminders.sh" list-reminders

JSON fields:

Field Required Default Description
list no all lists Filter by list name
include_completed no false Include completed reminders

Interpreting natural language

Map user requests to JSON fields:

User says JSON
"remind me tomorrow at 2pm" offset_days: 1, hour: 14
"remind me in 3 days" offset_days: 3
"add to my shopping list" list: "Shopping" (match closest list name)
"high priority" or "important" priority: 1, flagged: true
"remind me on February 25 at 3:30pm" iso_date: "2026-02-25", hour: 15, minute: 30
"remind me next Monday" Calculate offset_days from today to next Monday
"flag this" flagged: true

For "next Monday", "next Friday" etc: compute the day offset using the current date. Use date command if needed:

Read the full file on GitHub · 137 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 137 lines · 101 tokens per session scan A 4dd252276223

Subscribe to this mod's changes

macos-reminders is a skill published in the GitHub repository lucaperret/agent-skills (6 stars, last pushed 5mo ago), licensed MIT. It adds 101 tokens to every session and 1,405 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

google-calendar-tool

Google Calendar integration tool for listing and creating events via OAuth2 Calendar API access. Use when: checking upcoming events, creating appointments, or updating your schedule.

xuiltul/animaworks · 35 tokens

apple-notes

Use this skill when the user wants to interact with Apple Notes on macOS - creating, searching, reading, updating, deleting, organizing, or formatting notes and folders. This skill provides access to Apple Notes through MCP tools and includes safe formatting guidance.

sweetrb/apple-notes-mcp · 54 tokens

calendar-scheduling

Use when a product needs a booking surface — a pick-a-slot page, a Cal.com/Calendly embed, or real availability plus the confirmed meeting written to Google/Outlook — or when fixing double-booking, DST drift, or orphaned reschedule events. NOT calendar CRUD with no booking surface (that is google-workspace), NOT the…

ericrisco/rsc-harness · 83 tokens

apple-mail

Use this skill when the user wants to manage Apple Mail on macOS - reading, searching, sending, replying to, forwarding, and organizing emails and mailboxes. This skill provides access to Apple Mail through MCP tools.

sweetrb/apple-mail-mcp · 47 tokens

email-management-expert

Expert email management assistant for Apple Mail. Use this when the user mentions inbox management, email organization, email triage, inbox zero, organizing emails, managing mail folders, email productivity, checking emails, or email workflow optimization. Provides intelligent workflows and best practices for…

patrickfreyer/apple-mail-mcp · 61 tokens

apple-pim

Native macOS personal information management for calendars, reminders, contacts, and local Mail.app. Use when the user wants to schedule meetings, create events, check their calendar, create or complete reminders, look up contacts, find someone's phone number or email, manage tasks and to-do lists, triage local…

omarshahine/apple-pim · 83 tokens