pptx-generator

PowerPoint Generator Skill

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "pptx-generator" with this command: npx skills add ntaksh42/agents/ntaksh42-agents-pptx-generator

PowerPoint Generator Skill

PowerPointプレゼンテーション(.pptx)を生成するスキルです。

主な機能

  • スライド作成: タイトル、コンテンツ

  • グラフ: 棒、折れ線、円グラフ

  • 画像: 画像挿入

  • テーブル: 表作成

  • テンプレート: デザインテンプレート

Python (python-pptx)

from pptx import Presentation from pptx.util import Inches, Pt

prs = Presentation()

タイトルスライド

title_slide = prs.slides.add_slide(prs.slide_layouts[0]) title = title_slide.shapes.title subtitle = title_slide.placeholders[1] title.text = "プレゼンテーションタイトル" subtitle.text = "サブタイトル"

コンテンツスライド

content_slide = prs.slides.add_slide(prs.slide_layouts[1]) title = content_slide.shapes.title title.text = "主なポイント"

content = content_slide.placeholders[1] tf = content.text_frame tf.text = "ポイント1"

p = tf.add_paragraph() p.text = "ポイント2" p.level = 1

画像スライド

img_slide = prs.slides.add_slide(prs.slide_layouts[6]) left = Inches(1) top = Inches(1) img_slide.shapes.add_picture('chart.png', left, top, width=Inches(8))

prs.save('presentation.pptx')

バージョン情報

  • Version: 1.0.0

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

document-summarizer

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

excel-processor

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

document-formatter

No summary provided by upstream source.

Repository SourceNeeds Review