Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Create, read, search, and manage macOS Notes via AppleScript. Use when the user asks to take a note, jot something down, save an idea, create meeting notes,...
Create, read, search, and manage macOS Notes via AppleScript. Use when the user asks to take a note, jot something down, save an idea, create meeting notes,...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Manage Apple Notes via $SKILL_DIR/scripts/notes.sh. Notes content is stored as HTML internally; the script accepts plain text or HTML body and returns plaintext when reading.
Always list folders first to discover accounts and folder names: "$SKILL_DIR/scripts/notes.sh" list-folders Output format: account โ folder (one per line).
echo '<json>' | "$SKILL_DIR/scripts/notes.sh" create-note JSON fields: FieldRequiredDefaultDescriptiontitleyes-Note title (becomes the first line / heading)bodyno""Note content (plain text โ converted to HTML automatically)htmlno""Raw HTML body (overrides body if both provided)foldernodefault folderFolder name (from list-folders)accountnodefault accountAccount name (from list-folders)
echo '<json>' | "$SKILL_DIR/scripts/notes.sh" read-note JSON fields: FieldRequiredDefaultDescriptionnameyes-Note title (exact match)foldernoall foldersFolder to search inaccountnodefault accountAccount to search in
echo '<json>' | "$SKILL_DIR/scripts/notes.sh" list-notes JSON fields: FieldRequiredDefaultDescriptionfoldernodefault folderFolder nameaccountnodefault accountAccount namelimitno20Max notes to return
echo '<json>' | "$SKILL_DIR/scripts/notes.sh" search-notes JSON fields: FieldRequiredDefaultDescriptionqueryyes-Text to search for in note titlesaccountnodefault accountAccount to search inlimitno10Max results to return
Map user requests to commands: User saysCommandKey fields"Note this down: ..."create-notetitle, body"Save meeting notes"create-notetitle: "Meeting notes โ <date>", body"What did I write about X?"search-notesquery: "X""Show my notes"list-notes(defaults)"Read my note about X"read-notename: "X""Save this in my work notes"create-noteMatch closest account/folder from list-folders
"Note down the API key format: prefix_xxxx" echo '{"title":"API key format","body":"Format: prefix_xxxx"}' | "$SKILL_DIR/scripts/notes.sh" create-note "Show my recent notes" echo '{}' | "$SKILL_DIR/scripts/notes.sh" list-notes "What did I write about passwords?" echo '{"query":"password"}' | "$SKILL_DIR/scripts/notes.sh" search-notes "Read my note about Hinge" echo '{"name":"Hinge"}' | "$SKILL_DIR/scripts/notes.sh" read-note "Create a meeting summary in my iCloud notes" "$SKILL_DIR/scripts/notes.sh" list-folders Then: echo '{"title":"Meeting summary โ 2026-02-17","body":"Discussed roadmap.\n- Q1: launch MVP\n- Q2: iterate","account":"iCloud","folder":"Notes"}' | "$SKILL_DIR/scripts/notes.sh" create-note
Always list folders first if the user hasn't specified an account/folder โ folder names are reused across accounts Specify both account and folder when targeting a specific location โ folder: "Notes" alone is ambiguous Password-protected notes are skipped โ the script cannot read or modify them Pass JSON via stdin โ never as a CLI argument (avoids leaking data in process list) All fields are validated by the script (type coercion, range checks) โ invalid input is rejected with an error All actions are logged to logs/notes.log with timestamp, command, and note title Body uses plain text โ newlines in body are converted to <br> automatically; use html for rich formatting Note title = first line โ Notes.app treats the first line of the body as the note name
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.