Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks to add a note, list notes, search notes, or manage note folders.
Add this skill
npx mdskills install project-nomos/apple-notesComprehensive CLI wrapper for Apple Notes with clear operations and good coverage
1---2name: apple-notes3description: Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks to add a note, list notes, search notes, or manage note folders.4emoji: "📝"5requires: { "bins": ["memo"], "os": ["darwin"] }6install: ["brew tap antoniorodr/memo && brew install antoniorodr/memo/memo"]7---89# Apple Notes CLI1011Use `memo notes` to manage Apple Notes directly from the terminal. Create, view, edit, delete, search, move notes between folders, and export to HTML/Markdown.1213Setup1415- Install (Homebrew): `brew tap antoniorodr/memo && brew install antoniorodr/memo/memo`16- Manual (pip): `pip install .` (after cloning the repo)17- macOS-only; if prompted, grant Automation access to Notes.app.1819View Notes2021- List all notes: `memo notes`22- Filter by folder: `memo notes -f "Folder Name"`23- Search notes (fuzzy): `memo notes -s "query"`2425Create Notes2627- Add a new note: `memo notes -a`28 - Opens an interactive editor to compose the note.29- Quick add with title: `memo notes -a "Note Title"`3031Edit Notes3233- Edit existing note: `memo notes -e`34 - Interactive selection of note to edit.3536Delete Notes3738- Delete a note: `memo notes -d`39 - Interactive selection of note to delete.4041Move Notes4243- Move note to folder: `memo notes -m`44 - Interactive selection of note and destination folder.4546Export Notes4748- Export to HTML/Markdown: `memo notes -ex`49 - Exports selected note; uses Mistune for markdown processing.5051Limitations5253- Cannot edit notes containing images or attachments.54- Interactive prompts may require terminal access.5556Notes5758- macOS-only.59- Requires Apple Notes.app to be accessible.60- For automation, grant permissions in System Settings > Privacy & Security > Automation.61
Full transparency — inspect the skill content before installing.