apple-notes
Original:🇺🇸 English
Translated
4 scriptsChecked / no sensitive code detected
Interact with the Apple Notes app. CRUD operations for persistent storage of thoughts, data, and information across sessions.
14installs
Sourcealucek/apple-notes
Added on
NPX Install
npx skill4agent add alucek/apple-notes apple-notesTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Apple Notes Creation & Editing
Overview
Tools to interact with Apple Notes. Notes are scoped to an automatically created folder. Notes are formatted using HTML—supported elements are listed below.
agent-notesWhen to Use
- Storing information that should persist across sessions
- Saving notes, ideas, or data the User wants to keep
- Creating task lists, reminders, or reference material
- When the User explicitly asks to save/remember something in notes
How to Use
- List existing notes to see what's available
- Read a note to get its HTML content
- Create new notes with HTML-formatted body
- Delete notes by title (to edit: read → delete → create)
Usage
bash
# List notes
python scripts/list-notes.py
# Create note (heredoc for reliable input)
cat << 'EOF' | python scripts/create-note.py --title "My Note"
<div>Content here</div>
EOF
# Read note
python scripts/read-note.py --title "My Note"
# Delete note
python scripts/delete-note.py --title "My Note"Note: Theis automatically formatted as an--titleheader. Body content is piped via stdin using heredoc (<h1>) to avoid shell escaping issues.<< 'EOF'
HTML Reference
| Element | HTML | Example |
|---|---|---|
| Title | | |
| Heading | | |
| Subheading | | |
| Paragraph | | |
| Bold | | |
| Italic | | |
| Underline | | |
| Strikethrough | | |
| Monospace | | |
| Line break | | |
| Bullet list | | |
| Numbered list | | |
| Table | | See below |
Table Example
html
<object><table><tbody><tr><td>A</td><td>B</td></tr><tr><td>1</td><td>2</td></tr></tbody></table></object>Limitations
- Checklists - Stored internally, checkbox state not accessible (renders as regular bullet list)
- Links - Stripped on save
- Highlights - Stored internally by Apple Notes
- Images - Technically possible (base64) but impractical for LLM use
- Attachments - Cannot be added programmatically