LaunchKit · 2026
Back to Skills

macos-notes

Create, read, search, and manage macOS Notes via AppleScript.

0
456 downloads
by @lucaperret

Setup & Installation

openclaw skills install @lucaperret/macos-notes

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install macos-notes

What This Skill Does

Controls Apple Notes on macOS through AppleScript, letting an agent create, read, list, and search notes without opening the app. Accepts plain text or HTML and maps natural language requests to the appropriate Notes.app command.

It drives the native Notes.app directly via osascript, so notes sync through iCloud automatically without any third-party service or extra credentials.

When to use it

  • Saving a code snippet or API key format as a quick note
  • Creating timestamped meeting summaries in a specific iCloud folder
  • Searching past notes to recall what you wrote about a topic
  • Listing recent notes to review what was captured last week
  • Filing a note into a named work folder by matching account and folder names

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Save meeting notes from today's roadmap call in my iCloud Notes folder

AGENT
  1. 1Run list-folders to discover available accounts and folder names
  2. 2Identify the iCloud account and the target Notes folder
  3. 3Build a JSON payload with title, body, account, and folder fields
  4. 4Pipe the JSON to notes.sh create-note via stdin
  5. 5Confirm the note was created by reading back the title
OUTPUT

A new note titled 'Meeting notes — 2026-03-14' appears in the iCloud > Notes folder with the meeting summary as its body