# apple-notes > Interact with the Apple Notes app. CRUD operations for persistent storage of thoughts, data, and information across sessions. - Author: ALucek - Repository: ALucek/apple-notes - Version: 20251229150852 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/ALucek/apple-notes - Web: https://mule.run/skillshub/@@ALucek/apple-notes~apple-notes:20251229150852 --- --- name: apple-notes description: Interact with the Apple Notes app. CRUD operations for persistent storage of thoughts, data, and information across sessions. license: MIT License metadata: author: "lucek.ai" version: "1.0.0" --- # Apple Notes Creation & Editing ## Overview Tools to interact with Apple Notes. Notes are scoped to an automatically created `agent-notes` folder. Notes are formatted using HTML—supported elements are listed below. ## When 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 1. **List** existing notes to see what's available 2. **Read** a note to get its HTML content 3. **Create** new notes with HTML-formatted body 4. **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"