Agent skill
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.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/notes-cardmagic-notes
SKILL.md
Apple Notes Skill
Search, browse, create, and delete Apple Notes with fuzzy matching.
Prerequisites
Ensure the notes CLI is installed:
if ! command -v notes &> /dev/null; then
pnpm add -g @cardmagic/notes
fi
Commands
Search notes
notes search "query" [-l limit] [-f folder] [-a after_date]
Recent notes
notes recent [-l limit]
Read a note by ID
notes read <id>
List folders
notes folders [-l limit]
Notes in folder
notes folder "folder_name" [-l limit]
Index statistics
notes stats
Rebuild index
notes index [-f|--force]
Create a note
notes create "Title" --body "Content" [--folder "Folder"]
Delete a note
notes delete "Title" [--folder "Folder"]
Examples
- Search for "recipe":
notes search "recipe" - Recent notes:
notes recent - Notes in Taxes folder:
notes folder Taxes - Read note ID 123:
notes read 123 - Create a note:
notes create "Meeting Notes" --body "Agenda items..." - Delete a note:
notes delete "Old Draft"
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?