> apple-notes-rate-limits

Handle Apple Notes automation rate limits and iCloud sync throttling. Trigger: "apple notes rate limit".

fetch
$curl "https://skillshub.wtf/jeremylongshore/claude-code-plugins-plus-skills/apple-notes-rate-limits?format=md"
SKILL.mdapple-notes-rate-limits

Apple Notes Rate Limits

Overview

Apple Notes does not have API rate limits, but iCloud sync and AppleEvent processing create practical throughput limits.

Practical Limits

OperationSafe RateNotes
Create note1/secondiCloud sync buffer
Read note10/secondLocal operation
Search notes2/secondFull-text scan
Move note1/secondTriggers sync
Delete note1/secondTriggers sync
Batch (100 notes)~2 minutesWith 1s delays

Throttled Operations

import { execSync } from "child_process";

async function throttledNoteOps(operations: Array<() => void>, delayMs = 1000) {
  for (const op of operations) {
    op();
    await new Promise(r => setTimeout(r, delayMs));
  }
}

Resources

┌ stats

installs/wk0
░░░░░░░░░░
github stars1.7K
██████████
first seenMar 23, 2026
└────────────

┌ repo

jeremylongshore/claude-code-plugins-plus-skills
by jeremylongshore
└────────────