apple-reminders

apple-reminders is a skill for Claude Code, Codex from ahkedia/lyra-ai. It costs 43 tokens per session (1,026 once invoked), scanned A, original, MIT.

A reminder system that stores checklist items in Notion databases corresponding to personal and shared Apple Reminders lists.

In plain words
What is it for?
Use it to create, query, and complete tasks with due dates, priorities, notes, recurrence, list, and assignment details.
Why use it?
It provides a place to add, find, and complete reminders when the agent runs on a Linux server without direct Apple Reminders access.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create, query, and complete tasks with due dates, priorities, notes, recurrence, list, and assignment details.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ahkedia/lyra-ai/apple-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 ahkedia/lyra-ai --skill apple-reminders
Clone the repo
git clone --depth 1 https://github.com/ahkedia/lyra-ai

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 apple-reminders

README.md
[![agentmods](https://agentmods.dev/badge/skills/ahkedia/lyra-ai/apple-reminders/github.svg)](https://agentmods.dev/skills/ahkedia/lyra-ai/apple-reminders)
Your own site
<a href="https://agentmods.dev/skills/ahkedia/lyra-ai/apple-reminders"><img src="https://agentmods.dev/badge/skills/ahkedia/lyra-ai/apple-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 apple-reminders

Your own site · 80×15
<a href="https://agentmods.dev/skills/ahkedia/lyra-ai/apple-reminders"><img src="https://agentmods.dev/badge/skills/ahkedia/lyra-ai/apple-reminders.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,026 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00043 $0.01026
Opus 5 $0.00022 $0.00513
Sonnet 5 $0.00009 $0.00205
Haiku 4.5 $0.00004 $0.00103

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

Security

Grade A, and why

apple-reminders scanned grade A with 1 finding 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 10d ago.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST https://api.notion.com/v1/pages \
skills/apple-reminders/SKILL.md · 93 lines

How it starts

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

Reminders — Notion-backed Checklist

Since Lyra runs on Linux (Hetzner VPS), reminders are stored in Notion databases. The "List" property maps to Apple Reminders list names for future sync.

Databases

Database database_id data_source_id Who
Reminders - Akash 32678008-9100-802f-ad9f-fb48ff5f4c1d c80025d7-782d-4159-a10d-74bd9aa622ef Akash only
Reminders - Shared 2054e39c-3f09-431d-8821-0e6a7513913a 9f206d71-7b25-408b-ad20-02daf0b43da0 Both
Reminders - Abhigna 5d6732b1-7e30-4856-b56b-edbf9c3df229 1e74f66d-cb24-40f5-8697-84a3ad8ad1bc Abhigna only

Schema (all 3 databases)

Property Type Options
Task title
Due date
Priority select High, Medium, Low
Done checkbox true/false
List select Varies per DB (maps to Apple Reminders lists)
Recurrence select Once, Daily, Weekly, Monthly
Assigned By select Akash, Abhigna, Lyra
Notes rich_text
For select Akash, Abhigna, Both (Shared DB only)

List Options by Database

  • Akash: Personal, Work, Health, Finance, Travel, Relocation
  • Shared: Groceries, Household, Bills, Travel, Shopping
  • Abhigna: Personal, Health, Shopping, Appointments

Add a Reminder

curl -X POST https://api.notion.com/v1/pages \
  -H "Authorization: Bearer $NOTION_API_KEY" \
  -H "Notion-Version: 2022-06-28" \
  -H "Content-Type: application/json" \
  -d '{
    "parent": { "database_id": "<database_id from table above>" },
    "properties": {
      "Task": { "title": [{ "text": { "content": "Buy groceries" } }] },
      "Due": { "date": { "start": "2026-03-20" } },
      "Priority": { "select": { "name": "Medium" } },
      "Done": { "checkbox": false },
      "List": { "select": { "name": "Groceries" } },
      "Assigned By": { "select": { "name": "Akash" } }
    }
  }'

Query Incomplete Reminders

curl -X POST "https://api.notion.com/v1/databases/<database_id>/query" \
  -H "Authorization: Bearer $NOTION_API_KEY" \
  -H "Notion-Version: 2022-06-28" \
  -H "Content-Type: application/json" \
  -d '{
    "filter": { "property": "Done", "checkbox": { "equals": false } },
    "sorts": [{ "property": "Due", "direction": "ascending" }]
  }'

Read the full file on GitHub · 93 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. 10d ago First seen · 93 lines · 43 tokens per session scan A 52deedd5dd31

Subscribe to this mod's changes

apple-reminders is a skill published in the GitHub repository ahkedia/lyra-ai (5 stars, last pushed 21d ago), licensed MIT. It adds 43 tokens to every session and 1,026 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.