manus-pptx

Write presentation slides using a PPTX-specific XML markup syntax exportable to pptx.

Updated Sep 16, 2026
One-click install
npx skills add https://github.com/Military-Veteran-Team-LPT-Realty/mvt-manus-public-skills --skill manus-pptx-military-veteran-team-lpt-realty
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: manus-pptx
Source: https://github.com/Military-Veteran-Team-LPT-Realty/mvt-manus-public-skills/tree/main/skills/manus-pptx
Command: npx skills add https://github.com/Military-Veteran-Team-LPT-Realty/mvt-manus-public-skills --skill manus-pptx-military-veteran-team-lpt-realty

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Creating slide decks programmatically requires a precise, validated markup language; this Skill provides the complete syntax reference for Manus's PPTX-specific XML so AI-generated slides are structurally valid and losslessly exportable to pptx. ## Core Features & Use Cases - Complete XML Syntax Reference: Documents all 6 slide element types (text, shape, image, icon, table, chart) plus the deck-level design block with every tag, attribute, and validation rule. - Validation Red Lines: Lists the most common errors (missing backgrounds, duplicate element ids, malformed tables, invalid chart series) so output passes fail-fast validation. - Use Case: When asked to build a quarterly review deck, load this reference to author slides with charts, tables, icons, and brand color variables that export cleanly to a pptx file. ## Quick Start Create a 5-slide quarterly business review deck with a title slide, a revenue column chart, a metrics table, and a closing summary using the slides XML syntax.

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?

Author each slide as a <slide> element containing a required <background> child plus content elements like <text>, <shape>, <image>, <icon>, <table>, and <chart>. The markup is validated fail-fast and exports losslessly to pptx format.

How do I add charts to a generated presentation slide?

Use the <chart> element with a type of bar, column, line, area, pie, donut, or scatter, plus categories, colors, and child <series> elements with numeric values arrays. Combination charts mix column, line, and area series with primary and secondary axes.

What elements and attributes does the slides XML syntax support?

The syntax supports exactly 6 content elements (text, shape, image, icon, table, chart) plus a deck-level <design> block for canvas size, color variables, and font tiers. Tags or attributes not documented in the reference do not exist and must not be invented.

Why does slide XML validation fail with missing field errors?

Validation is fail-fast with no silent fallbacks: every slide needs a <background> child, every content element needs a unique id, text/table/chart need a font, area shapes need a fill, and every chart series needs a resolvable color.

Can the slides XML handle right-to-left languages like Arabic?

Yes, set dir="rtl" and lang on the <design> root for RTL decks, with dir overrides on text, table, p, li, and span elements. Weak-direction sequences like phone numbers must be wrapped in a single <span dir="ltr"> island inside RTL paragraphs.