$npx -y skills add SafeAI-Lab-X/ClawKeeper --skill apple-notesManage Apple Notes via the memo CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.
| 1 | # Apple Notes CLI |
| 2 | |
| 3 | Use `memo notes` to manage Apple Notes directly from the terminal. Create, view, edit, delete, search, move notes between folders, and export to HTML/Markdown. |
| 4 | |
| 5 | Setup |
| 6 | |
| 7 | - Install (Homebrew): `brew tap antoniorodr/memo && brew install antoniorodr/memo/memo` |
| 8 | - Manual (pip): `pip install .` (after cloning the repo) |
| 9 | - macOS-only; if prompted, grant Automation access to Notes.app. |
| 10 | |
| 11 | View Notes |
| 12 | |
| 13 | - List all notes: `memo notes` |
| 14 | - Filter by folder: `memo notes -f "Folder Name"` |
| 15 | - Search notes (fuzzy): `memo notes -s "query"` |
| 16 | |
| 17 | Create Notes |
| 18 | |
| 19 | - Add a new note: `memo notes -a` |
| 20 | - Opens an interactive editor to compose the note. |
| 21 | - Quick add with title: `memo notes -a "Note Title"` |
| 22 | |
| 23 | Edit Notes |
| 24 | |
| 25 | - Edit existing note: `memo notes -e` |
| 26 | - Interactive selection of note to edit. |
| 27 | |
| 28 | Delete Notes |
| 29 | |
| 30 | - Delete a note: `memo notes -d` |
| 31 | - Interactive selection of note to delete. |
| 32 | |
| 33 | Move Notes |
| 34 | |
| 35 | - Move note to folder: `memo notes -m` |
| 36 | - Interactive selection of note and destination folder. |
| 37 | |
| 38 | Export Notes |
| 39 | |
| 40 | - Export to HTML/Markdown: `memo notes -ex` |
| 41 | - Exports selected note; uses Mistune for markdown processing. |
| 42 | |
| 43 | Limitations |
| 44 | |
| 45 | - Cannot edit notes containing images or attachments. |
| 46 | - Interactive prompts may require terminal access. |
| 47 | |
| 48 | Notes |
| 49 | |
| 50 | - macOS-only. |
| 51 | - Requires Apple Notes.app to be accessible. |
| 52 | - For automation, grant permissions in System Settings > Privacy & Security > Automation. |