pptx-deck-creation
v1.0.0Create production-ready, editable PowerPoint decks through a spec-first, coordinate-explicit workflow with read-only reference analysis and quality gates.
by kimtthMIT38.6kupdated 4 days ago
Source
git clone https://github.com/wshobson/agentsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/pptx-deck-creation/ inside the repository.
Layout
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/pptx-deck-context/SKILL.md├── skills/pptx-quality-gates/SKILL.md├── skills/pptx-reference-deck-analysis/SKILL.md├── skills/pptx-slide-specification/SKILL.md└── skills/pptx-visual-assets/SKILL.md
Skills5
Use when preparing the narrative, sources, and design context for a new editable PPTX deck.
Use when validating or repairing an editable PPTX deck for geometry, accessibility, native editability, source lineage, and OOXML package integrity.
Use when analyzing a reference PPTX for read-only structure, theme, typography, layout rhythm, diagnostics, derived template catalogs, or safe OOXML package inspection.
Use when authoring or repairing a coordinate-explicit JSON specification for an editable PPTX deck.
Use when selecting and placing approved supporting icons, images, SVGs, diagrams, or infographics in an editable PPTX deck.
Manifests2
{
"name": "pptx-deck-creation",
"version": "1.0.0",
"description": "Create production-ready, editable PowerPoint decks through a spec-first, coordinate-explicit workflow with read-only reference analysis and quality gates.",
"skills": "./skills/",
"author": {
"name": "kimtth"
},
"repository": "https://github.com/kimtth/agent-pptify-kit",
"license": "MIT",
"keywords": [
"powerpoint",
"pptx",
"presentations",
"slide-decks",
"deck-generation",
"slide-design"
],
"interface": {
"displayName": "Pptx Deck Creation",
"shortDescription": "Create production-ready, editable PowerPoint decks through a spec-first, coordinate-explicit workflow with read-only…",
"category": "creative"
}
}{
"name": "pptx-deck-creation",
"version": "1.0.0",
"description": "Create production-ready, editable PowerPoint decks through a spec-first, coordinate-explicit workflow with read-only reference analysis and quality gates.",
"author": {
"name": "kimtth"
},
"repository": "https://github.com/kimtth/agent-pptify-kit",
"license": "MIT",
"category": "creative",
"keywords": [
"powerpoint",
"pptx",
"presentations",
"slide-decks",
"deck-generation",
"slide-design"
],
"agents": [
"./agents"
],
"skills": [
"./skills/pptx-deck-context",
"./skills/pptx-slide-specification",
"./skills/pptx-visual-assets",
"./skills/pptx-reference-deck-analysis",
"./skills/pptx-quality-gates"
]
}