# Apple Notes

> Interact with the Apple Notes app. CRUD operations for persistent storage of thoughts, data, and information across sessions.

- **Type:** Skill
- **Install:** `agentstack add skill-alucek-apple-notes-apple-notes`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [ALucek](https://agentstack.voostack.com/s/alucek)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [ALucek](https://github.com/ALucek)
- **Source:** https://github.com/ALucek/apple-notes/tree/main/plugins/apple-notes/skills/apple-notes
- **Website:** https://lucek.ai

## Install

```sh
agentstack add skill-alucek-apple-notes-apple-notes
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# 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 Content here
EOF

# Read note
python scripts/read-note.py --title "My Note"

# Delete note
python scripts/delete-note.py --title "My Note"
```

> **Note:** The `--title` is automatically formatted as an `` header. Body content is piped via stdin using heredoc (`` | `Title` |
| Heading | `` | `Heading` |
| Subheading | `` | `Subheading` |
| Paragraph | `` | `Text here` |
| Bold | `` | `bold` |
| Italic | `` | `italic` |
| Underline | `` | `underline` |
| Strikethrough | `` | `deleted` |
| Monospace | `` | `code` |
| Line break | `` | `` |
| Bullet list | `` | `Item 1Item 2` |
| Numbered list | `` | `FirstSecond` |
| Table | `` | See below |

### Table Example
```html
AB12
```

## 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

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [ALucek](https://github.com/ALucek)
- **Source:** [ALucek/apple-notes](https://github.com/ALucek/apple-notes)
- **License:** MIT
- **Homepage:** https://lucek.ai

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-alucek-apple-notes-apple-notes
- Seller: https://agentstack.voostack.com/s/alucek
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
