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.
来源信息
- 仓库
- cardmagic/notes
- 最近来源活动
- 2026年1月3日 16:48
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 6
- 分支
- 2
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- notes
- description
- 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.
- triggers
- ["notes","apple notes","find note","search notes","my notes","list notes","read note","create note","add note","new note","delete note","remove note"]
# 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"`
在 GitHub 查看