From notes
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 claudepluginhub cardmagic/notesThis skill uses the workspace's default tool permissions.
Search, browse, create, and delete Apple Notes with fuzzy matching.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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"