/install agent-invoice-generator
Invoice Generator
Create professional invoices instantly from your agent.
Quick Start
Generate an invoice:
python3 scripts/invoice.py create \
--client "Acme Corp" \
--items "Web Development,40h,$150" "Hosting Setup,1,$500" \
--tax 7 \
--due-days 30
Commands
Create Invoice
python3 scripts/invoice.py create \
--client "Client Name" \
--items "Description,Qty,Rate" \
--tax 7 \
--discount 10 \
--currency USD \
--due-days 30 \
--notes "Payment via wire transfer"
From Natural Language
When the user says something like "Invoice Acme Corp for 40 hours of dev work at $150/hr plus a $500 setup fee, 7% tax, net 30" — parse and pass to the create command.
List Invoices
python3 scripts/invoice.py list
python3 scripts/invoice.py list --status unpaid
Mark as Paid
python3 scripts/invoice.py paid --id INV-2026-001
View Invoice
python3 scripts/invoice.py view --id INV-2026-001
Business Info Setup
Configure your business details once:
python3 scripts/invoice.py setup \
--business "Your Company" \
--email "[email protected]" \
--address "123 Main St, City, ST 12345" \
--phone "+1-555-0100" \
--logo assets/logo.png
Stored at ~/.openclaw/invoice-config.json.
Invoice Format
Generated invoices include:
- Invoice number (auto-incrementing: INV-YYYY-NNN)
- Business and client details
- Itemized line items with quantities and rates
- Subtotal, tax, discount, and total
- Due date and payment terms
- Notes/terms section
- Professional formatting
Output
- PDF saved to
~/Documents/Invoices/INV-YYYY-NNN.pdf - Markdown summary printed to chat
- Optional: email invoice directly via configured email skill
Currencies
Supports: USD, EUR, GBP, CAD, AUD, JPY, CHF, and 20+ others with proper symbol formatting.
Recurring Invoices
python3 scripts/invoice.py recurring \
--client "Client" \
--items "Monthly Retainer,1,$2000" \
--frequency monthly \
--start 2026-03-01
Set up as a cron job for automatic generation and delivery.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agent-invoice-generator - 安装完成后,直接呼叫该 Skill 的名称或使用
/agent-invoice-generator触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Agent Invoice Generator 是什么?
Generate professional PDF invoices from natural language or structured data. Use when the user asks to create an invoice, bill a client, generate a receipt,... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 268 次。
如何安装 Agent Invoice Generator?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-invoice-generator」即可一键安装,无需额外配置。
Agent Invoice Generator 是免费的吗?
是的,Agent Invoice Generator 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Agent Invoice Generator 支持哪些平台?
Agent Invoice Generator 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Agent Invoice Generator?
由 John Wang(@johnnywang2001)开发并维护,当前版本 v1.0.0。