onenote
Installation
SKILL.md
OneNote
Overview
This skill helps AI agents integrate with Microsoft OneNote via the Graph API. It covers creating and managing notebooks, sections, and pages, generating rich page content with HTML, extracting text and images, and searching across notes.
Instructions
Authentication
// Same Azure AD app as other Microsoft 365 services
// Permissions needed:
// Notes.ReadWrite — read/write user's notebooks
// Notes.ReadWrite.All — access all notebooks (admin)
// Notes.Create — create only
import { Client } from '@microsoft/microsoft-graph-client';
// ... same auth setup as other Graph API skills
Related skills