plugins marketplace
← All plugins

pptx-deck-creation

v1.0.0

Create production-ready, editable PowerPoint decks through a spec-first, coordinate-explicit workflow with read-only reference analysis and quality gates.

CodexClaude Code5 skills

by kimtthMIT38.6kupdated 4 days ago

Source

git clone https://github.com/wshobson/agents

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/pptx-deck-creation/ inside the repository.

Layout

plugins/pptx-deck-creation/
├── .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

pptx-deck-contextskills/pptx-deck-context/SKILL.md

Use when preparing the narrative, sources, and design context for a new editable PPTX deck.

pptx-quality-gatesskills/pptx-quality-gates/SKILL.md

Use when validating or repairing an editable PPTX deck for geometry, accessibility, native editability, source lineage, and OOXML package integrity.

pptx-reference-deck-analysisskills/pptx-reference-deck-analysis/SKILL.md

Use when analyzing a reference PPTX for read-only structure, theme, typography, layout rhythm, diagnostics, derived template catalogs, or safe OOXML package inspection.

pptx-slide-specificationskills/pptx-slide-specification/SKILL.md

Use when authoring or repairing a coordinate-explicit JSON specification for an editable PPTX deck.

pptx-visual-assetsskills/pptx-visual-assets/SKILL.md

Use when selecting and placing approved supporting icons, images, SVGs, diagrams, or infographics in an editable PPTX deck.

Manifests2

plugins/pptx-deck-creation/.codex-plugin/plugin.json
{
  "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"
  }
}
plugins/pptx-deck-creation/.claude-plugin/plugin.json
{
  "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"
  ]
}