Skillshub apple-notes-cost-tuning

install
source · Clone the upstream repo
git clone https://github.com/ComeOnOliver/skillshub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/jeremylongshore/claude-code-plugins-plus-skills/apple-notes-cost-tuning" ~/.claude/skills/comeonoliver-skillshub-apple-notes-cost-tuning && rm -rf "$T"
manifest: skills/jeremylongshore/claude-code-plugins-plus-skills/apple-notes-cost-tuning/SKILL.md
source content

Apple Notes Cost Tuning

Overview

Apple Notes is free. The only cost is iCloud storage, which is shared across all Apple services.

iCloud Storage Tiers

PlanStoragePrice/moNotes Capacity
Free5 GB$0~50,000 text notes
iCloud+ 50GB50 GB$0.99Effectively unlimited
iCloud+ 200GB200 GB$2.99Effectively unlimited
iCloud+ 2TB2 TB$9.99Effectively unlimited

Storage Optimization

# 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\");
"

Resources