skills$openclaw/ai-pdf-builder
nextfrontierbuilds2.8k

by nextfrontierbuilds

ai-pdf-builder – OpenClaw Skill

ai-pdf-builder is an OpenClaw Skills integration for writing workflows. AI-powered PDF generator for legal docs, pitch decks, and reports. SAFEs, NDAs, term sheets, whitepapers. npx ai-pdf-builder. Works with Claude, Cursor, GPT, Copilot.

2.8k stars847 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

nameai-pdf-builder
descriptionAI-powered PDF generator for legal docs, pitch decks, and reports. SAFEs, NDAs, term sheets, whitepapers. npx ai-pdf-builder. Works with Claude, Cursor, GPT, Copilot. OpenClaw Skills integration.
ownernextfrontierbuilds
repositorynextfrontierbuilds/ai-pdf-builder
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @nextfrontierbuilds/ai-pdf-builder
last updatedFeb 7, 2026

Maintainer

nextfrontierbuilds

nextfrontierbuilds

Maintains ai-pdf-builder in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
470 B
README.md
893 B
SKILL.md
6.0 KB
SKILL.md

name: ai-pdf-builder description: AI-powered PDF generator for legal docs, pitch decks, and reports. SAFEs, NDAs, term sheets, whitepapers. npx ai-pdf-builder. Works with Claude, Cursor, GPT, Copilot. version: 1.2.1 keywords: pdf-generator, ai-pdf, legal-docs, pitch-deck, startup-docs, investor-docs, ai-writing, document-automation, ycombinator, safe-agreement, nda, term-sheet, whitepaper, ai, ai-agent, ai-coding, llm, cursor, claude, claude-code, gpt, copilot, vibe-coding, mcp, agentic, coding-agent

AI PDF Builder

YC-style docs in seconds. AI-powered PDF generator for legal documents, pitch decks, and professional reports.

Generate SAFEs, NDAs, term sheets, whitepapers, and memos from simple prompts. Works with Claude, GPT, Cursor, and AI coding agents. Perfect for:

  • Whitepapers & Litepapers
  • Term Sheets
  • SAFEs & NDAs
  • Memos & Reports
  • Legal Agreements

What's New in v1.1.0

  • AI Content Generation - Generate documents from prompts using Claude
  • --company Flag - Inject company name directly via CLI
  • enhance Command - Improve existing content with AI
  • summarize Command - Generate executive summaries from documents
  • Content Sanitization - Automatic cleanup of AI-generated content

Requirements

Option A: Local Generation (Free, Unlimited)

# macOS
brew install pandoc
brew install --cask basictex
sudo tlmgr install collection-fontsrecommended fancyhdr titlesec enumitem xcolor booktabs longtable geometry hyperref graphicx setspace array multirow

# Linux
sudo apt-get install pandoc texlive-full

Option B: Cloud API (Coming Soon) No install required. Get API key at ai-pdf-builder.com

For AI Features: Set your Anthropic API key:

export ANTHROPIC_API_KEY="your-key-here"

Usage

Check System

npx ai-pdf-builder check

Generate via CLI

# From markdown file
npx ai-pdf-builder generate whitepaper ./content.md -o output.pdf

# With company name
npx ai-pdf-builder generate whitepaper ./content.md -o output.pdf --company "Acme Corp"

# Document types: whitepaper, memo, agreement, termsheet, safe, nda, report, proposal

AI Content Generation (New!)

# Generate a whitepaper from a prompt
npx ai-pdf-builder ai whitepaper "Write a whitepaper about decentralized identity" -o identity.pdf

# Generate with company branding
npx ai-pdf-builder ai whitepaper "AI in healthcare" -o healthcare.pdf --company "HealthTech Inc"

# Generate other document types
npx ai-pdf-builder ai termsheet "Series A for a fintech startup" -o termsheet.pdf
npx ai-pdf-builder ai memo "Q4 strategy update" -o memo.pdf --company "TechCorp"

Enhance Existing Content (New!)

# Improve and expand existing markdown
npx ai-pdf-builder enhance ./draft.md -o enhanced.md

