notesctl-skill-for-openclawManage Apple Notes via deterministic local scripts (create, append, list, search, export, and edit). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.
Install via ClawdBot CLI:
clawdbot install clinchcc/notesctl-skill-for-openclawMinimize token usage and avoid fragile quoting by routing Apple Notes operations through bundled scripts.
echo '{"title":"Title","body":"Line 1\nLine 2","folder":"Notes"}' | {baseDir}/scripts/notes_post.sh
{baseDir}/scripts/notes_new.sh "Title"
List/search/export
{baseDir}/scripts/notes_list.sh "Notes"
{baseDir}/scripts/notes_search.sh "query" "Notes"
{baseDir}/scripts/notes_export.sh "query" "Notes" "/tmp" # interactive select then export
Output conventions
- Keep receipts short:
Wrote to Notes: .
Notes on editing
Editing existing notes is inherently more fragile:
- Prefer append workflows or create a new note with a reference.
- If the user explicitly wants interactive editing, use
memo notes -e (manual selection + editor).
Body line 1\nBody line 2' "Notes"