agentsclimarketplace

Apple notes cost tuning

Skill ComeOnOliver/skillshub/skills/jeremylongshore/claude-code-plugins-plus-skills/apple-notes-cost-tuning

🧠 The right skill, one API call. AI agent skills registry with token-efficient skill resolution. 5,000+ skills from 500+ top repos.

Install
npx -y skills add ComeOnOliver/skillshub --skill apple-notes-cost-tuning

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

Apple Notes cost optimization — it is free, focus on iCloud storage management. Trigger: "apple notes cost".

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.7 KB, as published. Nobody here has run it

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

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.