# Enhance and convert to PDF in one step
npx ai-pdf-builder enhance ./draft.md -o enhanced.pdf --pdf

Summarize Documents (New!)

# Generate executive summary
npx ai-pdf-builder summarize ./long-document.md -o summary.md

# Summarize as PDF
npx ai-pdf-builder summarize ./report.pdf -o summary.pdf --pdf

Generate via Code

import { generateWhitepaper, generateTermsheet, generateSAFE, aiGenerate, enhance, summarize } from 'ai-pdf-builder';

// AI-Generated Whitepaper
const aiResult = await aiGenerate('whitepaper', 
  'Write about blockchain scalability solutions',
  { company: 'ScaleChain Labs' }
);

// Whitepaper from content
const result = await generateWhitepaper(
  '# My Whitepaper\n\nContent here...',
  { title: 'Project Name', author: 'Your Name', version: 'v1.0', company: 'Acme Corp' }
);

if (result.success) {
  fs.writeFileSync('whitepaper.pdf', result.buffer);
}

// Enhance existing content
const enhanced = await enhance(existingMarkdown);

// Summarize a document
const summary = await summarize(longDocument);

// Term Sheet with company
const termsheet = await generateTermsheet(
  '# Series Seed Term Sheet\n\n## Investment Amount\n\n$500,000...',
  { title: 'Series Seed', subtitle: 'Your Company Inc.', company: 'Investor LLC' }
);

// SAFE
const safe = await generateSAFE(
  '# Simple Agreement for Future Equity\n\n...',
  { title: 'SAFE Agreement', subtitle: 'Your Company Inc.' }
);

Document Types

TypeFunctionBest For
whitepapergenerateWhitepaper()Technical docs, litepapers
memogenerateMemo()Executive summaries
agreementgenerateAgreement()Legal contracts
termsheetgenerateTermsheet()Investment terms
safegenerateSAFE()SAFE agreements
ndagenerateNDA()Non-disclosure agreements
reportgenerateReport()Business reports
proposalgenerateProposal()Business proposals

Custom Branding

const result = await generateWhitepaper(content, metadata, {
  customColors: {
    primary: '#E85D04',    // Signal Orange
    secondary: '#14B8A6',  // Coordinate Teal
    accent: '#0D0D0D'      // Frontier Dark
  },
  fontSize: 11,
  margin: '1in',
  paperSize: 'letter'
});

When a user asks to generate a PDF:

  1. Check what type of document they need (whitepaper, term sheet, memo, etc.)
  2. Determine if they want AI generation or have existing content
  3. Get the content - either from their message, a file, or use AI to generate
  4. Ask for metadata if not provided (title, author, company name)
  5. Use --company flag to inject company branding
  6. Check if Pandoc is installed: which pandoc
  7. If Pandoc missing, provide install instructions or suggest cloud API
  8. Generate the PDF using the appropriate function
  9. Send the PDF file to the user

AI Commands Quick Reference:

  • ai <type> "<prompt>" - Generate new document from prompt
  • enhance <file> - Improve existing content
  • summarize <file> - Create executive summary
  • --company "Name" - Add company branding to any command

Built by @NextXFrontier

README.md

AI PDF Builder Skill

Clawdbot skill for generating professional PDFs from Markdown.

Version

Uses ai-pdf-builder@0.4.0 with premium templates.

Templates

TemplateStyle
WhitepaperModern tech - blue accents, clean typography
Term SheetExecutive finance - dark navy, gold accents
MemoClean corporate - structured header block
AgreementLegal - serif font, numbered sections
SAFEBased on agreement template
NDABased on agreement template

Installation

clawdhub install ai-pdf-builder

Requirements

Requires Pandoc and LaTeX:

# macOS
brew install pandoc
brew install --cask basictex

Links

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

**Option A: Local Generation (Free, Unlimited)** ```bash

FAQ

How do I install ai-pdf-builder?

Run openclaw add @nextfrontierbuilds/ai-pdf-builder in your terminal. This installs ai-pdf-builder into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/nextfrontierbuilds/ai-pdf-builder. Review commits and README documentation before installing.