smithery.ai

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.

First seen Mar 21, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,511 B
  • docs SUMMARY.md 162 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

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"