document-generation
ビジネス文書(Word、PowerPoint、Excel、PDF)の作成や編集を効率的に行い、資料作成業務を強力にサポートするSkill。
📜 元の英語説明(参考)
A powerful skill for generating and processing professional documents (Word, PowerPoint, Excel, PDF).
🇯🇵 日本人クリエイター向け解説
ビジネス文書(Word、PowerPoint、Excel、PDF)の作成や編集を効率的に行い、資料作成業務を強力にサポートするSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o document-generation.zip https://jpskill.com/download/17556.zip && unzip -o document-generation.zip && rm document-generation.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/17556.zip -OutFile "$d\document-generation.zip"; Expand-Archive "$d\document-generation.zip" -DestinationPath $d -Force; ri "$d\document-generation.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
document-generation.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
document-generationフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 7
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
ドキュメント生成 & 処理 Skill
この Skill は、オフィスドキュメントの作成、編集、およびコンテンツの抽出のための包括的な機能を提供します。ドキュメント操作機能を必要とするエージェントが使用するように設計されています。
機能
1. ドキュメント生成
- Word (.docx): 見出し、段落、箇条書き、および表を含むプロフェッショナルなレポートを生成します。
- PowerPoint (.pptx): タイトル、コンテンツ、および一貫性のあるレイアウトのスライドデッキを作成します。
- Excel (.xlsx): データと基本的な書式設定を含むスプレッドシートを作成します。
- PDF (.pdf): テキストコンテンツから PDF ドキュメントを生成します。
2. ドキュメント処理
- コンテンツ抽出: アップロードされた PDF、Word、PowerPoint、および Excel ファイルからテキストと構造を抽出します。
- 形式変換: 互換性のある形式間で変換します。
使用方法
この Skill は、scripts/ ディレクトリにある一連の Python スクリプトを公開します。
Python API
from app.skills.common.document_skill.scripts.word_generator import WordGenerator
from app.skills.common.document_skill.scripts.ppt_generator import PPTGenerator
from app.skills.common.document_skill.scripts.excel_generator import excel_generator
from app.skills.common.document_skill.scripts.office_processor import OfficeProcessor
# Example: Generate a Word Document
word_gen = WordGenerator(output_dir="path/to/output")
file_path = word_gen.generate(markdown_content, "filename")
# Example: Extract content
processor = OfficeProcessor()
content = processor.process("path/to/file.pdf")
依存関係
- python-docx
- python-pptx
- openpyxl
- reportlab (for PDF)
- pypdf (for PDF extraction)
ディレクトリ構造
scripts/: 実装ロジック。templates/: (オプション) ドキュメントテンプレート。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Document Generation & Processing Skill
This skill provides comprehensive capabilities for creating, editing, and extracting content from office documents. It is designed to be used by agents requiring document manipulation capabilities.
Capabilities
1. Document Generation
- Word (.docx): Generate professional reports with headings, paragraphs, bullet points, and tables.
- PowerPoint (.pptx): Create slide decks with titles, content, and consistent layouts.
- Excel (.xlsx): Create spreadsheets with data and basic formatting.
- PDF (.pdf): Generate PDF documents from text content.
2. Document Processing
- Content Extraction: Extract text and structure from uploaded PDF, Word, PowerPoint, and Excel files.
- Format Conversion: Convert between compatible formats.
Usage
This skill exposes a set of Python scripts located in the scripts/ directory.
Python API
from app.skills.common.document_skill.scripts.word_generator import WordGenerator
from app.skills.common.document_skill.scripts.ppt_generator import PPTGenerator
from app.skills.common.document_skill.scripts.excel_generator import excel_generator
from app.skills.common.document_skill.scripts.office_processor import OfficeProcessor
# Example: Generate a Word Document
word_gen = WordGenerator(output_dir="path/to/output")
file_path = word_gen.generate(markdown_content, "filename")
# Example: Extract content
processor = OfficeProcessor()
content = processor.process("path/to/file.pdf")
Dependencies
- python-docx
- python-pptx
- openpyxl
- reportlab (for PDF)
- pypdf (for PDF extraction)
Directory Structure
scripts/: Implementation logic.templates/: (Optional) Document templates.
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (1,960 bytes)
- 📎 scripts/__init__.py (440 bytes)
- 📎 scripts/excel_generator.py (1,324 bytes)
- 📎 scripts/office_processor.py (1,421 bytes)
- 📎 scripts/pdf_generator.py (2,888 bytes)
- 📎 scripts/ppt_generator.py (19,577 bytes)
- 📎 scripts/word_generator.py (11,569 bytes)