SharePoint PowerPoint
Overview
Use this skill for .pptx work that starts from SharePoint and where visual fidelity matters. Treat PowerPoint edits as both content edits and design-preservation work. Prefer reusing the deck's own structures over creating generic new slides.
When To Use
- Add, remove, reorder, or rewrite slides in an existing SharePoint-hosted deck.
- Insert title, section, agenda, or summary slides that should match the deck style.
- Update text in existing slides while preserving formatting.
- Inspect layouts, masters, shapes, and theme cues before changing a presentation.
- Render and visually QA slides before uploading the revised deck back to SharePoint when tooling permits.
Core Workflow
- Determine whether the request is content-only or style-sensitive.
- Use the SharePoint skill to locate the exact deck and fetch the raw
.pptx with fetch(download_raw_file=true).
- Inspect the deck before editing:
- slide count and order
- available slide masters and layouts
- placeholder availability
- representative slides for the requested slide type
- shape structure on the representative slide
- Choose the safest edit strategy in this order:
- clone a representative existing slide and edit only the text-bearing shapes
- insert slides from a matching source deck or exported single-slide deck
- use a native layout only when the deck exposes usable layouts and placeholders
- fall back to manual text boxes only as a last resort
- Preserve the existing deck language:
- reuse layout and theme when possible
- preserve geometry, spacing, alignment, and density
- preserve shape hierarchy and non-text objects unless the user asks to change them
- Perform visual QA:
- render the edited slide and adjacent slides if a render path exists
- compare the new slide to its neighbors for background, spacing, hierarchy, and density
- Return to SharePoint only for upload with
update_file after local QA.
- If style fidelity cannot be validated, stop and state that clearly.
Style Rules
- Prefer cloning over creating.
- Prefer targeted text replacement over rebuilding the slide.
- If the deck has only one layout, a
DEFAULT layout, or missing placeholders, assume template constraints.
- Do not treat a content-correct slide as complete until visual consistency has been checked.
- If you must use manual text boxes, inspect a representative slide first and copy:
- text box bounds
- paragraph alignment
- font sizes and weights
- theme colors
- vertical spacing
Tool Guidance
- Use
python-pptx for structural edits and inspection.
- Use
lxml and OOXML-level operations when python-pptx is too weak for safe slide cloning.
- Prefer PowerPoint-native export or LibreOffice-based rendering for visual QA when available.
- If no rendering tool exists, say that verification is content-level only and treat style-sensitive work as blocked unless the user accepts the risk.
Environment Reality
Current local minimum:
Recommended for reliable QA:
- Microsoft PowerPoint native export/rendering
- or LibreOffice plus Poppler for slide-image generation
SharePoint Routing
When a SharePoint task targets a .pptx and style adoption matters:
- Use the SharePoint skill to locate and fetch the file.
- Use this SharePoint PowerPoint skill for the actual edit.
- Return to the SharePoint connector only for upload after local QA.
Blocking Conditions
Stop and report limitations when:
- no clone path exists for a style-sensitive edit
- no render path exists for visual QA
- the deck template is constrained and the only remaining option is a generic low-fidelity slide insertion
Bundled Assets
This plugin does not currently bundle PowerPoint helper scripts.
If local inspection, cloning, or rendering helpers are unavailable, prefer conservative edits and state the gap explicitly rather than implying a script-backed workflow exists.
1---2name: sharepoint-powerpoint3description: 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.4---56# SharePoint PowerPoint78## Overview910Use this skill for `.pptx` work that starts from SharePoint and where visual fidelity matters. Treat PowerPoint edits as both content edits and design-preservation work. Prefer reusing the deck's own structures over creating generic new slides.1112## When To Use1314- Add, remove, reorder, or rewrite slides in an existing SharePoint-hosted deck.15- Insert title, section, agenda, or summary slides that should match the deck style.16- Update text in existing slides while preserving formatting.17- Inspect layouts, masters, shapes, and theme cues before changing a presentation.18- Render and visually QA slides before uploading the revised deck back to SharePoint when tooling permits.1920## Core Workflow21221. Determine whether the request is content-only or style-sensitive.232. Use the SharePoint skill to locate the exact deck and fetch the raw `.pptx` with `fetch(download_raw_file=true)`.243. Inspect the deck before editing:25 - slide count and order26 - available slide masters and layouts27 - placeholder availability28 - representative slides for the requested slide type29 - shape structure on the representative slide304. Choose the safest edit strategy in this order:31 - clone a representative existing slide and edit only the text-bearing shapes32 - insert slides from a matching source deck or exported single-slide deck33 - use a native layout only when the deck exposes usable layouts and placeholders34 - fall back to manual text boxes only as a last resort355. Preserve the existing deck language:36 - reuse layout and theme when possible37 - preserve geometry, spacing, alignment, and density38 - preserve shape hierarchy and non-text objects unless the user asks to change them396. Perform visual QA:40 - render the edited slide and adjacent slides if a render path exists41 - compare the new slide to its neighbors for background, spacing, hierarchy, and density427. Return to SharePoint only for upload with `update_file` after local QA.438. If style fidelity cannot be validated, stop and state that clearly.4445## Style Rules4647- Prefer cloning over creating.48- Prefer targeted text replacement over rebuilding the slide.49- If the deck has only one layout, a `DEFAULT` layout, or missing placeholders, assume template constraints.50- Do not treat a content-correct slide as complete until visual consistency has been checked.51- If you must use manual text boxes, inspect a representative slide first and copy:52 - text box bounds53 - paragraph alignment54 - font sizes and weights55 - theme colors56 - vertical spacing5758## Tool Guidance5960- Use `python-pptx` for structural edits and inspection.61- Use `lxml` and OOXML-level operations when `python-pptx` is too weak for safe slide cloning.62- Prefer PowerPoint-native export or LibreOffice-based rendering for visual QA when available.63- If no rendering tool exists, say that verification is content-level only and treat style-sensitive work as blocked unless the user accepts the risk.6465## Environment Reality6667Current local minimum:6869- `python-pptx`70- `lxml`71- `Pillow`7273Recommended for reliable QA:7475- Microsoft PowerPoint native export/rendering76- or LibreOffice plus Poppler for slide-image generation7778## SharePoint Routing7980When a SharePoint task targets a `.pptx` and style adoption matters:81821. Use the SharePoint skill to locate and fetch the file.832. Use this SharePoint PowerPoint skill for the actual edit.843. Return to the SharePoint connector only for upload after local QA.8586## Blocking Conditions8788Stop and report limitations when:8990- no clone path exists for a style-sensitive edit91- no render path exists for visual QA92- the deck template is constrained and the only remaining option is a generic low-fidelity slide insertion9394## Bundled Assets9596This plugin does not currently bundle PowerPoint helper scripts.9798If local inspection, cloning, or rendering helpers are unavailable, prefer conservative edits and state the gap explicitly rather than implying a script-backed workflow exists.