> apple-notes-cost-tuning
Apple Notes cost optimization — it is free, focus on iCloud storage management. Trigger: "apple notes cost".
curl "https://skillshub.wtf/jeremylongshore/claude-code-plugins-plus-skills/apple-notes-cost-tuning?format=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
> related_skills --same-repo
> fathom-cost-tuning
Optimize Fathom API usage and plan selection. Trigger with phrases like "fathom cost", "fathom pricing", "fathom plan".
> fathom-core-workflow-b
Sync Fathom meeting data to CRM and build automated follow-up workflows. Use when integrating Fathom with Salesforce, HubSpot, or custom CRMs, or creating automated post-meeting email summaries. Trigger with phrases like "fathom crm sync", "fathom salesforce", "fathom follow-up", "fathom post-meeting workflow".
> fathom-core-workflow-a
Build a meeting analytics pipeline with Fathom transcripts and summaries. Use when extracting insights from meetings, building CRM sync, or creating automated meeting follow-up workflows. Trigger with phrases like "fathom analytics", "fathom meeting pipeline", "fathom transcript analysis", "fathom action items sync".
> fathom-common-errors
Diagnose and fix Fathom API errors including auth failures and missing data. Use when API calls fail, transcripts are empty, or webhooks are not firing. Trigger with phrases like "fathom error", "fathom not working", "fathom api failure", "fix fathom".