Install
$ agentstack add skill-luccapinto-agentic-data-kit-generating-pptx ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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_textbox→text_frame→ paragraphs/runs (font, size, color, bold). - Shapes / KPI cards via
add_shape(MSO_SHAPE.ROUNDED_RECTANGLE, ...)with fill + text. - Brand: set
RGBColorfrom yourDESIGN.mdtokens; 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.
- Author: luccapinto
- Source: luccapinto/agentic-data-kit
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.