CLI Tools
Command-line interface for generating professional documents
Coming Soon
We're working hard to bring you powerful CLI tools for document generation. Soon you'll be able to:
- Generate invoices, quotes, and receipts from the command line
- Use templates and customize output formats
- Integrate into your CI/CD pipelines
- Batch process multiple documents
- Export to PDF, HTML, and other formats
Installation (Preview)
# NPM
npm install -g @cleardocs/cli
# Homebrew (macOS/Linux)
brew install cleardocs
# Or download binaries
curl -sSL https://get.cleardocs.cc | sh
Usage Example (Preview)
# Generate an invoice
cleardocs generate invoice --template modern \\
--from "Your Company" \\
--to "Client Name" \\
--items items.json \\
--output invoice.pdf
# Use with data file
cleardocs generate --type quote --data quote-data.json