Install
openclaw skills install @jzargona/smb-invoice-trackerAutomated invoice tracking + payment reminders for freelancers and small businesses. Scans Gmail for invoices, extracts amounts and due dates via LLM, sends polite reminders via WhatsApp or email, generates weekly cash flow report. Use when user says 'track invoices', 'invoice reminder', 'follow up on payments', 'cash flow', or has outstanding invoices to manage.
openclaw skills install @jzargona/smb-invoice-trackerActivate when the user wants to:
clawhub run smb-invoice-tracker auth gmail
This opens OAuth, no password stored. Scans for invoice-related emails (PDF/image attachments, vendor names, payment terms).
clawhub run smb-invoice-tracker add \
--payer "Acme Corp" \
--amount 1500 \
--currency "USD" \
--due 2026-07-15 \
--note "Q2 consulting"
clawhub run smb-invoice-tracker configure \
--tone "polite" \
--channel "email" \
--reminder-schedule "T-7,T-1,T+0,T+7"
Available tones: polite, friendly, firm, legal (the last one for 60+ days overdue).
clawhub run smb-invoice-tracker currency \
--base "USD" \
--rates-from "exchangerate-api.com"
The skill runs a daily cron that:
Manual trigger:
clawhub run smb-invoice-tracker scan
# List all tracked invoices
clawhub run smb-invoice-tracker list
# Show overdue
clawhub run smb-invoice-tracker list --status outstanding
# Weekly cash flow report
clawhub run smb-invoice-tracker report --period week
# Manual
clawhub run smb-invoice-tracker mark-paid --id INV-042
# Or when payer replies "paid" via WhatsApp/email, auto-detected
The skill produces:
For solo freelancers (5-20 active invoices):
politeT-3,T+0,T+7For agencies (50+ active invoices):
polite for first reminder, firm after 30 daysT-7,T-1,T+0,T+14For e-commerce / inventory:
Typical small business (20 invoices/month): $0.50-2/month total.
Invoice not auto-detected from Gmail?
add commandReminder not sent?
list --id INV-001Wrong amount extracted?
addreferences/email-templates.md — pre-built reminder templates per tonereferences/multi-currency.md — handling AED/QAR/SAR/EGP/USDreferences/whatsapp-flows.md — WhatsApp reply handling for "I paid" detectionreferences/csv-export.md — accounting software integration