Search, browse, create, and delete Apple Notes. Use when user asks about notes, wants to find something in notes, create a new note, or delete notes.
Search, browse, create, and delete Apple Notes with fuzzy matching. Use when users ask about notes, want to find something in notes, create a new note, or delete notes.
/plugin marketplace add cardmagic/notes/plugin install cardmagic-notes@cardmagic/notesThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Search, browse, create, and delete Apple Notes with fuzzy matching.
Ensure the notes CLI is installed:
if ! command -v notes &> /dev/null; then
pnpm add -g @cardmagic/notes
fi
notes search "query" [-l limit] [-f folder] [-a after_date]
notes recent [-l limit]
notes read <id>
notes folders [-l limit]
notes folder "folder_name" [-l limit]
notes stats
notes index [-f|--force]
notes create "Title" --body "Content" [--folder "Folder"]
notes delete "Title" [--folder "Folder"]
notes search "recipe"notes recentnotes folder Taxesnotes read 123notes create "Meeting Notes" --body "Agenda items..."notes delete "Old Draft"