agentsclimarketplace

Pptx

Skill axoviq-ai/synthadoc/synthadoc/skills/pptx

Extract text from Microsoft PowerPoint presentationsFrom its SKILL.md

Install
npx -y skills add axoviq-ai/synthadoc --skill pptx

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • runs commandsInstructs the agent to run 1 command, including `pip install python-pptx`.

What its file declares

Copied from the file, not written here

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, 176 tokens by cl100k_base, 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

What ships with it: 3 files

1.9 KB alongside SKILL.md, 2 of them executable

scripts/

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.