manus-pptx

Write slide decks using a PPTX-specific XML markup syntax exportable to pptx.

Updated Aug 28, 2026
One-click install
npx skills add https://github.com/AnderHonorato/Mem-rias-IA---Infinity --skill manus-pptx-anderhonorato
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: manus-pptx
Source: https://github.com/AnderHonorato/Mem-rias-IA---Infinity/tree/main/Manus/Skills/manus-pptx
Command: npx skills add https://github.com/AnderHonorato/Mem-rias-IA---Infinity --skill manus-pptx-anderhonorato

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Creating presentation slides programmatically requires a precise, validated markup language; this Skill provides the complete syntax reference for authoring slides in Manus's PPTX-specific XML format that exports losslessly to pptx. ## Core Features & Use Cases - Complete XML Syntax Reference: Documents all six element types (text, shape, image, icon, table, chart) plus the deck-level design block with every tag, attribute, and validation rule. - Design System Support: Define canvas size, brand color variables, and font tiers once in a design block and reference them across all slides. - Rich Content Elements: Build charts (bar, column, line, area, pie, donut, scatter), tables with merged cells, Lucide icons, and bidirectional text with RTL language support. - Use Case: When asked to create a quarterly business review deck, load this reference to write valid slide XML with charts, styled tables, and branded colors that passes validation and exports to pptx. ## Quick Start Use the manus-pptx skill to create a five-slide presentation about our Q3 results with a revenue chart and summary table.

Frequently Asked Questions about manus-pptx

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create slides with XML that exports to PowerPoint?

Write one slide element per page containing a required background child plus content elements like text, shape, image, icon, table, and chart. The markup uses pixel coordinates on a 1280x720 canvas and exports losslessly to pptx format.

How do I add charts to a slide deck in XML?

Use the chart element with a type of bar, column, line, area, pie, donut, or scatter, providing categories and series with numeric values arrays. Each series must resolve a color, and pie or donut charts accept exactly one series.

What validation rules apply to slide XML markup?

Every slide requires exactly one background child, every content element needs a unique semantic id, text and table and chart require a font, and area shapes require a fill. Referencing undefined design variables or duplicating ids causes validation errors.

Does the slide XML support right-to-left languages like Arabic?

Yes, set dir="rtl" and lang on the design element for RTL decks, with dir overrides available on text, table, paragraph, list item, and span elements. Weak-direction sequences like phone numbers must be wrapped in a single span with explicit direction.

Why does my table fail validation in slide XML?

Table validation fails when a row's colspan sum plus rowspan intrusions does not equal the column count, when the rows array length differs from the logical row count, or when merged regions overlap. Each logical row must be covered by exactly N columns.