# Send Mac Notes Agent to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mac-notes-agent",
    "name": "Mac Notes Agent",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/swancho/mac-notes-agent",
    "canonicalUrl": "https://clawhub.ai/swancho/mac-notes-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mac-notes-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mac-notes-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "cli.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mac-notes-agent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T06:02:34.901Z",
      "expiresAt": "2026-05-12T06:02:34.901Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mac-notes-agent",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mac-notes-agent",
        "contentDisposition": "attachment; filename=\"mac-notes-agent-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mac-notes-agent"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mac-notes-agent"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mac-notes-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/mac-notes-agent",
    "agentUrl": "https://openagent3.xyz/skills/mac-notes-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mac-notes-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mac-notes-agent/agent.md"
  }
}
```
## Documentation

### Overview

This skill lets the agent talk to Apple Notes on macOS using AppleScript
(via osascript). It is implemented as a small Node.js CLI:

node skills/mac-notes-agent/cli.js <command> [options]

Requires macOS with the built-in Notes app and osascript available.

All operations target the default Notes account. Optionally you can specify
which folder to use.

### 1) Add a new note

node skills/mac-notes-agent/cli.js add \\
  --title "Meeting notes" \\
  --body "First line\\nSecond line\\nThird line" \\
  [--folder "Jarvis"]

--title (required): Note title
--body (required): Note body text. Use \\n for line breaks.
--folder (optional): Folder name. If omitted, uses system default folder. If folder doesn't exist, it will be created.

Line breaks (\\n) are converted to <br> tags internally for proper rendering in Notes.

Result (JSON):

{
  "status": "ok",
  "id": "Jarvis::2026-02-09T08:40:00::Meeting notes",
  "title": "Meeting notes",
  "folder": "Jarvis"
}

### 2) List notes

node skills/mac-notes-agent/cli.js list [--folder "Jarvis"] [--limit 50]

Lists notes in the given folder (or all folders if omitted).
Output is JSON array with title, folder, creationDate, and synthetic id.

### 3) Read a note (get)

# By folder + title
node skills/mac-notes-agent/cli.js get \\
  --folder "Jarvis" \\
  --title "Meeting notes"

# By synthetic id
node skills/mac-notes-agent/cli.js get --id "Jarvis::2026-02-09T08:40:00::Meeting notes"

### 4) Update a note (replace body)

node skills/mac-notes-agent/cli.js update \\
  --folder "Jarvis" \\
  --title "Meeting notes" \\
  --body "New content\\nReplaces everything"

Replaces the entire body of the matching note.
Can also use --id for identification.

### 5) Append to a note

node skills/mac-notes-agent/cli.js append \\
  --folder "Jarvis" \\
  --title "Meeting notes" \\
  --body "\\n---\\nAdditional notes here"

Appends new content to the end of the existing note.

### 6) Delete a note

node skills/mac-notes-agent/cli.js delete \\
  --folder "Jarvis" \\
  --title "Meeting notes"

### 7) Search notes

node skills/mac-notes-agent/cli.js search \\
  --query "keyword" \\
  [--folder "Jarvis"] \\
  [--limit 20]

Searches note titles and bodies for the keyword.

### Identification Model

Apple Notes doesn't expose stable IDs. This CLI uses:

Primary key: (folderName, title)
Synthetic ID: folderName::creationDate::title

When multiple notes share the same title, the CLI operates on the most recently created one.

### Environment

macOS only: Uses AppleScript via osascript
No npm dependencies: Uses only Node.js built-ins (child_process)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: swancho
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T06:02:34.901Z
- Expires at: 2026-05-12T06:02:34.901Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mac-notes-agent)
- [Send to Agent page](https://openagent3.xyz/skills/mac-notes-agent/agent)
- [JSON manifest](https://openagent3.xyz/skills/mac-notes-agent/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mac-notes-agent/agent.md)
- [Download page](https://openagent3.xyz/downloads/mac-notes-agent)