From apple-notes-pack
Analyzes Apple Notes storage usage for iCloud cost optimization: counts notes, estimates text size, lists large notes (>100KB) via osascript scripts.
How this skill is triggered — by the user, by Claude, or both
Slash command
/apple-notes-pack:apple-notes-cost-tuningThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Apple Notes is free. The only cost is iCloud storage, which is shared across all Apple services.
Apple Notes is free. The only cost is iCloud storage, which is shared across all Apple services.
| Plan | Storage | Price/mo | Notes Capacity |
|---|---|---|---|
| Free | 5 GB | $0 | ~50,000 text notes |
| iCloud+ 50GB | 50 GB | $0.99 | Effectively unlimited |
| iCloud+ 200GB | 200 GB | $2.99 | Effectively unlimited |
| iCloud+ 2TB | 2 TB | $9.99 | Effectively unlimited |
# Check Notes storage usage
osascript -l JavaScript -e "
const Notes = Application(\"Notes\");
const notes = Notes.defaultAccount.notes();
let totalChars = 0;
notes.forEach(n => { totalChars += n.body().length; });
\`${notes.length} notes, ~${Math.round(totalChars / 1024)}KB of text content\`;
"
# Large notes (>100KB body — usually have embedded images)
osascript -l JavaScript -e "
const Notes = Application(\"Notes\");
Notes.defaultAccount.notes()
.filter(n => n.body().length > 100000)
.map(n => \`\${n.name()} (${Math.round(n.body().length/1024)}KB)\`)
.join(\"\\n\");
"
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin apple-notes-packOptimizes Apple Notes automation performance for large collections using SQLite caching, incremental sync, result limiting, and JXA/bash strategies.
Searches and discovers connections across Apple Notes via an MCP server. Use for recall, synthesis, or surfacing non-obvious links between notes.
Manages Apple Notes on macOS: create, search, read, update, delete and organize notes and folders via natural language commands.