npx skills add https://github.com/jyoung105/future-slide --skill gpt-slide-promptInstala esta habilidad con la CLI y comienza a usar el flujo de trabajo SKILL.md en tu espacio de trabajo.
Navigation: Workflow | Examples |
Install | License

A reusable skill bundle for turning:
into a disciplined four-stage slide-generation workflow:
DESIGN.md from the reference slide imageThis bundle is intentionally modeled after the reason gpt-taste exists in the taste-skill repo: not to add more decoration, but to add stricter enforcement, stronger anti-default rules, and mandatory pre-flight structure so GPT-class models do not skip steps or collapse into generic output.
A single prompt often fails in predictable ways:
So this bundle separates responsibilities:
gpt-slide-design → extract a reusable DESIGN.mdgpt-slide-plan → decide deck logic, ordering, and persuasiongpt-slide-prompt → convert that plan into detailed page promptsgpt-slide-generate → generate slide images sequentially and save them with page-number filenamesUse the skills in this exact sequence:
gpt-slide-designInputs:
Output:
DESIGN.md focused on presentation design, not slide contentgpt-slide-planInputs:
DESIGN.mdOutput:
gpt-slide-promptInputs:
DESIGN.mdOutput:
gpt-slide-generateInputs:
DESIGN.mdslide_prompts.jsonOutput:
page_1.pngpage_2.pngpage_3.pngThis step is intentionally separate so generation can:
Below are concrete example prompts based on the actual way these skills were used for the Samsung Biologics / Hana Securities workflow.
gpt-slide-designUse when you have a reference slide image or reference deck image and want to extract a reusable design system.
Example:
$gpt-slide-design [Image #1]
More explicit example:
$gpt-slide-design
Extract the design theme from this reference slide image.
Focus on official DESIGN.md output with layout placement, header/body/footer flow,
title page / body page / end page flow, icon usage, infographic cards, and diagram behavior.
gpt-slide-planUse when you already have DESIGN.md and want to build the storyline and slide sequence from files plus user intent.
Example:
$gpt-slide-plan /Users/tonylee/Downloads/하나증권 _보고서.pdf
Write the analysis slide for 'Samsung Biologics' in Korean based on report pdf file.
Expanded full-deck example:
$gpt-slide-plan /Users/tonylee/Downloads/하나증권 _보고서.pdf
Create a more detailed full deck in Korean from this equity research report.
Keep the structure analytical and report-native.
Plan title page, body pages, end page, and appendix/disclosure flow.
gpt-slide-promptUse after planning is complete and you want detailed page-level prompt JSON for slide generation.
Minimal example:
$gpt-slide-prompt
More explicit example:
$gpt-slide-prompt
Use the current DESIGN.md and slide_plan.json.
Generate strict page-by-page prompt JSON with explicit header/body/footer zoning,
table/chart/card hierarchy, icon rules, and anti-generic constraints.
gpt-slide-generateUse after slide_prompts.json exists and you want actual slide images rendered sequentially.
Minimal example:
$gpt-slide-generate
More explicit example:
$gpt-slide-generate
Based on @slide_prompts.json, create all slide images 1 by 1 and save them
with the page_number naming rule.
Full-deck example:
$gpt-slide-generate
Use DESIGN.md and slide_prompts.json.
Render the full deck sequentially and save:
page_1.png ... page_N.png
Typical sequence:
$gpt-slide-design [reference slide image]
$gpt-slide-plan /path/to/report.pdf Create a full Korean research-summary deck.
$gpt-slide-prompt
$gpt-slide-generate
This bundle includes:
skills/gpt-slide-design/SKILL.mdskills/gpt-slide-plan/SKILL.mdskills/gpt-slide-prompt/SKILL.mdskills/gpt-slide-generate/SKILL.mdtemplates/DESIGN_TEMPLATE.mdgpt-slide-designgpt-slide-plangpt-slide-promptgpt-slide-generateDESIGN.md and prompt JSONFor a full run, the typical artifact chain is:
DESIGN.mdslide_plan.jsonslide_prompts.jsonpage_1.png ... page_N.pngnpx skillsUse the Skills CLI from a terminal with Node.js 18+:
npx skills add jyoung105/future-slide
You can also use the repository URL:
npx skills add https://github.com/jyoung105/future-slide.git
Restart Codex after installation so the new skills are discovered.
.codexDownload or clone this repository, then copy the skill folders into your
Codex skills directory:
mkdir -p ~/.codex/skills
cp -R skills/gpt-slide-design ~/.codex/skills/
cp -R skills/gpt-slide-plan ~/.codex/skills/
cp -R skills/gpt-slide-prompt ~/.codex/skills/
cp -R skills/gpt-slide-generate ~/.codex/skills/
For project-local installation, copy the same folders into:
.codex/skills/
Codex discovers skills from folders that contain SKILL.md, so each copied
folder must keep its SKILL.md at the folder root.
Future Slide Skill is released under the Apache License 2.0.