From apple-notes-pack
Provides production checklist for Apple Notes automation deployments on macOS, covering permissions, iCloud sync, throttling, and bash/osascript validation script.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin apple-notes-packThis skill is limited to using the following tools:
- [ ] macOS automation permissions granted and tested
Sets up macOS permissions for Apple Notes automation with AppleScript, JXA, osascript, and Shortcuts. Includes access tests, CLI wrapper script, and Shortcuts verification.
Manages Apple Notes on macOS via memo CLI: create, view, edit, delete, search, move, export notes. For terminal-based note CRUD and organization.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Share bugs, ideas, or general feedback.
#!/bin/bash
echo "=== Apple Notes Readiness ==="
echo -n "[$(pgrep -x Notes > /dev/null && echo PASS || echo FAIL)] Notes.app running"
echo ""
echo -n "[$(osascript -l JavaScript -e "Application(\"Notes\").defaultAccount.notes.length" 2>/dev/null && echo PASS || echo FAIL)] Notes accessible"
echo ""
echo -n "[$(sw_vers -productVersion | grep -q "^1[3-9]" && echo PASS || echo WARN)] macOS 13+"
echo ""
echo "=== Done ==="