{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mac-notes-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mac-notes-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "cli.js"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/mac-notes-agent",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Overview",
        "body": "This skill lets the agent talk to Apple Notes on macOS using AppleScript\n(via osascript). It is implemented as a small Node.js CLI:\n\nnode skills/mac-notes-agent/cli.js <command> [options]\n\nRequires macOS with the built-in Notes app and osascript available.\n\nAll operations target the default Notes account. Optionally you can specify\nwhich folder to use."
      },
      {
        "title": "1) Add a new note",
        "body": "node skills/mac-notes-agent/cli.js add \\\n  --title \"Meeting notes\" \\\n  --body \"First line\\nSecond line\\nThird line\" \\\n  [--folder \"Jarvis\"]\n\n--title (required): Note title\n--body (required): Note body text. Use \\n for line breaks.\n--folder (optional): Folder name. If omitted, uses system default folder. If folder doesn't exist, it will be created.\n\nLine breaks (\\n) are converted to <br> tags internally for proper rendering in Notes.\n\nResult (JSON):\n\n{\n  \"status\": \"ok\",\n  \"id\": \"Jarvis::2026-02-09T08:40:00::Meeting notes\",\n  \"title\": \"Meeting notes\",\n  \"folder\": \"Jarvis\"\n}"
      },
      {
        "title": "2) List notes",
        "body": "node skills/mac-notes-agent/cli.js list [--folder \"Jarvis\"] [--limit 50]\n\nLists notes in the given folder (or all folders if omitted).\nOutput is JSON array with title, folder, creationDate, and synthetic id."
      },
      {
        "title": "3) Read a note (get)",
        "body": "# By folder + title\nnode skills/mac-notes-agent/cli.js get \\\n  --folder \"Jarvis\" \\\n  --title \"Meeting notes\"\n\n# By synthetic id\nnode skills/mac-notes-agent/cli.js get --id \"Jarvis::2026-02-09T08:40:00::Meeting notes\""
      },
      {
        "title": "4) Update a note (replace body)",
        "body": "node skills/mac-notes-agent/cli.js update \\\n  --folder \"Jarvis\" \\\n  --title \"Meeting notes\" \\\n  --body \"New content\\nReplaces everything\"\n\nReplaces the entire body of the matching note.\nCan also use --id for identification."
      },
      {
        "title": "5) Append to a note",
        "body": "node skills/mac-notes-agent/cli.js append \\\n  --folder \"Jarvis\" \\\n  --title \"Meeting notes\" \\\n  --body \"\\n---\\nAdditional notes here\"\n\nAppends new content to the end of the existing note."
      },
      {
        "title": "6) Delete a note",
        "body": "node skills/mac-notes-agent/cli.js delete \\\n  --folder \"Jarvis\" \\\n  --title \"Meeting notes\""
      },
      {
        "title": "7) Search notes",
        "body": "node skills/mac-notes-agent/cli.js search \\\n  --query \"keyword\" \\\n  [--folder \"Jarvis\"] \\\n  [--limit 20]\n\nSearches note titles and bodies for the keyword."
      },
      {
        "title": "Identification Model",
        "body": "Apple Notes doesn't expose stable IDs. This CLI uses:\n\nPrimary key: (folderName, title)\nSynthetic ID: folderName::creationDate::title\n\nWhen multiple notes share the same title, the CLI operates on the most recently created one."
      },
      {
        "title": "Environment",
        "body": "macOS only: Uses AppleScript via osascript\nNo npm dependencies: Uses only Node.js built-ins (child_process)"
      }
    ],
    "body": "Mac Notes Agent\nOverview\n\nThis skill lets the agent talk to Apple Notes on macOS using AppleScript (via osascript). It is implemented as a small Node.js CLI:\n\nnode skills/mac-notes-agent/cli.js <command> [options]\n\n\nRequires macOS with the built-in Notes app and osascript available.\n\nAll operations target the default Notes account. Optionally you can specify which folder to use.\n\nCommands\n1) Add a new note\nnode skills/mac-notes-agent/cli.js add \\\n  --title \"Meeting notes\" \\\n  --body \"First line\\nSecond line\\nThird line\" \\\n  [--folder \"Jarvis\"]\n\n--title (required): Note title\n--body (required): Note body text. Use \\n for line breaks.\n--folder (optional): Folder name. If omitted, uses system default folder. If folder doesn't exist, it will be created.\n\nLine breaks (\\n) are converted to <br> tags internally for proper rendering in Notes.\n\nResult (JSON):\n\n{\n  \"status\": \"ok\",\n  \"id\": \"Jarvis::2026-02-09T08:40:00::Meeting notes\",\n  \"title\": \"Meeting notes\",\n  \"folder\": \"Jarvis\"\n}\n\n2) List notes\nnode skills/mac-notes-agent/cli.js list [--folder \"Jarvis\"] [--limit 50]\n\nLists notes in the given folder (or all folders if omitted).\nOutput is JSON array with title, folder, creationDate, and synthetic id.\n3) Read a note (get)\n# By folder + title\nnode skills/mac-notes-agent/cli.js get \\\n  --folder \"Jarvis\" \\\n  --title \"Meeting notes\"\n\n# By synthetic id\nnode skills/mac-notes-agent/cli.js get --id \"Jarvis::2026-02-09T08:40:00::Meeting notes\"\n\n4) Update a note (replace body)\nnode skills/mac-notes-agent/cli.js update \\\n  --folder \"Jarvis\" \\\n  --title \"Meeting notes\" \\\n  --body \"New content\\nReplaces everything\"\n\nReplaces the entire body of the matching note.\nCan also use --id for identification.\n5) Append to a note\nnode skills/mac-notes-agent/cli.js append \\\n  --folder \"Jarvis\" \\\n  --title \"Meeting notes\" \\\n  --body \"\\n---\\nAdditional notes here\"\n\nAppends new content to the end of the existing note.\n6) Delete a note\nnode skills/mac-notes-agent/cli.js delete \\\n  --folder \"Jarvis\" \\\n  --title \"Meeting notes\"\n\n7) Search notes\nnode skills/mac-notes-agent/cli.js search \\\n  --query \"keyword\" \\\n  [--folder \"Jarvis\"] \\\n  [--limit 20]\n\nSearches note titles and bodies for the keyword.\nIdentification Model\n\nApple Notes doesn't expose stable IDs. This CLI uses:\n\nPrimary key: (folderName, title)\nSynthetic ID: folderName::creationDate::title\n\nWhen multiple notes share the same title, the CLI operates on the most recently created one.\n\nEnvironment\nmacOS only: Uses AppleScript via osascript\nNo npm dependencies: Uses only Node.js built-ins (child_process)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/swancho/mac-notes-agent",
    "publisherUrl": "https://clawhub.ai/swancho/mac-notes-agent",
    "owner": "swancho",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}