business-document-generator
ビジネスの提案書、事業計画書、予算書といった書類を、テンプレートとユーザーが提供するデータに基づいて、PDF形式で効率的に作成するSkill。
📜 元の英語説明(参考)
This skill should be used when the user requests to create professional business documents (proposals, business plans, or budgets) from templates. It provides PDF templates and a Python script for generating filled documents from user data.
🇯🇵 日本人クリエイター向け解説
ビジネスの提案書、事業計画書、予算書といった書類を、テンプレートとユーザーが提供するデータに基づいて、PDF形式で効率的に作成するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o business-document-generator.zip https://jpskill.com/download/16529.zip && unzip -o business-document-generator.zip && rm business-document-generator.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/16529.zip -OutFile "$d\business-document-generator.zip"; Expand-Archive "$d\business-document-generator.zip" -DestinationPath $d -Force; ri "$d\business-document-generator.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
business-document-generator.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
business-document-generatorフォルダができる - 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
- 同梱ファイル
- 10
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Business Document Generator
概要
高品質な PDF テンプレートから、プロフェッショナルなビジネス文書(プロジェクト提案書、事業計画書、年間予算書)を生成します。バンドルされている Python スクリプトを使用して、ユーザーが提供するデータでテンプレートを埋め、配布可能な洗練された PDF 文書を出力します。
この Skill を使用する場面
ユーザーから以下の依頼があった場合に、この Skill を有効化してください。
- ビジネス提案書またはプロジェクト提案書を作成する
- 事業計画書ドキュメントを生成する
- 年間予算計画を作成する
- 利用可能なテンプレートに基づいて、プロフェッショナルなビジネス文書を作成する
- 特定のデータでビジネス テンプレートを埋める
利用可能なドキュメントの種類
この Skill は、3 種類のプロフェッショナルなビジネス文書をサポートしています。
-
プロジェクト提案書 - クライアントプロジェクト向けのプロフェッショナルな提案書
- テンプレート:
assets/templates/Professional Proposal Template.pdf - ユースケース: クライアントやステークホルダーへのプロジェクトの売り込み
- テンプレート:
-
事業計画書 - 包括的な事業計画ドキュメント
- テンプレート:
assets/templates/Comprehensive Business Plan Template.pdf - ユースケース: スタートアップ計画、投資家向けプレゼンテーション、戦略計画
- テンプレート:
-
年間予算書 - 詳細な予算計画ドキュメント
- テンプレート:
assets/templates/Annual Budget Plan Template.pdf - ユースケース: 財務計画、予算案、会計年度計画
- テンプレート:
クイックスタートワークフロー
ステップ 1: ユーザーの要件を理解する
ユーザーから以下の情報を収集します。
- 必要なドキュメントの種類(提案書、事業計画書、または予算書)
- 含めるべき主要なデータ(会社名、クライアント情報、日付など)
- 特定のカスタマイズのニーズ
ステップ 2: データを準備する
ドキュメントデータを含む JSON ファイルを作成します。フィールドの要件については、references/document_schemas.md のデータスキーマを参照してください。
提案書の例:
{
"title": "Digital Transformation Initiative",
"subtitle": "A Comprehensive Plan for Acme Corporation",
"client_org": "Acme Corporation",
"client_contact": "Jane Smith, CTO",
"company_name": "TechSolutions Inc.",
"contact_info": "contact@techsolutions.com",
"date": "November 3, 2025"
}
注: 完全な JSON ファイルの例については、assets/examples/ を確認してください。
proposal_example.jsonbusiness_plan_example.jsonbudget_example.json
ステップ 3: 依存関係をインストールする(初回のみ)
生成スクリプトには Python パッケージが必要です。それらをインストールします。
pip install pypdf reportlab
ステップ 4: ドキュメントを生成する
生成スクリプトを実行します。
python3 scripts/generate_document.py <document_type> <data_file> \
--templates-dir assets/templates \
--output-dir <output_directory>
パラメータ:
<document_type>:proposal、business_plan、またはbudgetのいずれか<data_file>: ドキュメントデータを含む JSON ファイルへのパス--templates-dir: PDF テンプレートを含むディレクトリ (デフォルト:assets/templates)--output-dir: 生成された PDF の保存場所 (デフォルト:output)--output-filename: オプションのカスタムファイル名
例:
python3 scripts/generate_document.py proposal my_proposal_data.json \
--templates-dir assets/templates \
--output-dir ./generated_docs
ステップ 5: ドキュメントを配信する
スクリプトは、指定された出力ディレクトリに PDF ファイルを出力します。ドキュメントが正常に生成されたことを確認し、ユーザーにファイルの場所を通知します。
詳細な使用方法
プロジェクト提案書の作成
-
提案書の情報を収集します。
- プロジェクトのタイトルとサブタイトル
- クライアントの組織と連絡先
- あなたの会社名と連絡先情報
- プロジェクトの詳細(問題、解決策、タイムライン、予算)
-
提案書のフィールドを含む JSON データファイルを作成します (
references/document_schemas.mdを参照)。 -
スクリプトを実行します。
python3 scripts/generate_document.py proposal proposal_data.json \ --templates-dir assets/templates -
出力: 表紙とコンテンツセクションを含むプロフェッショナルな PDF 提案書
事業計画書の作成
-
事業計画書の情報を収集します。
- 会社名と法的構造
- ミッションとビジョンのステートメント
- ターゲット市場の詳細
- 財務予測
-
事業計画書のフィールドを含む JSON データファイルを作成します。
-
スクリプトを実行します。
python3 scripts/generate_document.py business_plan plan_data.json \ --templates-dir assets/templates -
出力: 包括的な事業計画 PDF テンプレート
年間予算書の作成
-
予算情報を収集します。
- 会計年度
- 会社名
- 予算の前提(インフレ、成長目標)
- 収益と費用の予測
-
予算のフィールドを含む JSON データファイルを作成します。
-
スクリプトを実行します。
python3 scripts/generate_document.py budget budget_data.json \ --templates-dir assets/templates -
出力: 表と予測を含む年間予算計画 PDF
重要な注意点
スクリプトの機能
scripts/generate_document.py スクリプトは以下を行います。
- アセットディレクトリから PDF テンプレートを読み込みます
- テンプレートページ(主に表紙)にユーザーデータを重ねます
- 情報が入力された新しい PDF を生成します
- 元のテンプレートの構造とフォーマットを保持します
現在の制限事項
このスクリプトは現在、表紙の情報(タイトル、名前、日付)を入力します。テンプレート本文のコンテンツは、ユーザーが手動で、または他の PDF 編集ツールを使用してドキュメントを作成する際に従うことができるプロフェッショナルなフレームワークとして機能します。
スクリプトの拡張
表紙以外のフィールドも入力するには、スクリプトを拡張して以下を行うことができます。
- PDF のフォームフィールドを解析する
- 各ページの特定の座標にテキストオーバーレイを追加する
- プレースホルダーテキストをプログラムで置き換える
必要に応じて、scripts/generate_document.py を変更して、より高度な PDF 操作を追加してください。
データスキーマのリファレンス
各ドキュメントタイプに必要なフィールドとオプションのフィールドの詳細については、以下を参照してください。
references/document_schemas.md- 完全なデータ構造ドキュメント
サンプルファイル
完全な動作例は assets/examples/ にあります。
proposal_example.json- プロジェクト提案書のサンプルデータ- busin
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Business Document Generator
Overview
Generate professional business documents (Project Proposals, Business Plans, Annual Budgets) from high-quality PDF templates. Use the bundled Python script to fill templates with user-provided data and output polished PDF documents ready for distribution.
When to Use This Skill
Activate this skill when the user asks to:
- Create a business proposal or project proposal
- Generate a business plan document
- Develop an annual budget plan
- Create any professional business document based on the available templates
- Fill in business templates with specific data
Available Document Types
This skill supports three types of professional business documents:
-
Project Proposal - Professional proposals for client projects
- Template:
assets/templates/Professional Proposal Template.pdf - Use case: Pitching projects to clients, stakeholders
- Template:
-
Business Plan - Comprehensive business planning documents
- Template:
assets/templates/Comprehensive Business Plan Template.pdf - Use case: Startup planning, investor presentations, strategic planning
- Template:
-
Annual Budget - Detailed budget planning documents
- Template:
assets/templates/Annual Budget Plan Template.pdf - Use case: Financial planning, budget proposals, fiscal year planning
- Template:
Quick Start Workflow
Step 1: Understand User Requirements
Gather information from the user about:
- Document type needed (proposal, business plan, or budget)
- Key data to include (company name, client info, dates, etc.)
- Any specific customization needs
Step 2: Prepare the Data
Create a JSON file with the document data. Reference the data schemas in references/document_schemas.md for field requirements.
Example for Proposal:
{
"title": "Digital Transformation Initiative",
"subtitle": "A Comprehensive Plan for Acme Corporation",
"client_org": "Acme Corporation",
"client_contact": "Jane Smith, CTO",
"company_name": "TechSolutions Inc.",
"contact_info": "contact@techsolutions.com",
"date": "November 3, 2025"
}
Note: Check assets/examples/ for complete example JSON files:
proposal_example.jsonbusiness_plan_example.jsonbudget_example.json
Step 3: Install Dependencies (First Time Only)
The generation script requires Python packages. Install them:
pip install pypdf reportlab
Step 4: Generate the Document
Run the generation script:
python3 scripts/generate_document.py <document_type> <data_file> \
--templates-dir assets/templates \
--output-dir <output_directory>
Parameters:
<document_type>: One ofproposal,business_plan, orbudget<data_file>: Path to JSON file with document data--templates-dir: Directory containing PDF templates (default:assets/templates)--output-dir: Where to save generated PDFs (default:output)--output-filename: Optional custom filename
Example:
python3 scripts/generate_document.py proposal my_proposal_data.json \
--templates-dir assets/templates \
--output-dir ./generated_docs
Step 5: Deliver the Document
The script outputs a PDF file in the specified output directory. Verify the document was generated successfully and inform the user of the file location.
Detailed Usage Instructions
Creating a Project Proposal
-
Collect proposal information:
- Project title and subtitle
- Client organization and contact
- Your company name and contact info
- Project details (problem, solution, timeline, budget)
-
Create a JSON data file with proposal fields (see
references/document_schemas.md) -
Run the script:
python3 scripts/generate_document.py proposal proposal_data.json \ --templates-dir assets/templates -
Output: Professional PDF proposal with cover page and content sections
Creating a Business Plan
-
Collect business plan information:
- Company name and legal structure
- Mission and vision statements
- Target market details
- Financial projections
-
Create a JSON data file with business plan fields
-
Run the script:
python3 scripts/generate_document.py business_plan plan_data.json \ --templates-dir assets/templates -
Output: Comprehensive business plan PDF template
Creating an Annual Budget
-
Collect budget information:
- Fiscal year
- Company name
- Budget assumptions (inflation, growth targets)
- Revenue and expense forecasts
-
Create a JSON data file with budget fields
-
Run the script:
python3 scripts/generate_document.py budget budget_data.json \ --templates-dir assets/templates -
Output: Annual budget plan PDF with tables and projections
Important Notes
Script Functionality
The scripts/generate_document.py script:
- Reads PDF templates from the assets directory
- Overlays user data on template pages (primarily cover pages)
- Generates a new PDF with filled information
- Preserves the original template structure and formatting
Current Limitations
The script currently fills in cover page information (titles, names, dates). The template body content serves as a professional framework that users can follow when creating their documents manually or through other PDF editing tools.
Extending the Script
To fill additional fields beyond the cover page, the script can be enhanced to:
- Parse form fields in PDFs
- Add text overlays on specific coordinates for each page
- Replace placeholder text programmatically
Modify scripts/generate_document.py to add more sophisticated PDF manipulation as needed.
Data Schema Reference
For detailed information about required and optional fields for each document type, consult:
references/document_schemas.md- Complete data structure documentation
Example Files
Find complete working examples in assets/examples/:
proposal_example.json- Sample project proposal databusiness_plan_example.json- Sample business plan databudget_example.json- Sample budget plan data
Use these as starting templates when creating new documents.
Troubleshooting
Import errors when running the script:
- Install required packages:
pip install pypdf reportlab
Template not found:
- Verify
--templates-dirpoints toassets/templates - Check that PDF template files exist in the templates directory
Generated PDF is blank or missing data:
- Verify JSON data file is properly formatted
- Check that required fields are present (see
references/document_schemas.md)
Need to customize templates:
- Original templates are in
assets/templates/ - Modify templates using PDF editing software
- Keep original filenames or update
TEMPLATE_MAPin the script
Resources
scripts/
Contains the Python script for document generation:
generate_document.py- Main document generation script with CLI interface
This script can be executed directly without loading into context for token efficiency. It may be read if modifications or debugging are needed.
references/
Documentation to reference while working:
document_schemas.md- Complete JSON data structure for all document types
assets/
Files used in the document generation output:
templates/- Professional PDF templates for each document typeProfessional Proposal Template.pdfComprehensive Business Plan Template.pdfAnnual Budget Plan Template.pdf
examples/- Sample JSON data files demonstrating proper structureproposal_example.jsonbusiness_plan_example.jsonbudget_example.json
These templates and examples are not loaded into context but referenced during generation.
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (8,038 bytes)
- 📎 assets/examples/budget_example.json (288 bytes)
- 📎 assets/examples/business_plan_example.json (468 bytes)
- 📎 assets/examples/proposal_example.json (618 bytes)
- 📎 assets/templates/.DS_Store (6,148 bytes)
- 📎 assets/templates/Annual Budget Plan Template.pdf (38,749 bytes)
- 📎 assets/templates/Comprehensive Business Plan Template.pdf (46,044 bytes)
- 📎 assets/templates/Professional Proposal Template.pdf (37,217 bytes)
- 📎 references/document_schemas.md (2,490 bytes)
- 📎 scripts/generate_document.py (9,432 bytes)