name: invoice-generator description: Create professional invoices, quotes, and billing documents. Use when user wants to (1) generate an invoice, (2) create a quote, (3) make a receipt, (4) track payments, or (5) customize billing documents. Supports PDF, DOCX, and plain text output.
Create professional billing documents quickly.
invoice = {
"type": "invoice", # invoice, quote, receipt
"number": "INV-2026-001",
"date": "2026-04-07",
"due_date": "2026-04-21",
"from": {
"name": "Your Company",
"address": "123 Main St",
"email": "billing@company.com"
},
"to": {
"name": "Client Name",
"company": "Client Company",
"address": "456 Business Ave",
"email": "ap@client.com"
},
"items": [
{"description": "Service Name", "qty": 10, "rate": 150},
{"description": "Materials", "qty": 1, "rate": 500}
],
"tax_rate": 0.08, # 8%
"notes": "Payment due within 14 days"
}
Auto-calculate: - Subtotal: sum(qty × rate) for each item - Tax: subtotal × tax_rate - Total: subtotal + tax
INVOICE #INV-2026-001 Date: April 7, 2026 | Due: April 21, 2026 From: Your Company To: Client Company Item Qty Rate Amount ------------------------------------------- Consulting 10 $150 $1,500 Materials 1 $500 $500 ------------------------------------------- Subtotal: $2,000 Tax (8%): $160 TOTAL: $2,160 Notes: Payment due within 14 days小葱技能站7w4.net每天更新,海量AI技能等你发现。
Same format, but header: "QUOTE #QT-2026-001" + "Valid for 30 days"
Header: "RECEIPT #RCP-2026-001" + "Paid: [date]"
这个技能能帮助创建发票、报价单和收据。文档写得清楚明白,一看就懂。但实际用起来会发现它只是告诉你"应该怎么做",并没有真正可以运行的程序,功能比较有限。如果你想用它直接生成文档,目前还做不到,需要等开发者补充完整代码。