OneNote SDK Patterns Overview Production-grade patterns for the OneNote Graph API. The two biggest production issues are rate limits (600 requests per 60 seconds per user, 10,000 per 10 minutes per tenant) and silent upload failures where files 4MB return 200 OK with an empty response body — the page is never created but no error is raised. This skill provides middleware chains, retry decorators, batch request patterns, and silent failure detection for both TypeScript and Python. Prerequisites - Completed — working Graph API authentication - Understanding of async/await patterns in your targe…