Stats
Actions
Tags
From notes
Search, browse, create, and delete Apple Notes using notes CLI with fuzzy matching, recent lists, folder views, and ID reads. Useful for managing personal notes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/notes:notesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search, browse, create, and delete Apple Notes with fuzzy matching.
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"Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub cardmagic/notes