PowerPointファイル(.pptx)の構造を解析し、スライド・図形・テキスト情報を出力するスキル。 「PPTXを解析」「テンプレート構造を確認」「スライドの要素を調べて」等のリクエストで発動。
Scanned 9/5/2026
Install to Claude Code
npx -y skills add minicoohei/ai-agent-camp --skill pptx-analyzer --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Pptx Analyzer?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/minicoohei-pptx-analyzer-ai-agent-camp)More formats (shields.io, HTML) on the badges page.
---
name: pptx-analyzer
description: "PowerPointファイル(.pptx)の構造を解析し、スライド・図形・テキスト情報を出力するスキル。 「PPTXを解析」「テンプレート構造を確認」「スライドの要素を調べて」等のリクエストで発動。"
triggers:
- PPTXを解析して
- テンプレート構造を確認
- スライドの要素を調べて
- pptx-analyzer
- PowerPoint解析
- パワポの中身を見て
---
# PPTX Analyzer
PowerPointファイルの構造を解析するスキル。
## 機能
1. **構造抽出**: スライド、図形、プレースホルダー、テキストを抽出
2. **画像生成**: スライドをPNG画像に変換(オプション)
3. **意味解析**: Geminiによるスライド役割・要素用途の判定(オプション)
## 使用方法
```bash
# 基本解析(JSON + TXT出力)
python scripts/analyze_pptx.py template.pptx
# 画像付き解析
python scripts/analyze_pptx.py template.pptx --with-images
# Gemini意味解析付き
python scripts/analyze_pptx.py template.pptx --with-gemini
# 出力先指定
python scripts/analyze_pptx.py template.pptx --output-dir ./output
```
## 出力形式
### JSON(`{filename}_structure.json`)
```json
{
"source_file": "template",
"total_slides": 5,
"slides": [
{
"slide_index": 0,
"layout_name": "タイトル スライド",
"shapes": [
{
"shape_id": 2,
"name": "Title 1",
"shape_type": "Shape",
"left": 838200,
"top": 2130425,
"width": 10515600,
"height": 1325563,
"text": "プレゼン資料のタイトル",
"has_text_frame": true,
"is_placeholder": true,
"placeholder_type": "TITLE (1)"
}
]
}
]
}
```
### テキスト(`{filename}_structure.txt`)
```
=== Slide 1 (Layout: タイトル スライド) ===
[2] Title 1
Type: Shape, Pos: (0.9", 2.3"), Size: 11.5" x 1.5"
Placeholder: TITLE (1)
Text: "プレゼン資料のタイトル"
```
## 依存関係
- `python-pptx`: 必須
- `Pillow`: 画像処理(`--with-images`使用時)
- `pdf2image` + LibreOffice: PDF経由画像変換
- `google-generativeai`: Gemini解析(`--with-gemini`使用時)
## ユースケース
1. **テンプレート分析**: 自動スライド生成前にテンプレート構造を把握
2. **プレースホルダー特定**: 置換対象のテキストボックスやチャート位置を特定
3. **レイアウト確認**: 各スライドのレイアウト種類と配置を確認
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!