Invoice Generator Skill
An invoice that's clear and complete gets paid faster — it has the details a client (and their finance team)
need to approve and pay without a back-and-forth. This skill produces a professional invoice with everything in
the right place: itemised work, the totals, and how and when to pay.
Note: this is a documentation aid, not tax, accounting, or legal advice. Tax handling (VAT/GST/sales
tax, reverse charge, withholding), required fields, and registration numbers vary by country and situation —
confirm your tax treatment and legal requirements with an accountant. Tax lines below are flagged to set.
Working from a brief
Given "invoice a client $2,000 for a website project", produce the full invoice anyway — lay out every
standard field and mark the ones to set (your detail) (invoice number, dates, tax rate, payment details).
Compute the arithmetic from the line items you're given; don't invent a tax rate — flag it to set.
Required Inputs
Ask for these only if they aren't already provided (else mark to set):
- From / to — your business name + contact (and tax/registration ID if applicable), and the client's billing details.
- Line items — description of work/goods, quantity, unit rate.
- Tax — whether tax applies and the rate (flag to confirm), or exempt/not applicable.
- Terms — payment due (e.g. Net 30), accepted methods (bank transfer, card, etc.), and any late-payment terms.
- References — PO number, project name, invoice number (or note your numbering scheme).
Output Format
Invoice
- Header — "INVOICE", a unique invoice number, issue date, and due date.
- From — your business name, address, contact, tax/registration ID (if any).
- Bill to — client name, address, contact; PO/reference if provided.
- Line items — a table: description · qty · unit rate · amount.
| Description |
Qty |
Rate |
Amount |
- Totals — subtotal, tax (rate + amount, flag to set), discounts if any, and total due (in the right currency). Show the arithmetic so it's verifiable.
- Payment details — how to pay (bank/account details, payment link, etc.) and the terms (due date, late fee if any).
- Notes — a short thank-you / any terms; and a reminder to confirm tax treatment with an accountant.
Quality Checks
Anti-Patterns
Based On
Billing & accounts-receivable practice — complete, itemised invoices with clear terms and payment instructions (tax treatment left to a qualified accountant).
1---2name: invoice-generator3description: Create a professional, complete invoice for a client or customer. Use when asked to write an invoice, create a bill, draft a freelance/contractor invoice, or set up an invoice template. Produces a clear invoice — your and the client's details, a unique number, line items with quantities/rates, subtotal/tax/total, payment terms and methods, and due date — ready to send and easy to pay. Not tax/legal advice.4---5
6# Invoice Generator Skill
7
8An invoice that's clear and complete gets paid faster — it has the details a client (and their finance team)
9need to approve and pay without a back-and-forth. This skill produces a professional invoice with everything in
10the right place: itemised work, the totals, and **how and when to pay**.
11
12> **Note:** this is a documentation aid, **not tax, accounting, or legal advice**. Tax handling (VAT/GST/sales
13> tax, reverse charge, withholding), required fields, and registration numbers vary by country and situation —
14> confirm your tax treatment and legal requirements with an accountant. Tax lines below are flagged to set.
15
16## Working from a brief
17
18Given "invoice a client $2,000 for a website project", **produce the full invoice anyway** — lay out every
19standard field and mark the ones to set *(your detail)* (invoice number, dates, tax rate, payment details).
20Compute the arithmetic from the line items you're given; don't invent a tax rate — flag it to set.
21
22## Required Inputs
23
24Ask for these only if they aren't already provided (else mark to set):
25
26- **From / to** — your business name + contact (and tax/registration ID if applicable), and the client's billing details.
27- **Line items** — description of work/goods, quantity, unit rate.
28- **Tax** — whether tax applies and the rate (flag to confirm), or exempt/not applicable.
29- **Terms** — payment due (e.g. Net 30), accepted methods (bank transfer, card, etc.), and any late-payment terms.
30- **References** — PO number, project name, invoice number (or note your numbering scheme).
31
32## Output Format
33
34### Invoice
35
36- **Header** — "INVOICE", a unique **invoice number**, issue date, and **due date**.
37- **From** — your business name, address, contact, tax/registration ID (if any).
38- **Bill to** — client name, address, contact; PO/reference if provided.
39- **Line items** — a table: description · qty · unit rate · amount.
40
41| Description | Qty | Rate | Amount |
42|---|---|---|---|
43
44- **Totals** — subtotal, tax (rate + amount, *flag to set*), discounts if any, and **total due** (in the right currency). Show the arithmetic so it's verifiable.
45- **Payment details** — how to pay (bank/account details, payment link, etc.) and the terms (due date, late fee if any).
46- **Notes** — a short thank-you / any terms; and a reminder to confirm tax treatment with an accountant.
47
48## Quality Checks
49
50- [ ] Has a unique invoice number, issue date, and explicit due date
51- [ ] Both parties' details are complete (and tax IDs where relevant)
52- [ ] Line items are itemised and the subtotal/tax/total arithmetic is correct and shown
53- [ ] Payment method(s) and terms (e.g. Net 30) are clear
54- [ ] Currency is explicit; tax rate is flagged to set rather than assumed
55- [ ] Reads professionally and is easy for a finance team to approve
56
57## Anti-Patterns
58
59- [ ] Do not invent a tax rate or tax treatment — flag it to confirm with an accountant
60- [ ] Do not omit the invoice number or due date — they're what makes it trackable and payable
61- [ ] Do not leave payment instructions vague — say exactly how to pay
62- [ ] Do not miscompute totals — show the math so it can be checked
63- [ ] Do not present this as tax/legal advice — it formats an invoice, it doesn't certify compliance
64
65## Based On
66
67Billing & accounts-receivable practice — complete, itemised invoices with clear terms and payment instructions (tax treatment left to a qualified accountant).