sharepoint
v0.1.3Work with SharePoint using the configured Microsoft SharePoint app connector.
by OpenAIMIT5kupdated 3 weeks ago
Source
git clone https://github.com/openai/pluginsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/sharepoint/ inside the repository.
Layout
├── .codex-plugin/plugin.json├── skills/sharepoint/SKILL.md├── skills/sharepoint-powerpoint/SKILL.md├── skills/sharepoint-shared-doc-maintenance/SKILL.md├── skills/sharepoint-site-discovery/SKILL.md├── skills/sharepoint-spreadsheet-formula-builder/SKILL.md├── skills/sharepoint-spreadsheets/SKILL.md└── skills/sharepoint-word-docs/SKILL.md
Skills7
Inspect Microsoft SharePoint context, discover the right site or library, and prepare safe changes. Use when the user wants site, page, or file review, ownership and status extraction, or change planning before editing content, navigation, or information architecture.
Create, edit, restyle, and review PowerPoint `.pptx` files fetched from SharePoint, with emphasis on style preservation, slide cloning, theme-aware updates, and rendered visual QA. Use when the user wants reliable slide edits that should match an existing deck's design language.
Maintain shared SharePoint strategy, roadmap, planning, or status documents from changing source documents. Use when the user wants cross-document synthesis, source-of-truth propagation, or targeted updates to a maintained shared document.
Resolve the right SharePoint site, library, and folder before file work. Use when the user needs to find the right site context, browse a known site, inspect document libraries, or narrow the correct folder before fetching or editing a file.
Design, repair, and roll out formulas in SharePoint-hosted workbooks with connector-aware retrieval, validation, and upload discipline. Use when the user wants to add a formula column, fix a broken formula, choose between a fill-down formula and a spill formula, build a lookup or filter formula, or reuse workbook logic safely.
Edit SharePoint-hosted spreadsheet files while preserving workbook structure, formulas, and formatting. Use when the user wants to update a real spreadsheet in SharePoint rather than summarize extracted sheet text.
Edit SharePoint-hosted Word `.docx` files while preserving document structure and styling. Use when the user wants to update a real Word document in SharePoint rather than summarize it as plain text.
Manifests1
{
"name": "sharepoint",
"version": "0.1.3",
"description": "Work with SharePoint using the configured Microsoft SharePoint app connector.",
"author": {
"name": "OpenAI",
"email": "support@openai.com",
"url": "https://openai.com/"
},
"homepage": "https://www.microsoft.com/en-us/microsoft-365/sharepoint/collaboration",
"repository": "https://github.com/openai/plugins",
"license": "MIT",
"keywords": [
"sharepoint",
"documents",
"microsoft"
],
"skills": "./skills/",
"apps": "./.app.json",
"interface": {
"displayName": "SharePoint",
"shortDescription": "Summarize SharePoint sites and files",
"longDescription": "Use SharePoint to summarize sites, pages, and files, extract owners and status, and plan safe content updates through the connected Microsoft SharePoint app.",
"developerName": "OpenAI",
"category": "Productivity",
"capabilities": [
"Interactive",
"Write"
],
"websiteURL": "https://www.microsoft.com/en-us/microsoft-365/sharepoint/collaboration",
"privacyPolicyURL": "https://www.microsoft.com/en-us/privacy/privacystatement",
"termsOfServiceURL": "https://www.microsoft.com/en-us/servicesagreement/",
"defaultPrompt": [
"Summarize a SharePoint site or file, identify owners and status, or plan a safe update across documents, spreadsheets, or decks"
],
"brandColor": "#038387",
"composerIcon": "./assets/logo.png",
"logo": "./assets/logo.png",
"screenshots": []
}
}