Agent skill
apple-notes-cost-tuning
Apple Notes cost optimization — it is free, focus on iCloud storage management. Trigger: "apple notes cost".
Install this agent skill to your Project
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/apple-notes-pack/skills/apple-notes-cost-tuning
SKILL.md
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
| 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 |
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
Dockerfile Generator - Auto-activating skill for DevOps Basics. Triggers on: dockerfile generator, dockerfile generator Part of the DevOps Basics skill category.
branch-naming-helper
Branch Naming Helper - Auto-activating skill for DevOps Basics. Triggers on: branch naming helper, branch naming helper Part of the DevOps Basics skill category.
readme-generator
Readme Generator - Auto-activating skill for DevOps Basics. Triggers on: readme generator, readme generator Part of the DevOps Basics skill category.
makefile-generator
Makefile Generator - Auto-activating skill for DevOps Basics. Triggers on: makefile generator, makefile generator Part of the DevOps Basics skill category.
gitignore-generator
Gitignore Generator - Auto-activating skill for DevOps Basics. Triggers on: gitignore generator, gitignore generator Part of the DevOps Basics skill category.
pre-commit-hook-setup
Pre Commit Hook Setup - Auto-activating skill for DevOps Basics. Triggers on: pre commit hook setup, pre commit hook setup Part of the DevOps Basics skill category.
Didn't find tool you were looking for?