Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

business-document-generator商业文件生成器

Agent Skill

business-document-generator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

16,386

周安装

676

GitHub Stars

356

下载量

5,354
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:business-document-generator(商业文件生成器)
来源仓库:https://github.com/ailabs-393/ai-labs-claude-skills
仓库路径:skills/business-document-generator
安装命令:
npx skills add https://github.com/ailabs-393/ai-labs-claude-skills --skill business-document-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/ailabs-393/ai-labs-claude-skills --skill business-document-generator

简介

基于高质量 PDF 模板自动生成专业商务文件的工具集。

  • 支持项目提案、商业计划书和年度预算等标准化文档输出。
  • 通过 Python 脚本填充模板数据并生成可直接分发的 PDF。
  • 需用户提供具体数据内容方可执行模板填写操作。
  • 内置多种行业标准的商务文档模板资源库。business-document-generator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

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:

  1. Project Proposal - Professional proposals for client projects

- Template: assets/templates/Professional Proposal Template.pdf - Use case: Pitching projects to clients, stakeholders

  1. Business Plan - Comprehensive business planning documents

- Template: assets/templates/Comprehensive Business Plan Template.pdf - Use case: Startup planning, investor presentations, strategic planning

  1. Annual Budget - Detailed budget planning documents

- Template: assets/templates/Annual Budget Plan Template.pdf - Use case: Financial planning, budget proposals, fiscal year planning

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.json
  • business_plan_example.json
  • budget_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 of proposal, business_plan, or budget
  • <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

  1. Collect proposal information:

- Project title and subtitle - Client organization and contact - Your company name and contact info - Project details (problem, solution, timeline, budget)

  1. Create a JSON data file with proposal fields (see references/document_schemas.md)
  2. Run the script: python3 scripts/generate_document.py proposal proposal_data.json \ --templates-dir assets/templates
  3. Output: Professional PDF proposal with cover page and content sections

Creating a Business Plan

  1. Collect business plan information:

- Company name and legal structure - Mission and vision statements - Target market details - Financial projections

  1. Create a JSON data file with business plan fields
  2. Run the script: python3 scripts/generate_document.py business_plan plan_data.json \ --templates-dir assets/templates
  3. Output: Comprehensive business plan PDF template

Creating an Annual Budget

  1. Collect budget information:

- Fiscal year - Company name - Budget assumptions (inflation, growth targets) - Revenue and expense forecasts

  1. Create a JSON data file with budget fields
  2. Run the script: python3 scripts/generate_document.py budget budget_data.json \ --templates-dir assets/templates
  3. 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 data
  • business_plan_example.json - Sample business plan data
  • budget_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-dir points to assets/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_MAP in 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 type

- Professional Proposal Template.pdf - Comprehensive Business Plan Template.pdf - Annual Budget Plan Template.pdf

  • examples/ - Sample JSON data files demonstrating proper structure

- proposal_example.json - business_plan_example.json - budget_example.json

These templates and examples are not loaded into context but referenced during generation.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

31.83%
按下载量换算1,704

Gemini CLI

22.07%
按下载量换算1,182

Codex

19.71%
按下载量换算1,055

OpenCode

12.5%
按下载量换算669

Cursor

8%
按下载量换算428

Antigravity

3.23%
按下载量换算173

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills