Apple notes rate limits
🧠The right skill, one API call. AI agent skills registry with token-efficient skill resolution. 5,000+ skills from 500+ top repos.
npx -y skills add ComeOnOliver/skillshub --skill apple-notes-rate-limitsAssembled 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
Handle Apple Notes automation rate limits and iCloud sync throttling. Trigger: "apple notes rate limit".
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.4 KB, as published. Nobody here has run it
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
| Operation | Safe Rate | Notes |
|---|---|---|
| Create note | 1/second | iCloud sync buffer |
| Read note | 10/second | Local operation |
| Search notes | 2/second | Full-text scan |
| Move note | 1/second | Triggers sync |
| Delete note | 1/second | Triggers sync |
| Batch (100 notes) | ~2 minutes | With 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));
}
}