Add pptx-denote skill to remove all slide notes from a .pptx file#2125
Closed
justinyoo wants to merge 3 commits into
Closed
Add pptx-denote skill to remove all slide notes from a .pptx file#2125justinyoo wants to merge 3 commits into
justinyoo wants to merge 3 commits into
Conversation
17 tasks
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds a new pptx-denote skill to the Awesome GitHub Copilot repository to remove speaker notes from PowerPoint (.pptx) files using the python-pptx library.
Changes:
- Adds
skills/pptx-denote/SKILL.mdto document the skill, prerequisites, and usage. - Adds
skills/pptx-denote/scripts/remove_notes.pyto clear notes text across slides and save a new.pptx. - Updates
docs/README.skills.mdto include the new skill entry in the generated skills index.
Show a summary per file
| File | Description |
|---|---|
| skills/pptx-denote/SKILL.md | New skill definition and usage docs (front matter + how-to). |
| skills/pptx-denote/scripts/remove_notes.py | New Python CLI script implementing the “remove notes” behavior. |
| docs/README.skills.md | Adds the pptx-denote row to the skills listing. |
Copilot's findings
- Files reviewed: 3/3 changed files
- Comments generated: 5
Comment on lines
+2
to
+3
| name: pptx-denote | ||
| description: A skill that allows you to remove all the slide notes in a PowerPoint presentation using the 'python-pptx' library. |
Comment on lines
+4
to
+6
| Usage: | ||
| python remove_notes.py "input.pptx" [output.pptx] | ||
|
|
| | [power-platform-architect](../skills/power-platform-architect/SKILL.md)<br />`gh skills install github/awesome-copilot power-platform-architect` | Use this skill when the user needs to transform business requirements, use case descriptions, or meeting transcripts into a technical Power Platform solution architecture, including component selection and Mermaid.js diagrams. | None | | ||
| | [power-platform-mcp-connector-suite](../skills/power-platform-mcp-connector-suite/SKILL.md)<br />`gh skills install github/awesome-copilot power-platform-mcp-connector-suite` | Generate complete Power Platform custom connector with MCP integration for Copilot Studio - includes schema generation, troubleshooting, and validation | None | | ||
| | [powerbi-modeling](../skills/powerbi-modeling/SKILL.md)<br />`gh skills install github/awesome-copilot powerbi-modeling` | Power BI semantic modeling assistant for building optimized data models. Use when working with Power BI semantic models, creating measures, designing star schemas, configuring relationships, implementing RLS, or optimizing model performance. Triggers on queries about DAX calculations, table relationships, dimension/fact table design, naming conventions, model documentation, cardinality, cross-filter direction, calculation groups, and data model best practices. Always connects to the active model first using power-bi-modeling MCP tools to understand the data structure before providing guidance. | `references/MEASURES-DAX.md`<br />`references/PERFORMANCE.md`<br />`references/RELATIONSHIPS.md`<br />`references/RLS.md`<br />`references/STAR-SCHEMA.md` | | ||
| | [pptx-denote](../skills/pptx-denote/SKILL.md)<br />`gh skills install github/awesome-copilot pptx-denote` | A skill that allows you to remove all the slide notes in a PowerPoint presentation using the library. | `scripts/remove_notes.py` | |
Comment on lines
+11
to
+15
| import sys | ||
| from pathlib import Path | ||
|
|
||
| from pptx import Presentation | ||
|
|
| @@ -0,0 +1,24 @@ | |||
| --- | |||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.stagedbranch for this pull request.Description
Adds a new
pptx-denoteskill that removes all slide notes from a PowerPoint (.pptx) presentation using the open-sourcepython-pptxlibrary.Given an input
.pptxfile, the skill clears the notes text from every slide and writes a new file. When no output path is supplied, it defaults to<input>-denoted.pptx. No paid services are involved.Files added:
skills/pptx-denote/SKILL.mdskills/pptx-denote/scripts/remove_notes.pyValidation:
npm run skill:validate-> all skills valid (includingpptx-denote).npm run build->docs/README.skills.mdregenerated with the new entry.Type of Contribution
Additional Notes
The skill requires
python-pptxto be installed (pip install python-pptx), as documented inSKILL.md.By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.