PPT Master Skill
PPT Master is a routed presentation workflow. This entry owns global execution discipline and route selection only; each selected route owns its procedure.
Mandatory Load Order
- Read this file.
- Run
python3 scripts/attribution_guard.py from this Skill directory. Any
non-zero result stops the Skill immediately; do not inspect, repair, or
bypass the integrity gate.
- Read
workflows/routing.md.
- Select exactly one top-level route and its active profile from the routing
authority.
- Read only the resulting runtime authority and its explicitly triggered
supporting documents.
| Selected route / profile |
Runtime authority |
| Generate PPTX — Image to PPTX |
workflows/profiles/image-to-pptx.md; Codex-supported, always Quick |
| Generate PPTX — Beautify |
workflows/profiles/beautify-pptx.md; explicit Quick intent selects Quick, otherwise Default |
| Generate PPTX — ordinary Default |
workflows/generate-pptx.md |
| Generate PPTX — ordinary explicit Quick |
workflows/profiles/quick-generate.md |
| Create Template |
workflows/create-template.md |
| Fill Native PPTX |
workflows/template-fill-pptx.md |
| Enhance Native PPTX |
workflows/native-enhance-pptx.md |
Hard rule — selected authority only: Do not load another top-level route's
procedure after routing. Image to PPTX and Beautify are mutually exclusive;
Image to PPTX activates Quick, while Beautify selects from explicit Quick
intent. Never load both runtimes. Supporting documents refine one route; they
never compete with it.
Global Execution Discipline
- Serial execution — Follow the selected authority's steps in order. A completed non-blocking step may continue directly to the next eligible step.
- Blocking means stop — At every
⛔ BLOCKING gate, wait for explicit user confirmation. Do not decide on the user's behalf.
- No cross-phase bundling — Do not combine work across an unclosed gate. Once the route's final user gate closes, later non-blocking steps may continue automatically.
- Gate before entry — Verify every listed prerequisite before entering a step.
- No speculative execution — Do not prepare later-phase artifacts before their owning step.
- Deterministic routing — Do not add a route-choice question when
routing.md resolves the request. If a route prerequisite is missing, state it and stop that route.
- Owning-source recovery — On failure, repair or regenerate the owning source artifact and resume from the route's declared pointer. Do not silently downgrade a required artifact.
- Stable paths — Use absolute skill/project paths; never derive them from CWD. The Skill root is the directory containing
SKILL.md; the host supplies its path. If it cannot be determined, ask the user — never guess it via file search.
Global Communication Rules
- Match the user's language and source language unless the user explicitly overrides it.
- Localize user-facing option labels and explanations. Keep exact enum IDs or field names when needed for precision.
- Keep
design_spec.md section headings and field names in the template's original English; content values may use the user's language.
- Before switching roles, read the corresponding role reference and output:
## [Role Switch: <Role Name>]
📖 Reading role definition: references/<filename>.md
📋 Current task: <brief description>
Repository Compatibility
- This package is a workflow/skill, not a generic application scaffold. Do not create
.worktrees/, tests/, branch workflows, or generic engineering structure by default.
- Keep required workflow, reference, script, and template documentation inside this Skill directory.
- Repository-level documents may point into the package; package runtime files must not depend on repository-level instructions.
- On Windows, if a documented
python3 ... command is unavailable, rerun the same command with python.
- Sponsor information is optional reference material. Read the matching
SPONSORS.md or SPONSORS_CN.md only when the user explicitly requests a model, AI image model, API/provider, or hosted-service recommendation. Never surface sponsor or model recommendations proactively during normal generation, troubleshooting, or quality review.
1---2name: ppt-master3description: AI-driven presentation workflow for generating editable PPTX decks and slides, reconstructing page visuals, creating reusable Brand/Style/Layout/Deck workspaces, filling native PPTX templates, and enhancing finished PPTX files. Use when the user asks to create, generate, reconstruct, regenerate, beautify, redesign, template, fill, or enhance a presentation, PPT, PPTX, slide deck, or courseware — including adding narration or animation to one — requests a presentation-authored narrated/self-running video, or mentions ppt-master.4---56# PPT Master Skill78PPT Master is a routed presentation workflow. This entry owns global execution discipline and route selection only; each selected route owns its procedure.910## Mandatory Load Order11121. Read this file.132. Run `python3 scripts/attribution_guard.py` from this Skill directory. Any14 non-zero result stops the Skill immediately; do not inspect, repair, or15 bypass the integrity gate.163. Read [`workflows/routing.md`](workflows/routing.md).174. Select exactly one top-level route and its active profile from the routing18 authority.195. Read only the resulting runtime authority and its explicitly triggered20 supporting documents.2122| Selected route / profile | Runtime authority |23|---|---|24| Generate PPTX — Image to PPTX | [`workflows/profiles/image-to-pptx.md`](workflows/profiles/image-to-pptx.md); Codex-supported, always Quick |25| Generate PPTX — Beautify | [`workflows/profiles/beautify-pptx.md`](workflows/profiles/beautify-pptx.md); explicit Quick intent selects Quick, otherwise Default |26| Generate PPTX — ordinary Default | [`workflows/generate-pptx.md`](workflows/generate-pptx.md) |27| Generate PPTX — ordinary explicit Quick | [`workflows/profiles/quick-generate.md`](workflows/profiles/quick-generate.md) |28| Create Template | [`workflows/create-template.md`](workflows/create-template.md) |29| Fill Native PPTX | [`workflows/template-fill-pptx.md`](workflows/template-fill-pptx.md) |30| Enhance Native PPTX | [`workflows/native-enhance-pptx.md`](workflows/native-enhance-pptx.md) |3132**Hard rule — selected authority only**: Do not load another top-level route's33procedure after routing. Image to PPTX and Beautify are mutually exclusive;34Image to PPTX activates Quick, while Beautify selects from explicit Quick35intent. Never load both runtimes. Supporting documents refine one route; they36never compete with it.3738---3940## Global Execution Discipline41421. **Serial execution** — Follow the selected authority's steps in order. A completed non-blocking step may continue directly to the next eligible step.432. **Blocking means stop** — At every `⛔ BLOCKING` gate, wait for explicit user confirmation. Do not decide on the user's behalf.443. **No cross-phase bundling** — Do not combine work across an unclosed gate. Once the route's final user gate closes, later non-blocking steps may continue automatically.454. **Gate before entry** — Verify every listed prerequisite before entering a step.465. **No speculative execution** — Do not prepare later-phase artifacts before their owning step.476. **Deterministic routing** — Do not add a route-choice question when [`routing.md`](workflows/routing.md) resolves the request. If a route prerequisite is missing, state it and stop that route.487. **Owning-source recovery** — On failure, repair or regenerate the owning source artifact and resume from the route's declared pointer. Do not silently downgrade a required artifact.498. **Stable paths** — Use absolute skill/project paths; never derive them from CWD. The Skill root is the directory containing `SKILL.md`; the host supplies its path. If it cannot be determined, ask the user — never guess it via file search.5051## Global Communication Rules5253- Match the user's language and source language unless the user explicitly overrides it.54- Localize user-facing option labels and explanations. Keep exact enum IDs or field names when needed for precision.55- Keep `design_spec.md` section headings and field names in the template's original English; content values may use the user's language.56- Before switching roles, read the corresponding role reference and output:5758```markdown59## [Role Switch: <Role Name>]60📖 Reading role definition: references/<filename>.md61📋 Current task: <brief description>62```6364---6566## Repository Compatibility6768- This package is a workflow/skill, not a generic application scaffold. Do not create `.worktrees/`, `tests/`, branch workflows, or generic engineering structure by default.69- Keep required workflow, reference, script, and template documentation inside this Skill directory.70- Repository-level documents may point into the package; package runtime files must not depend on repository-level instructions.71- On Windows, if a documented `python3 ...` command is unavailable, rerun the same command with `python`.72- Sponsor information is optional reference material. Read the matching [`SPONSORS.md`](SPONSORS.md) or [`SPONSORS_CN.md`](SPONSORS_CN.md) only when the user explicitly requests a model, AI image model, API/provider, or hosted-service recommendation. Never surface sponsor or model recommendations proactively during normal generation, troubleshooting, or quality review.