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에서 보기