Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Integrate with macOS Reminders app to check, add, edit, delete, and complete reminders. Supports native recurrence (매주/weekly/毎週/每周) via Swift EventKit - creates single reminder with repeat rule. Supports editing and deleting reminders by ID (calendarItemIdentifier from EventKit). Supports multiple languages (en, ko, ja, zh) for trigger detection and response formatting. When users request recurring reminders, MUST use --repeat option (daily|weekly|monthly|yearly). --- name: mac-reminders-agent version: 1.2.0 author: swancho license: MIT description: | Integrate with macOS Reminders app to check, add, edit, delete, and complete reminders. Supports native recurrence (매주/weekly/毎週/每周) via Swift EventKit - creates single reminder with repeat rule. Supports editing and deleting reminders by ID (calendarItemIdentifier from EventKit). Supports multiple languages (en, ko, ja, zh) for Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Freshness
Last checked 2/24/2026
Best For
mac-reminders-agent is best for be, the, via workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Integrate with macOS Reminders app to check, add, edit, delete, and complete reminders. Supports native recurrence (매주/weekly/毎週/每周) via Swift EventKit - creates single reminder with repeat rule. Supports editing and deleting reminders by ID (calendarItemIdentifier from EventKit). Supports multiple languages (en, ko, ja, zh) for trigger detection and response formatting. When users request recurring reminders, MUST use --repeat option (daily|weekly|monthly|yearly). --- name: mac-reminders-agent version: 1.2.0 author: swancho license: MIT description: | Integrate with macOS Reminders app to check, add, edit, delete, and complete reminders. Supports native recurrence (매주/weekly/毎週/每周) via Swift EventKit - creates single reminder with repeat rule. Supports editing and deleting reminders by ID (calendarItemIdentifier from EventKit). Supports multiple languages (en, ko, ja, zh) for
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 24, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 24, 2026
Vendor
Swancho
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/swancho/mac-reminders-agent.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Swancho
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
# List with default locale (en) node skills/mac-reminders-agent/cli.js list --scope today # List with specific locale node skills/mac-reminders-agent/cli.js list --scope week --locale ko
json
[
{
"title": "Task title",
"due": "2026-02-05T16:30:00" | null
}
]text
[Incomplete Reminders] - 2/2 (Mon) 09:00 [Work] Meeting - 2/3 (Tue) 14:00 [Personal] Visit bank [Completed] - 2/1 (Sun) [Work] Submit report ✅
text
[미완료 미리알림] - 2/2 (월) 09:00 [업무] 회의 - 2/3 (화) 14:00 [개인] 은행 방문 [완료됨] - 2/1 (일) [업무] 보고서 제출 ✅
bash
# Add with locale node skills/mac-reminders-agent/cli.js add --title "Meeting" --due "2026-02-05T09:00:00+09:00" --locale ko
bash
# Edit title node skills/mac-reminders-agent/cli.js edit --id "ABC123" --title "New Meeting Title" --locale ko # Edit due date node skills/mac-reminders-agent/cli.js edit --id "ABC123" --due "2026-03-01T10:00:00+09:00" # Edit note node skills/mac-reminders-agent/cli.js edit --id "ABC123" --note "Updated notes"
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Integrate with macOS Reminders app to check, add, edit, delete, and complete reminders. Supports native recurrence (매주/weekly/毎週/每周) via Swift EventKit - creates single reminder with repeat rule. Supports editing and deleting reminders by ID (calendarItemIdentifier from EventKit). Supports multiple languages (en, ko, ja, zh) for trigger detection and response formatting. When users request recurring reminders, MUST use --repeat option (daily|weekly|monthly|yearly). --- name: mac-reminders-agent version: 1.2.0 author: swancho license: MIT description: | Integrate with macOS Reminders app to check, add, edit, delete, and complete reminders. Supports native recurrence (매주/weekly/毎週/每周) via Swift EventKit - creates single reminder with repeat rule. Supports editing and deleting reminders by ID (calendarItemIdentifier from EventKit). Supports multiple languages (en, ko, ja, zh) for
This skill integrates with the local macOS Reminders app to:
The skill uses the following files relative to its directory:
cli.js (unified entry point)reminders/apple-bridge.js (backend: AppleScript + applescript npm module)reminders/eventkit-bridge.swift (native recurrence via Swift EventKit)locales.json (language-specific triggers and responses)The skill automatically detects user language or can be explicitly set via --locale parameter.
| Code | Language | Example Trigger |
|------|----------|-----------------|
| en | English | "What do I have to do today?" |
| ko | 한국어 | "오늘 할 일 뭐 있어?" |
| ja | 日本語 | "今日のタスクは?" |
| zh | 中文 | "今天有什么任务?" |
--locale parameteren (English)User natural language requests are handled in two cases:
For each case, call the Node.js CLI, receive JSON results, and format them using locale-specific templates.
English:
Korean (한국어):
Japanese (日本語):
Chinese (中文):
# List with default locale (en)
node skills/mac-reminders-agent/cli.js list --scope today
# List with specific locale
node skills/mac-reminders-agent/cli.js list --scope week --locale ko
today - Today onlyweek - This week (today ~ +7 days)all - All remindersReturns JSON array:
[
{
"title": "Task title",
"due": "2026-02-05T16:30:00" | null
}
]
Use locales.json templates to format responses in user's language:
English:
[Incomplete Reminders]
- 2/2 (Mon) 09:00 [Work] Meeting
- 2/3 (Tue) 14:00 [Personal] Visit bank
[Completed]
- 2/1 (Sun) [Work] Submit report ✅
Korean:
[미완료 미리알림]
- 2/2 (월) 09:00 [업무] 회의
- 2/3 (화) 14:00 [개인] 은행 방문
[완료됨]
- 2/1 (일) [업무] 보고서 제출 ✅
English:
Korean (한국어):
Japanese (日本語):
Chinese (中文):
# Add with locale
node skills/mac-reminders-agent/cli.js add --title "Meeting" --due "2026-02-05T09:00:00+09:00" --locale ko
--title (required): Reminder title--due (optional): ISO 8601 format (YYYY-MM-DDTHH:mm:ss+09:00)--note (optional): Additional notes--locale (optional): Response language (en, ko, ja, zh)English:
Korean:
English:
Korean (한국어):
# Edit title
node skills/mac-reminders-agent/cli.js edit --id "ABC123" --title "New Meeting Title" --locale ko
# Edit due date
node skills/mac-reminders-agent/cli.js edit --id "ABC123" --due "2026-03-01T10:00:00+09:00"
# Edit note
node skills/mac-reminders-agent/cli.js edit --id "ABC123" --note "Updated notes"
--id (required): Reminder ID (calendarItemIdentifier from list output)--title (optional): New title--due (optional): New due date in ISO 8601 format--note (optional): New note text--locale (optional): Response language (en, ko, ja, zh)list first to get reminder IDsBefore editing, always run list to get the reminder's id field. The id is an EventKit calendarItemIdentifier (UUID-like string).
English:
Korean (한국어):
node skills/mac-reminders-agent/cli.js delete --id "ABC123" --locale ko
--id (required): Reminder ID (from list output)--locale (optional): Response languageEnglish:
Korean (한국어):
node skills/mac-reminders-agent/cli.js complete --id "ABC123" --locale ko
--id (required): Reminder ID (from list output)--locale (optional): Response languageUse --repeat to create reminders with native recurrence (single reminder with repeat rule, not multiple copies).
# Weekly recurring reminder
node skills/mac-reminders-agent/cli.js add --title "Weekly standup" --due "2026-02-10T09:00:00+09:00" --repeat weekly
# Bi-weekly reminder
node skills/mac-reminders-agent/cli.js add --title "Sprint review" --due "2026-02-10T14:00:00+09:00" --repeat weekly --interval 2
# Monthly reminder until end of year
node skills/mac-reminders-agent/cli.js add --title "Monthly report" --due "2026-02-28T17:00:00+09:00" --repeat monthly --repeat-end 2026-12-31
--repeat (optional): daily, weekly, monthly, yearly--interval (optional): Repeat interval (default: 1). Example: --interval 2 = every 2 weeks--repeat-end (optional): End date in YYYY-MM-DD formatWhen user requests recurring reminders (매주, 격주, 매월, etc.), MUST use --repeat option. Do NOT create multiple individual reminders manually.
Correct:
node cli.js add --title "주간 회의" --due "2026-02-10T09:00:00+09:00" --repeat weekly
Wrong (DO NOT DO THIS):
# Creating 12 separate reminders is WRONG
node cli.js add --title "주간 회의 - 2/10" --due "2026-02-10T09:00:00+09:00"
node cli.js add --title "주간 회의 - 2/17" --due "2026-02-17T09:00:00+09:00"
...
English:
Korean:
Japanese:
When automatic integration fails, offer alternatives in user's language.
| Requirement | Details | |-------------|---------| | OS | macOS only (tested on macOS 13+) | | Node.js | v18.0.0 or higher | | npm | Included with Node.js | | Swift | Included with Xcode Command Line Tools |
# 1. Install Xcode Command Line Tools (if not already installed)
xcode-select --install
# 2. Install npm dependencies
cd $SKILL_DIR
npm install
This skill requires access to the Reminders app. On first use:
Note: The Swift EventKit bridge (
eventkit-bridge.swift) is compiled on-the-fly when needed. No manual compilation required.
locales.json (en, ko, ja, zh)list --scope today|week|all [--locale XX] — returns items with id fieldadd --title ... [--due ...] [--repeat daily|weekly|monthly|yearly] [--interval N] [--repeat-end YYYY-MM-DD] [--locale XX]edit --id ID [--title ...] [--due ...] [--note ...] [--locale XX]delete --id ID [--locale XX]complete --id ID [--locale XX]--repeat for recurring reminders (creates single reminder with repeat rule)--locale parameterMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/swancho-mac-reminders-agent/snapshot"
curl -s "https://xpersona.co/api/v1/agents/swancho-mac-reminders-agent/contract"
curl -s "https://xpersona.co/api/v1/agents/swancho-mac-reminders-agent/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/swancho-mac-reminders-agent/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/swancho-mac-reminders-agent/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/swancho-mac-reminders-agent/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/swancho-mac-reminders-agent/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/swancho-mac-reminders-agent/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/swancho-mac-reminders-agent/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:36:09.355Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "the",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "via",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:be|supported|profile capability:the|supported|profile capability:via|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Swancho",
"href": "https://github.com/swancho/mac-reminders-agent",
"sourceUrl": "https://github.com/swancho/mac-reminders-agent",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/swancho-mac-reminders-agent/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/swancho-mac-reminders-agent/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/swancho-mac-reminders-agent/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/swancho-mac-reminders-agent/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to mac-reminders-agent and adjacent AI workflows.