| name | codex-slides-ai-presentation |
| description | Create AI-generated slide decks inside Codex with full visual control, parallel rendering, and PPTX/PDF export |
| triggers | ["create a presentation with codex slides","generate slides about","make a deck using codex slides","build a powerpoint presentation","create slides from my files","turn this into a slide deck","make an ai presentation","generate a visual deck"] |
Codex Slides AI Presentation
Skill by ara.so — Codex Skills collection.
What is Codex Slides?
Codex Slides is an open-source AI slide studio that runs inside Codex. It transforms prompts, repos, or files into production-ready presentations with:
- ⚡ Fast parallel rendering — 10+ slides in ~4–5 minutes
- 118 visual systems — 45 deck templates + 73 community styles
- 24 guided scenarios — research, data stories, redesign, localization
- Full visibility — watch research → outline → style → render → edit → export
- Production export — PPTX and PDF with speaker notes
- Zero extra API keys — runs on your existing
codex login
- Browser-first workflow — every step visible and steerable
Think of it as the open-source, agent-native alternative to Gamma and Tome.
Installation
Quick Install
codex plugin marketplace add nexu-io/codex-slides
codex plugin add codex-slides@codex-slides
Verify Installation
codex plugin list
codex mcp list
You should see 38 MCP tools registered for codex-slides.
Core Workflow
1. Open Codex Slides in Browser
Always start by opening the Codex Slides UI in the Codex Browser:
Open Codex Slides in the Codex Browser and keep it visible.
This ensures you can see and approve each step: questions, outline, visual direction, and rendering.
2. Basic Deck Creation
Create a 12-slide market deck about 2026 humanoid robotics.
Let me confirm the questions, outline, and visual direction before rendering.
What happens:
- Opens a new durable project
- Shows clarification questions (audience, language, aspect ratio, etc.)
- Generates outline → you review/edit
- Suggests visual directions → you choose
- Renders slides progressively or in parallel
- Opens editor for refinement
3. Generate from Files
Open Codex Slides and create a 10-slide investor deck from the files in ./pitch-materials/
Use the Corporate template and 16:9 aspect ratio.
Codex Slides can read:
- Markdown — research notes, briefs, outlines
- JSON/YAML — structured data, configs
- Code — repos, architecture docs
- PDFs — existing presentations, reports
- Images — logos, charts, screenshots
4. Fast Mode (Parallel Rendering)
Create a 15-slide training deck about TypeScript best practices.
Use fast mode to render all slides in parallel.
Set aspect ratio to 16:9 and resolution to 2K.
Fast mode:
- Renders all slides simultaneously (not one-by-one)
- Queues overflow if engine limits hit
- Locks outline and visual direction upfront
- Dramatically faster for 10+ slide decks
MCP Tools Reference
Codex Slides exposes 38 MCP tools for agent control. Key tools:
Project Management
create_project({
name: "Q4 Product Launch",
description: "Internal stakeholder deck",
aspect_ratio: "16:9",
language: "en"
})
open_project({ project_id: "proj_abc123" })
list_projects({ limit: 20, offset: 0 })
Outline Control
generate_outline({
project_id: "proj_abc123",
topic: "Cloud migration strategy",
slide_count: 10,
audience: "Engineering leadership"
})
update_outline({
project_id: "proj_abc123",
outline: {
slides: [
{ title: "Current State", talking_points: ["Legacy on-prem", "Cost analysis"] },
{ title: "Migration Plan", talking_points: ["Phase 1: Lift & shift", "Phase 2: Refactor"] }
]
}
})
Visual Direction
get_style_recommendations({
project_id: "proj_abc123",
topic: "Product roadmap 2026"
})
apply_style({
project_id: "proj_abc123",
style_id: "corporate-blue"
})
Slide Generation
render_all_slides({
project_id: "proj_abc123",
mode: "parallel",
resolution: "2K"
})
render_slide({
project_id: "proj_abc123",
slide_index: 3,
resolution: "2K"
})
Editing
add_slide({
project_id: "proj_abc123",
position: 5,
title: "Next Steps",
talking_points: ["Q1 milestones", "Resource requirements"]
})
reorder_slides({
project_id: "proj_abc123",
from_index: 3,
to_index: 1
})
update_speaker_notes({
project_id: "proj_abc123",
slide_index: 2,
notes: "Emphasize cost savings vs. legacy system"
})
Export
export_pptx({
project_id: "proj_abc123",
include_speaker_notes: true
})
export_pdf({
project_id: "proj_abc123",
include_speaker_notes: false,
quality: "high"
})
Common Patterns
Pattern 1: Research-Based Deck
Open Codex Slides and create a research-backed deck about quantum computing advances.
1. Run multi-round web research on recent quantum breakthroughs
2. Generate a 12-slide outline based on the research
3. Use the "Technology Report" template
4. Set aspect ratio to 16:9 and resolution to 2K
5. Let me review the outline before rendering
6. Save the research brief in Design Files
Pattern 2: Source-to-Slides Workflow
Open Codex Slides in the Browser.
Create a 8-slide deck from the following sources:
- ./docs/architecture.md
- ./README.md
- ./benchmarks/performance.json
Target audience: technical investors
Visual direction: Corporate Modern
Aspect ratio: 16:9
Include code snippets where relevant.
Pattern 3: Redesign Existing Deck
Open Codex Slides and import ./old-pitch.pptx
Tasks:
1. Extract the outline and speaker notes
2. Apply the "Startup Pitch" template
3. Update visual direction to "Bold Gradient"
4. Re-render all slides in 4K resolution
5. Export as PPTX with original notes preserved
Pattern 4: Multi-Language Localization
Open the existing "Product Launch" project in Codex Slides.
Create localized versions:
1. Duplicate the project 3 times
2. Translate outline and notes to: Japanese, Spanish, German
3. Keep the same visual direction and layout
4. Render all versions in parallel (fast mode)
5. Export each as separate PPTX files
Pattern 5: Data Visualization Deck
Open Codex Slides and create a data story from ./sales-data.json
Requirements:
- 10 slides focusing on Q4 performance
- Use the "Dashboard Infographic" style
- Aspect ratio: 16:9
- Include charts, trend lines, and KPI callouts
- Target audience: board members
- Add speaker notes explaining each metric
Configuration
Project Settings
Projects are stored in ~/.codex-slides/projects/ (or configured path):
{
"projects_path": "~/Documents/CodexSlides",
"default_aspect_ratio": "16:9",
"default_resolution": "2K",
"default_language": "en",
"parallel_render_limit": 5,
"design_files_auto_sync": true
}
Environment Variables
export CODEX_SLIDES_PROJECTS_DIR="$HOME/my-presentations"
export CODEX_SLIDES_CACHE_DIR="$HOME/.cache/codex-slides"
export CODEX_SLIDES_DEFAULT_RESOLUTION="4K"
export CODEX_SLIDES_PARALLEL_LIMIT="8"
Aspect Ratios
Available aspect ratios:
16:9 — Standard widescreen (default)
4:3 — Classic presentation
1:1 — Square (social media)
9:16 — Vertical (mobile, stories)
3:4 — Portrait
Resolution Options
1K — Fast preview (1024px)
2K — Balanced quality (2048px, recommended)
4K — Print-ready (4096px)
Visual Systems
45 Deck Templates
Organized by category:
Business:
- Corporate Modern
- Startup Pitch
- Investor Deck
- Quarterly Business Review
Technical:
- Developer Documentation
- API Reference
- Architecture Overview
- Technical Training
Creative:
- Brand Guidelines
- Portfolio Showcase
- Case Study
- Campaign Presentation
Education:
- Academic Lecture
- Workshop Materials
- Training Course
- Research Findings
Data:
- Analytics Report
- Dashboard Summary
- Data Story
- Performance Review
73 Community Styles
Grouped by visual approach:
- Reports (8 styles) — clean, structured, text-focused
- Infographics (9 styles) — visual data, icons, callouts
- Diagrams (6 styles) — flowcharts, systems, processes
- Data & Maps (7 styles) — charts, geography, metrics
- Dashboards (5 styles) — KPIs, real-time, grids
- Posters (8 styles) — bold, event-focused, single-page
- Product (6 styles) — feature showcases, UI mockups
- Brand (7 styles) — identity, guidelines, mood boards
- Architecture (5 styles) — buildings, blueprints, renders
- Photography (6 styles) — image-first, minimal text
- Editorial (4 styles) — magazine, longform, narrative
- Illustration (2 styles) — custom graphics, hand-drawn
Code Examples
TypeScript: Programmatic Deck Creation
import { CodexSlidesClient } from '@codex-slides/sdk';
async function createProductDeck() {
const client = new CodexSlidesClient({
projectsDir: process.env.CODEX_SLIDES_PROJECTS_DIR || '~/.codex-slides/projects'
});
const project = await client.createProject({
name: 'Product Roadmap 2026',
description: 'Engineering team quarterly planning',
aspectRatio: '16:9',
language: 'en'
});
const outline = await client.generateOutline({
projectId: project.id,
topic: 'Q1-Q4 feature roadmap with dependencies',
slideCount: 12,
audience: 'Engineering and product teams',
sources: ['./roadmap.md', './jira-export.json']
});
await client.applyStyle({
projectId: project.id,
styleId: 'corporate-blue'
});
client.({
: project.,
: ,
:
});
pptxPath = client.({
: project.,
:
});
.();
}
TypeScript: Batch Processing
import { CodexSlidesClient } from '@codex-slides/sdk';
import fs from 'fs/promises';
async function generateWeeklyReports() {
const client = new CodexSlidesClient();
const teams = ['Engineering', 'Product', 'Design', 'Marketing'];
for (const team of teams) {
const dataFile = `./reports/${team.toLowerCase()}-metrics.json`;
const data = JSON.parse(await fs.readFile(dataFile, 'utf-8'));
const project = await client.createProject({
name: `${team} Weekly Report`,
aspectRatio: '16:9',
language: 'en'
});
await client.generateOutline({
projectId: project.id,
topic: `${team} KPIs and highlights for week of ${data.weekOf}`,
slideCount: 6,
: ,
: [dataFile]
});
client.({
: project.,
:
});
client.({
: project.,
: ,
:
});
client.({
: project.,
:
});
}
}
TypeScript: Custom Research Pipeline
import { CodexSlidesClient } from '@codex-slides/sdk';
async function researchDeck(topic: string, depth: 'shallow' | 'deep') {
const client = new CodexSlidesClient();
const project = await client.createProject({
name: `Research: ${topic}`,
aspectRatio: '16:9',
language: 'en'
});
const researchBrief = await client.runResearch({
projectId: project.id,
topic,
rounds: depth === 'deep' ? 3 : 1,
sources: 'web',
saveToDesignFiles: true
});
const outline = await client.generateOutline({
projectId: project.id,
topic,
slideCount: 15,
audience: 'Technical stakeholders',
: researchBrief.
});
recommendations = client.({
: project.,
topic
});
client.({
: project.,
: recommendations[].
});
client.({
: project.,
: ,
:
});
project;
}
CLI Usage
Basic Commands
codex-slides create \
--topic "Cloud security best practices" \
--slides 10 \
--aspect-ratio 16:9 \
--template corporate-modern \
--output ./security-deck.pptx
codex-slides create \
--sources ./docs/*.md \
--topic "API documentation" \
--slides 8 \
--style developer-docs \
--fast-mode \
--output ./api-deck.pptx
codex-slides list
codex-slides open proj_abc123
codex-slides export proj_abc123 \
--format pptx \
--resolution 4K \
--output ./final-deck.pptx
Advanced CLI
codex-slides create \
--topic "Blockchain scalability solutions 2026" \
--research deep \
--slides 12 \
--audience "Technical investors" \
--style infographic-modern \
--fast-mode \
--resolution 2K \
--speaker-notes \
--output ./blockchain-deck.pptx
codex-slides export --all \
--format pdf \
--resolution 4K \
--output-dir ./exports
codex-slides duplicate proj_abc123 \
--name "Product Launch (Japanese)" \
--translate ja \
--render \
--export ./launch-ja.pptx
Troubleshooting
Issue: Browser not opening
Solution:
codex browser status
codex browser open http://localhost:3000
codex plugin status codex-slides
Issue: Slides not rendering
Check:
- Is the outline finalized? Rendering pauses if outline is in draft state.
- Is a visual style applied? Default will be used if none selected.
- Check parallel render limit (default: 5 concurrent slides).
await client.updateConfig({
parallel_render_limit: 8
});
Issue: Export fails
Common causes:
- Project has no rendered slides
- Speaker notes contain invalid characters
- Output path not writable
codex-slides status proj_abc123
codex-slides export proj_abc123 --output /tmp/test.pptx
Issue: Slow rendering
Optimizations:
- Use fast mode (parallel rendering)
- Lower resolution (1K for drafts, 2K for reviews, 4K for finals)
- Reduce slide count in outline
- Simplify visual style (text-heavy styles render faster)
Switch to 1K resolution and re-render all slides in fast mode.
Issue: Design Files not syncing
codex-slides sync-design-files proj_abc123
ls ~/.codex-slides/projects/proj_abc123/design-files/
Issue: MCP tools not found
codex plugin remove codex-slides
codex plugin marketplace add nexu-io/codex-slides
codex plugin add codex-slides@codex-slides
codex mcp list | grep codex-slides
Best Practices
1. Always Keep Browser Visible
Codex Slides is browser-first. Keep the UI open so you can:
- Approve outlines before rendering
- Choose visual direction
- Watch progress in real-time
- Catch errors early
2. Use Design Files for Context
Upload brand guidelines, logos, color palettes, and reference materials to Design Files:
Add the brand guidelines PDF and logo SVG to Design Files.
Use the brand colors from the guidelines when rendering slides.
3. Save Successful Projects as Templates
Save this project as a reusable template named "Engineering Roadmap Q-Series".
Include the visual direction and outline structure.
4. Leverage Fast Mode for Long Decks
For 10+ slides, always use fast mode:
Create a 20-slide training deck about Python async programming.
Use fast mode to render all slides in parallel.
5. Iterate in the Editor
Don't regenerate entire decks. Use in-place editing:
Mark the title area on slide 3 and change it to "Market Opportunity".
Redraw slide 7 with more emphasis on the chart.
Add a new slide after slide 5 about competitive landscape.
6. Export Incrementally
Export drafts early and often:
Export the current deck as PDF for review, even though only 8 of 12 slides are rendered.
Quick Reference Card
Installation:
codex plugin marketplace add nexu-io/codex-slides
codex plugin add codex-slides@codex-slides
Basic Usage:
Open Codex Slides in the Codex Browser and create a 10-slide deck about [topic].
Let me review the outline and visual direction before rendering.
Use fast mode and 16:9 aspect ratio.
From Files:
Create an 8-slide deck from ./docs/*.md
Use the Technical template and 2K resolution.
Export:
Export the current project as PPTX with speaker notes.
Also export as PDF in 4K for printing.
Key MCP Tools:
create_project → new deck
generate_outline → structure
apply_style → visual direction
render_all_slides → fast mode
export_pptx / export_pdf → final output
Aspect Ratios: 16:9 (default), 4:3, 1:1, 9:16, 3:4
Resolutions: 1K (draft), 2K (standard), 4K (print)
Templates: 45 deck templates + 73 community styles
Languages: Multi-language support with localization
Resources: