From apple-notes-pack
Deploys Apple Notes automation scripts as macOS launchd services with plist templates, bash load commands, and Node.js example. For local periodic syncs.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin apple-notes-packThis skill is limited to using the following tools:
Apple Notes automation runs locally on macOS only — no cloud deployment possible. Deploy as a launchd service or Automator workflow.
Provides reference architecture for Apple Notes automation on macOS using osascript/JXA from Node.js apps, including project structure, constraints, and workarounds.
Manages Apple Notes on macOS via memo CLI: create, view, edit, delete, search, move, export notes. For terminal-based note CRUD and organization.
Manages Apple Notes on macOS via memo CLI: create, view, edit, delete, search, move notes between folders, and export to HTML/Markdown. Useful for terminal-based note operations.
Share bugs, ideas, or general feedback.
Apple Notes automation runs locally on macOS only — no cloud deployment possible. Deploy as a launchd service or Automator workflow.
<!-- ~/Library/LaunchAgents/com.yourorg.notes-automation.plist -->
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.yourorg.notes-automation</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/node</string>
<string>/Users/you/scripts/notes-sync.js</string>
</array>
<key>StartInterval</key>
<integer>3600</integer>
<key>StandardOutPath</key>
<string>/tmp/notes-automation.log</string>
</dict>
</plist>
# Load the service
launchctl load ~/Library/LaunchAgents/com.yourorg.notes-automation.plist
# Check status
launchctl list | grep notes