Logo
Agent Skills
  • Skills
  • Category
  • Publishers
  • Cookbook
  • Blog
Logo
Agent Skills
SkillsDocument Skillspptx
Featuredpython

pptx

by Anthropic•Document Skills

Create, edit, and analyze PowerPoint presentations with support for layouts, templates, charts, and automated slide generation

680downloads
58stars
~480tokens

Quick Install

One command to add this skill

Terminal
$ mkdir -p ~/.claude/skills/pptx && curl -L https://raw.githubusercontent.com/anthropics/skills/main/skills/pptx/SKILL.md > ~/.claude/skills/pptx/SKILL.md

Instructions

SKILL.md

Back

Prerequisites

  • Python 3.8+
  • python-pptx library

Security & Permissions

2 permissions required

  • No network access required
  • Can modify files on disk
  • Executes shell commands

Details

Published
2026/01/09
Language
python
Token Est.
~480

Resources

  • GitHub Repository

Tags

powerpointpptxpresentationslides
Logo
Agent Skills

Discover and download skills for Claude Code and other AI agents

GitHub
Skills
  • Category
  • Publishers
  • Cookbook
Resources
  • Blog
  • GitHub
Legal
  • Privacy Policy
  • Terms of Service
Copyright © 2026 All Rights Reserved.

PPTX Skill

Create, edit, and analyze PowerPoint presentations with full feature support.

Features

  • Create Presentations: Generate new presentations from scratch
  • Templates: Apply and modify presentation templates
  • Slide Layouts: Work with various slide layouts and masters
  • Charts & Graphs: Insert and manipulate charts and data visualizations
  • Automated Generation: Batch generate slides from data

Usage

from pptx import Presentation
from pptx.util import Inches

prs = Presentation()
slide = prs.slides.add_slide(prs.slide_layouts[0])
title = slide.shapes.title
title.text = "Hello, World!"
prs.save('presentation.pptx')