plugins/notes/skills/notes/SKILL.md
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.
npx skillsauth add cardmagic/ai-marketplace notesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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"tools
Search, create, and complete Apple Reminders. Use when user asks about tasks, todos, reminders, grocery lists, or wants to add/complete items.
data-ai
Fuzzy search and browse Apple Messages/iMessage. Use when user asks to find texts, search messages, look up conversations, find what someone said, who texted recently, or view recent messages.
tools
# Text Classification with Classifier Use when: User asks to classify text, detect spam, analyze sentiment, detect emotions, or use pre-trained ML models. ## Pre-trained Models Run `classifier models` to see all available models. Common ones: | Model | Command | Use Case | |-------|---------|----------| | `sms-spam-filter` | `classifier -r sms-spam-filter "text"` | Spam detection | | `imdb-sentiment` | `classifier -r imdb-sentiment "text"` | Sentiment analysis | | `emotion-detection` | `clas
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.