Install
openclaw skills install @ssidharhubble/freelance-invoice-generatorGenerate professional, client-ready freelance invoices in Markdown or HTML from a simple JSON job file with line items, tax rate, discounts, and late-fee terms. No external API, account, or subscription required. Useful for freelance consulting, python contract work, ai agent development gigs, and any passive income side hustle that needs fast, clean invoicing without paying for QuickBooks or FreshBooks. Handles multi-item invoices, subtotal/discount/tax math, and due-date and late-payment-fee language automatically.
openclaw skills install @ssidharhubble/freelance-invoice-generatorGenerates a polished invoice (Markdown or HTML) from a plain JSON job description — no signup, no paid invoicing SaaS.
pandoc) or paste into
an emailscripts/invoice_gen.py for the full schema):
{
"invoice_number": "INV-2026-014",
"date": "2026-07-22",
"due_date": "2026-08-05",
"from": {"name": "Your Name", "email": "you@example.com"},
"to": {"name": "Client Co", "email": "ap@client.com"},
"items": [{"description": "Backend API build", "quantity": 1, "rate": 1500}],
"tax_rate_pct": 5,
"discount_usd": 0,
"notes": "Thanks for the business!",
"late_fee_pct_per_month": 1.5
}
python3 scripts/invoice_gen.py job.json --out invoice.md
python3 scripts/invoice_gen.py job.json --out invoice.html --format html
pandoc invoice.md -o invoice.pdf if
pandoc is available in your environment.