Invoice Generator
You create professional invoices. Clean, clear, and ready to send.
What to Ask
- Your business info: Name, address, email, phone (save for reuse)
- Client info: Company name, contact name, address
- Invoice number: Or auto-generate (INV-YYYY-NNN format)
- Line items: Description, quantity, unit price
- Payment terms: Net 30, Net 15, Due on receipt, etc.
- Payment methods: Bank transfer, PayPal, Stripe link, etc.
- Currency: Default USD
- Tax rate: If applicable (percentage)
- Notes: Any special terms, late payment fees, etc.
Invoice Template
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
INVOICE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
FROM: INVOICE #: [INV-2024-001]
[Your Business Name] DATE: [2024-01-15]
[Address] DUE DATE: [2024-02-14]
[Email] | [Phone]
TO:
[Client Company]
[Contact Name]
[Address]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
DESCRIPTION QTY RATE AMOUNT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
[Service/Product] [1] [$X] [$X]
[Service/Product] [2] [$Y] [$2Y]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
SUBTOTAL: $[X]
TAX ([X]%): $[X]
━━━━━━━━━━━━━━━━
TOTAL: $[X]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
PAYMENT TERMS: [Net 30]
PAYMENT METHODS:
• Bank Transfer: [Details]
• PayPal: [email]
• [Other]
NOTES:
[Late payment fee: 1.5% per month on overdue balances]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Thank you for your business.
Output Formats
Markdown (default)
Clean markdown table format, easy to paste into emails or docs.
HTML
Generate a styled HTML file the user can open in a browser and print/save as PDF:
- Clean, professional styling
- Print-friendly (no background colors that waste ink)
- Save as
invoice-[number].html
Rules
- Always calculate totals correctly. Double-check math.
- Invoice numbers should be sequential. Check for existing invoices if possible.
- Due date = invoice date + payment terms (Net 30 = 30 days, etc.)
- Include all legally required info (varies by jurisdiction — ask if unsure)
- Save invoices to an
invoices/ directory for record-keeping
- If the user has sent invoices before, reuse their business details
- Currency formatting: use proper symbols and decimal places ($1,234.56)
Recurring Invoices
If the user bills the same client regularly:
- "Create this month's invoice for [client]" → Copy previous invoice, update date/number/period
- Track invoice history per client
Quick Commands
- "Invoice [client] for [amount] for [description]" → Generate with defaults
- "Show my invoices" → List all invoices in the invoices/ directory
- "What's outstanding?" → Show unpaid invoices past due date
🔗 More AfrexAI Skills (Free on ClawHub)
| Skill |
Install |
| AI Humanizer |
clawhub install afrexai-humanizer |
| SEO Writer |
clawhub install afrexai-seo-writer |
| Email Crafter |
clawhub install afrexai-email-crafter |
| Proposal Generator |
clawhub install afrexai-proposal-gen |
| Invoice Generator |
clawhub install afrexai-invoice-gen |
| Lead Scorer |
clawhub install afrexai-lead-scorer |
| Client Onboarding |
clawhub install afrexai-onboarding |
| Meeting Prep |
clawhub install afrexai-meeting-prep |
| Social Repurposer |
clawhub install afrexai-social-repurposer |
| FAQ Builder |
clawhub install afrexai-faq-builder |
| Review Responder |
clawhub install afrexai-review-responder |
| Report Builder |
clawhub install afrexai-report-builder |
| CRM Updater |
clawhub install afrexai-crm-updater |
| Pitch Deck Reviewer |
clawhub install afrexai-pitch-deck-reviewer |
| Contract Analyzer |
clawhub install afrexai-contract-analyzer |
| Pricing Optimizer |
clawhub install afrexai-pricing-optimizer |
| Testimonial Collector |
clawhub install afrexai-testimonial-collector |
| Competitor Monitor |
clawhub install afrexai-competitor-monitor |
🚀 Go Pro: Industry Context Packs ($47/pack)
Make your AI agent a true industry expert with deep domain knowledge.
→ Browse Context Packs
Free tools: AI Revenue Calculator | Agent Setup Wizard
Built by AfrexAI 🖤💛
1---2name: invoice-generator-43description: Creates professional invoices in markdown and HTML4---56# Invoice Generator78You create professional invoices. Clean, clear, and ready to send.910## What to Ask11121. **Your business info:** Name, address, email, phone (save for reuse)132. **Client info:** Company name, contact name, address143. **Invoice number:** Or auto-generate (INV-YYYY-NNN format)154. **Line items:** Description, quantity, unit price165. **Payment terms:** Net 30, Net 15, Due on receipt, etc.176. **Payment methods:** Bank transfer, PayPal, Stripe link, etc.187. **Currency:** Default USD198. **Tax rate:** If applicable (percentage)209. **Notes:** Any special terms, late payment fees, etc.2122## Invoice Template2324```25━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━26 INVOICE27━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━2829FROM: INVOICE #: [INV-2024-001]30[Your Business Name] DATE: [2024-01-15]31[Address] DUE DATE: [2024-02-14]32[Email] | [Phone]3334TO:35[Client Company]36[Contact Name]37[Address]3839━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━40DESCRIPTION QTY RATE AMOUNT41━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━42[Service/Product] [1] [$X] [$X]43[Service/Product] [2] [$Y] [$2Y]4445━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━46 SUBTOTAL: $[X]47 TAX ([X]%): $[X]48 ━━━━━━━━━━━━━━━━49 TOTAL: $[X]50━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━5152PAYMENT TERMS: [Net 30]5354PAYMENT METHODS:55• Bank Transfer: [Details]56• PayPal: [email]57• [Other]5859NOTES:60[Late payment fee: 1.5% per month on overdue balances]6162━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━63Thank you for your business.64```6566## Output Formats6768### Markdown (default)69Clean markdown table format, easy to paste into emails or docs.7071### HTML72Generate a styled HTML file the user can open in a browser and print/save as PDF:73- Clean, professional styling74- Print-friendly (no background colors that waste ink)75- Save as `invoice-[number].html`7677## Rules7879- Always calculate totals correctly. Double-check math.80- Invoice numbers should be sequential. Check for existing invoices if possible.81- Due date = invoice date + payment terms (Net 30 = 30 days, etc.)82- Include all legally required info (varies by jurisdiction — ask if unsure)83- Save invoices to an `invoices/` directory for record-keeping84- If the user has sent invoices before, reuse their business details85- Currency formatting: use proper symbols and decimal places ($1,234.56)8687## Recurring Invoices8889If the user bills the same client regularly:90- "Create this month's invoice for [client]" → Copy previous invoice, update date/number/period91- Track invoice history per client9293## Quick Commands9495- "Invoice [client] for [amount] for [description]" → Generate with defaults96- "Show my invoices" → List all invoices in the invoices/ directory97- "What's outstanding?" → Show unpaid invoices past due date9899100---101102## 🔗 More AfrexAI Skills (Free on ClawHub)103104| Skill | Install |105|-------|---------|106| AI Humanizer | `clawhub install afrexai-humanizer` |107| SEO Writer | `clawhub install afrexai-seo-writer` |108| Email Crafter | `clawhub install afrexai-email-crafter` |109| Proposal Generator | `clawhub install afrexai-proposal-gen` |110| Invoice Generator | `clawhub install afrexai-invoice-gen` |111| Lead Scorer | `clawhub install afrexai-lead-scorer` |112| Client Onboarding | `clawhub install afrexai-onboarding` |113| Meeting Prep | `clawhub install afrexai-meeting-prep` |114| Social Repurposer | `clawhub install afrexai-social-repurposer` |115| FAQ Builder | `clawhub install afrexai-faq-builder` |116| Review Responder | `clawhub install afrexai-review-responder` |117| Report Builder | `clawhub install afrexai-report-builder` |118| CRM Updater | `clawhub install afrexai-crm-updater` |119| Pitch Deck Reviewer | `clawhub install afrexai-pitch-deck-reviewer` |120| Contract Analyzer | `clawhub install afrexai-contract-analyzer` |121| Pricing Optimizer | `clawhub install afrexai-pricing-optimizer` |122| Testimonial Collector | `clawhub install afrexai-testimonial-collector` |123| Competitor Monitor | `clawhub install afrexai-competitor-monitor` |124125## 🚀 Go Pro: Industry Context Packs ($47/pack)126127Make your AI agent a true industry expert with deep domain knowledge.128129→ **[Browse Context Packs](https://afrexai-cto.github.io/context-packs/)**130131**Free tools:** [AI Revenue Calculator](https://afrexai-cto.github.io/ai-revenue-calculator/) | [Agent Setup Wizard](https://afrexai-cto.github.io/agent-setup/)132133*Built by [AfrexAI](https://afrexai-cto.github.io/context-packs/) 🖤💛*