---
name: Pptx
slug: pptx-3
category: Automation
description: Pptx extracts text from .pptx presentations using python-pptx. Use it to turn slide titles, body text, and speaker notes into plain text.
github: "https://github.com/axoviq-ai/synthadoc/tree/main/synthadoc/skills/pptx"
language: Python
stars: 1012
forks: 122
install: "npx degit https://github.com/axoviq-ai/synthadoc/tree/main/synthadoc/skills/pptx ~/.claude/skills/pptx"
installs_to: ~/.claude/skills/pptx
source_path: synthadoc/skills/pptx/SKILL.md
collection_size: 10
category_size: 1523
collection_url: "https://dirskills.com/collections/axoviq-ai/synthadoc"
added: 2026-08-21T05:14:32.128Z
last_synced: 2026-08-21T05:14:32.128Z
canonical_url: "https://dirskills.com/skills/pptx-3"
---

# Pptx

Pptx extracts text from .pptx presentations using python-pptx. Use it to turn slide titles, body text, and speaker notes into plain text.

**Install:**

```bash
npx degit https://github.com/axoviq-ai/synthadoc/tree/main/synthadoc/skills/pptx ~/.claude/skills/pptx
```

## README

# 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

```bash
pip install python-pptx
```

## Standalone usage

```python
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`
