PPTX Skill

SkillDocs & knowledge

Extract text from Microsoft PowerPoint presentations

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the PPTX Skill skill

What this skill tells your AI

The instructions your AI receives, as published by axoviq-ai/synthadoc in synthadoc/skills/pptx/SKILL.md and read by ahel’s review.

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

Signals

GitHub stars
1k
Forks
123
Last commit
Sep 2026
Hacker News mentions
13
Advanced
Catalog kind
skill
Gateway key
pptx-axoviq-ai
Source
github.com/axoviq-ai/synthadoc