anotes
v1.1.2
Published
Apple Notes CLI for AI agents
Downloads
388
Maintainers
Readme
anotes — Apple Notes CLI
A command-line interface for managing Apple Notes on macOS. Designed for AI agents as the primary user — all output is structured JSON with Markdown for note body content in both directions.
Prerequisites
- macOS (uses JXA/osascript to talk to Notes.app)
- Node.js 24+
Install
npm install -g anotesUsage
This CLI is intended for AI agents. For the full command reference, run:
anotes --help
anotes note --help
anotes folder --helpAgent Integration
anotes ships with a skill file that teaches an AI agent the full command reference, output formats, and typical workflows. Once loaded, the agent can create, read, edit, search, and organize Apple Notes via bash commands.
Copy the skill into your agent's skills directory so it's available across all your projects:
Claude Code
mkdir -p ~/.claude/skills/anotes && cp "$(npm root -g)/anotes/skill/SKILL.md" ~/.claude/skills/anotes/SKILL.mdCodex
mkdir -p ~/.codex/skills/anotes && cp "$(npm root -g)/anotes/skill/SKILL.md" ~/.codex/skills/anotes/SKILL.md