Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

notes

verified

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.

View on GitHub

Marketplace

cardmagic

cardmagic/ai-marketplace

Plugin

notes

Repository

cardmagic/ai-marketplace

plugins/notes/skills/notes/SKILL.md

Last Verified

February 1, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/cardmagic/ai-marketplace/blob/main/plugins/notes/skills/notes/SKILL.md -a claude-code --skill notes

Installation paths:

Claude
.claude/skills/notes/
Powered by add-skill CLI

Instructions

# Apple Notes Skill

Search, browse, create, and delete Apple Notes with fuzzy matching.

## Prerequisites

Ensure the notes CLI is installed:

```bash
if ! command -v notes &> /dev/null; then
  pnpm add -g @cardmagic/notes
fi
```

## Commands

### Search notes
```bash
notes search "query" [-l limit] [-f folder] [-a after_date]
```

### Recent notes
```bash
notes recent [-l limit]
```

### Read a note by ID
```bash
notes read <id>
```

### List folders
```bash
notes folders [-l limit]
```

### Notes in folder
```bash
notes folder "folder_name" [-l limit]
```

### Index statistics
```bash
notes stats
```

### Rebuild index
```bash
notes index [-f|--force]
```

### Create a note
```bash
notes create "Title" --body "Content" [--folder "Folder"]
```

### Delete a note
```bash
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"`

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
1101 chars