Business Document Generator

Fills PDF cover pages for proposals, business plans, and budgets from JSON via a Python script

Tested · Works

Test report

Verdict
Tested · Works
Score
8.0/10
Tested
Jul 21, 2026
Environment
Claude Code 2.x (agent harness)
Upstream re-checked
Aug 10, 2026 · 823b627

Cloned the repo, confirmed all referenced files exist (scripts/generate_document.py, 3 template PDFs, 3 example JSONs, references/document_schemas.md), and that deps (pypdf, reportlab) were present. Ran the script for real on proposal_example.json and budget_example.json: both produced valid multi-page PDFs (proposal = 5 pages, 41KB). Text extraction confirmed the user data (Digital Transformation Initiative, Acme Corporation, TechSolutions Inc.) was overlaid on the cover. Real defect: the proposal and business_plan generators draw new text on top WITHOUT covering the template's placeholder text, so the cover shows overlapping ghost text ("Project Proposal Title Here" plus real title in the same spot); only the budget generator whites-out placeholders first. Baseline was a plain markdown proposal I wrote by hand; the skill instead yields a styled 5-page template PDF, a concrete distributable-artifact difference, but capped by the overlap bug and cover-only fill scope. Security scan clean: no network calls, no exfiltration, no injection.

Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works

  • Installs cleanly 5/5
  • Triggers reliably 5/5
  • Output vs. baseline 6/10
  • Docs & honesty 4/5

What Business Document Generator does

Generates professional business documents (project proposals, business plans, annual budgets) by overlaying user-supplied JSON data onto bundled PDF templates with a Python script (pypdf + reportlab). Triggers when the user asks to create a proposal, business plan, or budget document from a template. Fills cover-page fields only; the template body remains a static professional framework.

How to install Business Document Generator

git clone --depth 1 https://github.com/ailabs-393/ai-labs-claude-skills.git /tmp/business-document-generator-src
mkdir -p ~/.claude/skills
cp -R /tmp/business-document-generator-src/packages/skills/business-document-generator ~/.claude/skills/business-document-generator
# Requires Python 3 with two packages:
#   pip install pypdf reportlab
# Run example:
#   cd ~/.claude/skills/business-document-generator
#   python3 scripts/generate_document.py proposal assets/examples/proposal_example.json \
#     --templates-dir assets/templates --output-dir ./output
# document_type is one of: proposal | business_plan | budget
# Identical copy also lives at dist/skills/business-document-generator in the repo.

Skills live in ~/.claude/skills/ (global) or .claude/skills/ (per-project). Restart Claude Code after installing.

Commands — how to trigger Business Document Generator

  • /business-document-generator Fills PDF cover pages for proposals, business plans, and budgets from JSON via a Python script

It also activates on plain-language prompts like these:

  • Generate a business proposal from this template
  • Create a budget document from these numbers
  • Fill out a business plan PDF with our data

Frequently asked questions

Is the Business Document Generator skill free?
Yes. The skill itself is free from ailabs-393/ai-labs-claude-skills. SkillProof publishes the install command and an independent test verdict at no cost.
Does Business Document Generator work with Claude Code?
We tested it with Claude Code 2.x (agent harness) on Jul 21, 2026. Verdict: Tested · Works. Cloned the repo, confirmed all referenced files exist (scripts/generate_document.py, 3 template PDFs, 3 example JSONs, references/document_schemas.md), and that deps (pypdf, reportlab) were present. Ran the script for real on proposal_example.json and budget_example.json: both produced valid multi-page PDFs (proposal = 5 pages, 41KB). Text extraction confirmed the user data (Digital Transformation Initiative, Acme Corporation, TechSolutions Inc.) was overlaid on the cover. Real defect: the proposal and business_plan generators draw new text on top WITHOUT covering the template's placeholder text, so the cover shows overlapping ghost text ("Project Proposal Title Here" plus real title in the same spot); only the budget generator whites-out placeholders first. Baseline was a plain markdown proposal I wrote by hand; the skill instead yields a styled 5-page template PDF, a concrete distributable-artifact difference, but capped by the overlap bug and cover-only fill scope. Security scan clean: no network calls, no exfiltration, no injection.
What is the Business Document Generator SkillProof Score?
8.0/10 — installs cleanly 5/5, triggers reliably 5/5, output vs. baseline 6/10, docs & honesty 4/5.
How do I install Business Document Generator?
Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
Can I use Business Document Generator with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.