From agi-super-team
Generates professional HTML/PDF invoices with company branding, client auto-fill, and auto-incrementing numbers. Useful for manual billing without a CRM.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agi-super-team:invoiceThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate professional invoices for WeLabelData Inc.
Generate professional invoices for WeLabelData Inc.
Two ways to generate invoices:
Full automation with CRM integration:
See: /invoice-generator-agent skill
Low-level script for direct use without CRM integration.
This skill generates invoices in HTML and PDF formats with:
$SCRIPTS_PATH/generate_invoice.py
cd $PROJECT_ROOT
python3 scripts/generate_invoice.py --client "ClientName" --amount 1000
These clients have pre-configured contact info:
| Key | Company | Contact | Location |
|---|---|---|---|
clienta | Client A BV | John Doe | Netherlands |
clientb | Client B Analytics | Jane Smith | USA |
clientc | Client C sp. z o.o. | Alice Johnson | Poland |
clientd | Client D Inc. | Bob | Japan |
cliente | Client E Tech | Charlie Brown | Sweden |
# Invoice for known client
python3 scripts/generate_invoice.py --client clienta --amount 707 --description "Video annotation services"
# Invoice for new client
python3 scripts/generate_invoice.py --client "New Company" --amount 500 --contact "John Doe" --email "[email protected]"
# Custom invoice number and date
python3 scripts/generate_invoice.py --client clientb --amount 3492 --number 100 --date "2/15/26"
# HTML only (no PDF)
python3 scripts/generate_invoice.py --client clienta --amount 707 --no-pdf
| Flag | Description |
|---|---|
--client | Client name or key (required) |
--amount | Invoice amount in USD (required) |
--description | Service description (default: "Services") |
--contact | Contact name (overrides default) |
--email | Contact email (overrides default) |
--date | Invoice date in M/D/YY format |
--number | Invoice number (default: auto-increment) |
--output | Output file path (without extension) |
--no-pdf | Generate HTML only |
--no-bank | Exclude bank/wire details |
Invoices are saved to:
$PROJECT_ROOT/docs/invoices/
Format: Invoice_{number}_WeLabelData_{ClientName}.pdf
/docs/company/invoice_tracker.json--number flagIf using the direct script (not recommended), manually:
invoice_date,invoice_number
2026-02-04,98
NOTE: The Invoice Generator Agent does all of this automatically.
| Use Case | Tool | Why |
|---|---|---|
| Invoice for existing deal in CRM | Agent | Auto CRM integration, activity logging |
| Quick one-off invoice | Script | Faster for non-CRM clients |
| Testing invoice layout | Script | No CRM side effects |
| Production workflow | Agent | Full automation + audit trail |
/invoice-generator-agent - Automated agent with CRM integration (RECOMMENDED)/docs/company/yourcompany-company-info.md/sales/crm/relationships/deals.csv/docs/company/originals/Wire-Details.pdfnpx claudepluginhub aaaaqwq/agi-super-team --plugin agi-super-teamGenerates professional invoices with CRM integration, supporting deal lookup by ID or client name, validation, atomic invoice numbering, PDF generation, and CRM updates. Requires human approval before sending.
Generates invoice generator configurations and code with step-by-step guidance. Auto-activates when you mention 'invoice generator'.
Generates professional invoices with line items, tax calculations, payment terms, due dates, and payment instructions, outputting structured markdown ready for PDF conversion.