AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Pptx

skill-rylaispirit-rylai-codex-hermes-skills-pptx · by Rylaispirit

Create, inspect, extract, edit, and render PowerPoint presentations with python-pptx and optional LibreOffice. Use whenever Codex or Hermes must read, produce, revise, or verify a .pptx deck.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-rylaispirit-rylai-codex-hermes-skills-pptx

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-rylaispirit-rylai-codex-hermes-skills-pptx)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Pptx? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Rylai PPTX

Original Codex-Hermes skill by Rylai.

Build presentations from local content with python-pptx. Use LibreOffice only for optional PDF rendering. Do not hotlink images, fetch remote templates, or overwrite the source deck unless the user explicitly requests it.

Runtime

Probe before installing:

python -c "import pptx; print(pptx.__version__)"

Install only when missing:

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

Resolve `scripts/rylai_pptx.py` relative to this skill directory.

## Workflow

1. Confirm the audience, purpose, source material, output path, and approximate slide count.
2. Inspect an existing deck before editing it.
3. Create a compact JSON content specification when building from scratch.
4. Use only local image paths. Treat URLs as invalid input.
5. Generate the deck, then inspect slide titles and extracted text.
6. When LibreOffice is available, render to PDF and visually check representative slides.
7. Check that text fits, images are legible, and the deck has a consistent hierarchy.

For an existing deck, write a task-specific `python-pptx` edit script in the workspace. Keep the
original file, preserve untouched slides, and save the revision to a new path.

## JSON Build Forma

```json
{
  "title": "Project Review",
  "subtitle": "Decisions and next steps",
  "slides": [
    {
      "title": "Current state",
      "bullets": ["What is working", "What needs attention"]
    },
    {
      "title": "Evidence",
      "bullets": ["Metric one", "Metric two"],
      "image": "local-chart.png"
    }
  ]
}

The `image` field is optional and must point to a local file. Relative image paths are resolved
from the JSON file location.

## Bundled CLI

Build:

```bash
python scripts/rylai_pptx.py build deck.json output.pptx

Inspect structure:

```bash
python scripts/rylai_pptx.py inspect output.pptx

Extract text as Markdown:

```bash
python scripts/rylai_pptx.py extract output.pptx output.md

Render to PDF with LibreOffice:

```bash
python scripts/rylai_pptx.py render output.pptx rendered

Use `--force` only when replacing an existing output is intended.

## Quality Bar

- The PPTX reopens successfully and contains the expected slide count.
- Titles, body text, and slide order match the approved content.
- No text is clipped or placed outside slide bounds.
- Images come from local, attributable files and remain readable at presentation size.
- Rendered output contains no blank or broken slides.
- No source deck, user path, remote asset, or temporary test artifact is bundled with the skill.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [Rylaispirit](https://github.com/Rylaispirit)
- **Source:** [Rylaispirit/rylai-codex-hermes-skills](https://github.com/Rylaispirit/rylai-codex-hermes-skills)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.