apple

Route Apple ecosystem requests to sub-skills for Notes, Reminders, FindMy, iMessage, and macOS GUI automation.

6|1|Updated May 11, 2026
One-click install
npx skills add https://github.com/yakeworld/Synthos --skill apple-yakeworld
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: apple
Source: https://github.com/yakeworld/Synthos/tree/main/skills/extended/external-automation/apple
Command: npx skills add https://github.com/yakeworld/Synthos --skill apple-yakeworld

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing Apple ecosystem tasks (notes, reminders, device location, messaging, GUI automation) requires choosing the right tool for each request. This Skill acts as a parent router that maps user requests to the correct specialized sub-skill instead of executing operations directly. ## Core Features & Use Cases - Sub-skill Routing: Automatically routes requests to one of five sub-skills: apple-notes, apple-reminders, findmy, imessage, or macos-computer-use, loaded via skill_view. - Structured Error Handling: Returns structured errors with request context and recovery suggestions when a request matches no known sub-skill. - Golden Test Set: Ships executable test cases validating routing correctness, parameter passthrough, and failure recovery. - Use Case: A user asks to create a note about tomorrow's lab meeting; the parent skill routes the request to apple-notes, which executes the memo CLI command, while an unsupported request like changing startup items is rejected with actionable recovery guidance. ## Quick Start Ask the agent to handle an Apple ecosystem task such as creating a reminder or locating a device, and it will route the request to the matching sub-skill automatically.

Frequently Asked Questions about apple

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage Apple Notes, Reminders, and FindMy from the terminal?

Use the dedicated CLI tools wrapped by the sub-skills: memo for Apple Notes, remindctl for Apple Reminders, and AppleScript plus screenshots for FindMy. The parent apple skill routes each request to the right sub-skill automatically.

What sub-skills does the apple parent skill route to?

It routes to five sub-skills: apple-notes (memo CLI), apple-reminders (remindctl CLI), findmy (AppleScript plus screen capture), imessage (imsg CLI), and macos-computer-use (background GUI automation via computer_use).

Does the apple parent skill execute tasks directly?

No. The parent skill is only a directory index and router. Actual execution is delegated to sub-skills loaded via skill_view, with the original request and context passed through unchanged.

What happens when a request matches no Apple sub-skill?

The router rejects the request with a structured error containing the echoed request, the list of five known sub-skills, and at least two actionable recovery suggestions, rather than failing silently or guessing.

Can I use these Apple automation skills on Linux or Windows?

No. All sub-skills require macOS with the relevant apps (Notes, Reminders, Find My, Messages) and permissions such as Automation, Full Disk Access, or Screen Recording granted to the terminal.