Pptx
Synthadoc: An open-source LLM knowledge compilation engine that turns raw documents into structured, local-first wikis. A transparent, human-readable alternative to traditional RAG, which can be self-managed and self-improved without the use of any tools.
npx -y skills add axoviq-ai/synthadoc --skill pptxAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Extract text from Microsoft PowerPoint presentations
The file declares its own license as AGPL-3.0-or-later. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.0 KB, as published. Nobody here has run it
PPTX Skill
Extracts text from .pptx files using python-pptx. Each slide is rendered
as a titled section; speaker notes are appended when present.
Setup
pip install python-pptx
Standalone usage
import asyncio
from synthadoc.skills.pptx.scripts.main import PptxSkill
skill = PptxSkill()
async def main():
result = await skill.extract("/path/to/slides.pptx")
print(result.text) # slide titles + body text + speaker notes
print(result.metadata) # {"slides": N}
asyncio.run(main())
When this skill is used
- Source path ends with
.pptx - User intent contains:
powerpoint,presentation,pptx