Install
$ agentstack add skill-junfengran-pptwork-ppt-html-authoring ✓ 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
Single-page PPT authoring
Given:
- A target slide directory (typically
.pptwork///) - One outline entry (
pageType,assetId, key content, source, transition) - The deck
exportMode(rasteroreditable)
Produce:
design.md— frontmattertitle+layout, then## Content/## Note
/ ## Design (all three sections must be non-empty)
slide.html— single-file self-contained, with the## Notetext mirrored
into a `` island
Out of scope: cross-page planning (use the ppt skill's story-planning phase), screenshots and visual QC (use the ppt skill's screenshot.mjs + visual-qc reference), exporting (use export.mjs), web search (use the host app's webfetch / websearch).
File contract
design.md
- frontmatter:
title(required)layout(required, short English identifier matching the layout you used)- body, three sections, all non-empty:
## Content— page copy in human language: a **conclusion-form
complete-sentence title** plus supporting bullets / short paragraphs.
## Note— speaker notes in natural prose (not bullets).## Design— visual / engineering notes: layout choice rationale,
transition from previous page, data source, TBD markers.
- No empty placeholders. "This is an introduction page" is not acceptable.
- Detailed schema → [
references/design-md-spec.md](references/design-md-spec.md)
slide.html
- Must be single-file self-contained: CSS in `
, JS in`. - Images: inline base64 or https CDN. Local relative paths
(`, ) are forbidden — they break in ` previews and in the static-server-based renderer unless the sidecar files happen to land next to the HTML.
- Fonts, chart.js, d3 etc.: load from https CDN.
- Mirror
## Notecontent into a
… node. This is the only way speaker notes land in the exported PPTX.
- For the slide to render at the correct PowerPoint canvas size, set
html, body { width: 1280px; height: 720px; overflow: hidden; }.
- Hard rules and common pitfalls →
[references/slide-html-rules.md](references/slide-html-rules.md) (must read).
- If
exportMode=editable, also follow
[references/editable-html-rules.md](references/editable-html-rules.md).
Workflow
1. Read context
Outline entry (pageType / assetId / key content / source / transition) + the existing slide skeleton (design.md is an empty template, slide.html may only have ` head/tail) + exportMode`.
2. Look up the layout (assets contract)
If the outline names an assetId, look it up under the sister ppt skill's ../ppt/assets//index.json and read the matching descriptor:
| Read | For | |---|---| | index.json entry's htmlPath | Find the HTML reference path | | index.json entry's materialDir / zones / authoringHints | Understand the layout's slot composition | | Resolved html/.html | Borrow composition (version safe area, columns, hierarchy) | | specs/.json zones | Get structured per-slot descriptions (optional) |
Default buckets live in the sister ppt skill at ../ppt/assets/corporate-light/ and ../ppt/assets/claude-warm/ (5 layouts each). Read index.json + the matching html/.html when the outline names an assetId. If no bucket is configured, skip this step and write slide.html from scratch using references/slide-html-rules.md and references/ppt-best-practices.md as your composition guide.
Do not pick the assetId yourself — that's a story-planning decision, the outline already names it (or explicitly says "no preset, design from scratch").
3. Don't copy the template HTML wholesale
Borrow only the composition (version safe area, columns, hierarchy, slot positions). Replace all placeholder copy ("Acme Corp", "2024 Q3 revenue", "scene illustration", etc.) with the page's real content. Placeholder bleed into a finished deck is one of the most common authoring failures.
4. Write design.md first
In the order Content → Note → Design:
## Content: conclusion-form complete-sentence title (not a noun
phrase) + supporting bullets / short paragraphs.
## Note: speaker notes, natural prose, not bullets.## Design: layout choice rationale, transition cue, data source,TBD
markers.
5. Then write slide.html
Drive the HTML from the Content section. Whenever the data fits, prefer visuals over plain text:
- Trends / proportions / comparisons → Chart.js (see
[references/diagram-and-chart.md](references/diagram-and-chart.md)).
- Flow / architecture / system boundary → inline SVG.
- Decorative imagery → base64 inline; for large images (>2MB) compress
or use a remote CDN.
- Icons → use a remote https SVG icon library (Heroicons, Lucide, Feather,
Tabler, etc.) or paste a single inline SVG.
If exportMode=editable, write the HTML as PowerPoint-native objects: real text nodes for important copy, simple solid-fill shapes for cards, real tables, extractable Chart.js data, and separated background decoration. Do not place important text inside SVG/canvas/images/pseudo-elements.
6. Sync Note into the HTML
Mirror the ## Note text into the … island. This is the only path for speaker notes to land in the exported PPTX.
7. Need an external fact?
If a single page is missing one number / fact / citation / competitor data point:
- Use the host app's built-in webfetch / websearch tool. This skill ships
no web tool of its own.
- Append findings to
.pptwork//materials/research.md(so they
don't pollute the main context across slides).
- Cite the fact in
## Designassource: research.md §. - Do not fabricate numbers.
8. Self-check
- Any `
/` relative paths? Convert
to base64 or remote https.
- Note section synced into the HTML?
data-id/data-roleattributes stable enough to support later
edit / patch style touch-ups?
References (read on demand)
| Doing | Read | |---|---| | Writing design.md | [references/design-md-spec.md](references/design-md-spec.md) | | Writing / editing slide.html | [references/slide-html-rules.md](references/slide-html-rules.md) (required) | | Writing / rewriting editable deck HTML | [references/editable-html-rules.md](references/editable-html-rules.md) | | Adding charts, inline SVG, diagrams | [references/diagram-and-chart.md](references/diagram-and-chart.md) | | Typography, font sizes, alignment, visual focus | [references/ppt-best-practices.md](references/ppt-best-practices.md) |
Decision rules
- User says "tweak a sentence" → use
edit/patchto mutate the
matching data-id node, keep the outer structure intact.
- User says "rework the layout" → rewrite the whole
slide.html, but
keep design.md's narrative intact.
- Existing raster / complex HTML deck now needs editable output → rewrite
each page with a language model according to editable-html-rules.md; do not rely on a pure rule-based converter.
- Content is fundamentally about ratio / trend / comparison → **lead with
a chart**, don't list raw numbers.
- Content is fundamentally about flow / architecture / boundary → **lead
with inline SVG**, don't pile up paragraphs.
- A background / brand image is required → base64 inline; for large
images (>2MB) compress first or use a remote CDN.
- Data is missing → use the host's webfetch/websearch, do not invent
numbers.
Common pitfalls
- Leaving template placeholder copy in the finished page ("Acme Corp Case"
in an unrelated deck).
- Data page that's just "numbers + a paragraph" with no chart.
image-slotleft with a "scene illustration" placeholder — the
thumbnail will look empty.
- `` relative path — the iframe preview
breaks.
- Forgot to mirror Note into
#ppt-speaker-notes-json— exported PPTX has
empty speaker notes.
- Title written as a noun phrase ("AI Agent market") instead of a
conclusion sentence.
- Faked a number instead of running a quick fetch / asking the user.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: JunfengRan
- Source: JunfengRan/PPTWork
- 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.