# Apple Notes

> Create, read, and search Apple Notes on macOS using osascript AppleScript.

- **Type:** Skill
- **Install:** `agentstack add skill-eobarretooo-clawlite-apple-notes`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [eobarretooo](https://agentstack.voostack.com/s/eobarretooo)
- **Installs:** 0
- **Category:** [Search](https://agentstack.voostack.com/c/search)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [eobarretooo](https://github.com/eobarretooo)
- **Source:** https://github.com/eobarretooo/ClawLite/tree/main/clawlite/skills/apple-notes

## Install

```sh
agentstack add skill-eobarretooo-clawlite-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

Use this skill to interact with the Apple Notes app on macOS via AppleScript.

## Platform requirement

macOS only. Verify with:
```bash
uname -s   # must return Darwin
which osascript
```

## Create a note

```bash
osascript -e '
tell application "Notes"
  tell account "iCloud"
    make new note at folder "Notes" with properties {name:"Title", body:"Body text here"}
  end tell
end tell'
```

## Read a note by name

```bash
osascript -e '
tell application "Notes"
  set theNote to note "Title" of folder "Notes" of account "iCloud"
  return body of theNote
end tell'
```

## List all notes

```bash
osascript -e '
tell application "Notes"
  set noteNames to {}
  repeat with n in notes of folder "Notes" of account "iCloud"
    set end of noteNames to name of n
  end repeat
  return noteNames
end tell'
```

## Search notes (by name substring)

```bash
osascript -e '
tell application "Notes"
  set results to {}
  repeat with n in notes of folder "Notes" of account "iCloud"
    if name of n contains "search term" then
      set end of results to name of n
    end if
  end repeat
  return results
end tell'
```

## Update/append to a note

```bash
osascript -e '
tell application "Notes"
  set theNote to note "Title" of folder "Notes" of account "iCloud"
  set body of theNote to (body of theNote) & "Appended content"
end tell'
```

## Safety notes

- Notes body is HTML; use `` for line breaks.
- Specify account (iCloud vs On My Mac) to avoid ambiguity.
- Requires Accessibility/Automation permission for Terminal/agent process.

## Source & license

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

- **Author:** [eobarretooo](https://github.com/eobarretooo)
- **Source:** [eobarretooo/ClawLite](https://github.com/eobarretooo/ClawLite)
- **License:** MIT

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-eobarretooo-clawlite-apple-notes
- Seller: https://agentstack.voostack.com/s/eobarretooo
- 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%.
