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

Generating Pptx

skill-luccapinto-agentic-data-kit-generating-pptx · by luccapinto

Use when the user needs an EDITABLE PowerPoint (.pptx) deliverable — "make a PowerPoint", "export to PPTX", "editable slides", "send me a .pptx". Generates native, fully editable PowerPoint (real text boxes, shapes, native charts with embedded data, tables) via python-pptx — not images. Brand colors map from DESIGN.md. For HTML decks/sites/PDF use building-html-presentations instead.

No reviews yet
0 installs
14 views
0.0% view→install

Install

$ agentstack add skill-luccapinto-agentic-data-kit-generating-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-luccapinto-agentic-data-kit-generating-pptx)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
28d 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 Generating Pptx? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill: generating-pptx

Produce a native, editable PowerPoint with python-pptx. Every element is a real PowerPoint object — editable text, shapes, native charts (backed by embedded data you can edit in PowerPoint), and tables. This is the right path when the deliverable must be .pptx and editable; for HTML decks, interactive sites, or designed PDFs use building-html-presentations.

> Why not HTML→PPTX? Exporting an HTML deck to PPTX (e.g. Marp --pptx) embeds each slide as a > flat image — not editable. python-pptx builds the real OOXML, so charts and text stay live.

Setup

pip install python-pptx

Build it

scripts/build_pptx.py is a working generator — a brand-themed sales deck with a title slide, agenda, KPI slide, native charts (clustered column, line, pie), a table slide, and a closing. Run it, then adapt:

python .claude/skills/generating-pptx/scripts/build_pptx.py --out deck.pptx

Adapt by editing the DATA, BRAND, and the build() slide calls — not the helpers.

What python-pptx gives you (the palette)

  • Native charts (editable, with embedded Excel data): COLUMN_CLUSTERED, COLUMN_STACKED,

BAR_CLUSTERED, LINE, LINE_MARKERS, PIE, DOUGHNUT, XY_SCATTER, AREA, RADAR. Use CategoryChartData for category charts and XyChartData for scatter.

  • Tables via slide.shapes.add_table(rows, cols, ...) — style cells, headers, number formats.
  • Text via placeholders or add_textboxtext_frame → paragraphs/runs (font, size, color, bold).
  • Shapes / KPI cards via add_shape(MSO_SHAPE.ROUNDED_RECTANGLE, ...) with fill + text.
  • Brand: set RGBColor from your DESIGN.md tokens; reuse one accent + semantic colors.

Rules

  • Map brand from DESIGN.md — colors, and font name if defined. Keep one accent.
  • Native charts over images — let the user edit data in PowerPoint.
  • Never invent data — use provided numbers; mark placeholders. Add a source line per data slide.
  • 16:9 by default (Inches(13.333) × Inches(7.5)).
  • Action-title style: the slide title states the insight, not just the topic.

Source & license

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

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.