Automated invoice follow-up sequences that escalate from friendly to firm. Track unpaid invoices, send timed reminder emails with escalating tone, log payment interactions, and generate AR aging reports. Your agent handles the awkward conversations so you don't have to — preserving cash flow and client relationships while you focus on actual work. Configure invoice tracking, email templates per stage (friendly → firm → final notice), timing rules, and let your agent chase payments 24/7. Use when adding invoices, running payment chases, checking status, or generating accounts receivable reports.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install invoice-chaser或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install invoice-chaser⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/invoice-chaser/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: invoice-chaser description: Automated invoice follow-up sequences that escalate from friendly to firm. Track unpaid invoices, send timed reminder emails with escalating tone, log payment interactions, and generate AR aging reports. Your agent handles the awkward conversations so you don't have to — preserving cash flow and client relationships while you focus on actual work. Configure invoice tracking, email templates per stage (friendly → firm → final notice), timing rules, and let your agent chase payments 24/7. Use when adding invoices, running payment chases, checking status, or generating accounts receivable reports. metadata: clawdbot: emoji: "💸" requires: skills: - gog env: - GOG_DEFAULT_ACCOUNT ---
You do the work. Your agent gets you paid.
Every freelancer, consultant, and small business owner knows the pain: you did the work, sent the invoice, and now... crickets. Following up is awkward. Waiting kills cash flow. Chasing payments wastes time you could spend on billable work.
Invoice Chaser automates the entire follow-up sequence. It sends reminder emails on schedule, escalates tone from friendly to firm, tracks payment status, logs every interaction, and alerts you when invoices need human attention. Think of it as a persistent, diplomatic collections agent that never forgets and never feels awkward.
What makes it different: This isn't just "send reminder in 7 days." Invoice Chaser runs a full AR pipeline with state management, escalation logic, and tone progression. It knows when to be friendly ("just a heads up"), when to be firm ("payment is 30 days overdue"), and when to alert you for manual escalation. Multi-stage sequences handle the complexity of real-world payment cycles.
scripts/setup.sh to initialize config and data directories~/.config/invoice-chaser/config.json with email templates, timing, and escalation rulesgog skill is installed (for Gmail sending)GOG_DEFAULT_ACCOUNT in ~/.clawdbot/secrets.env (e.g., [email protected])scripts/add-invoice.sh --testConfig lives at ~/.config/invoice-chaser/config.json. See config.example.json for full schema.
Key sections:
Email templates support variables: {client_name}, {invoice_number}, {amount}, {due_date}, {days_overdue}, {payment_link}.
| Script | Purpose | |--------|---------| | scripts/setup.sh | Initialize config and data directories | | scripts/add-invoice.sh | Add new invoice to tracking system | | scripts/chase.sh | Run payment chase cycle (check status, send reminders, escalate) | | scripts/status.sh | Show invoice status and AR aging summary | | scripts/report.sh | Generate detailed AR aging report |
All scripts support --dry-run for testing without sending emails.
# Add invoice manually
scripts/add-invoice.sh \
--number "INV-2025-042" \
--client "Acme Corp" \
--email "[email protected]" \
--amount 2500.00 \
--date "2025-01-15" \
--due "2025-02-14" \
--net 30
# Quick add (assumes net-30 terms)
scripts/add-invoice.sh --number "INV-042" --client "Acme Corp" --email "[email protected]" --amount 2500
# Mark as paid
scripts/status.sh INV-042 --paid --date "2025-02-10"
Run scripts/chase.sh on schedule (cron daily recommended). The chase cycle:
SENT → REMINDER (friendly) → OVERDUE (professional) → FIRM (insistent) → FINAL (urgent) → ESCALATED
↓ ↓ day 3 ↓ day 7+ ↓ day 30 ↓ day 45 ↓ day 60
PAID (any time) ✅
Default timeline:
All timing is configurable in config.json.
Stage 1 — Friendly Reminder (Day 3): > Hi [Client], > > Just a friendly reminder that invoice #[number] for $[amount] is due on [due date]. Let me know if you have any questions!
Stage 2 — Professional Overdue (Day 14): > Hi [Client], > > I wanted to follow up on invoice #[number] for $[amount], which was due on [due date]. If you've already sent payment, please disregard this message. Otherwise, please let me know if there are any issues preventing payment.
Stage 3 — Firm Notice (Day 30): > Dear [Client], > > Your account is now 30 days past due. Invoice #[number] for $[amount] was due on [due date]. Immediate payment is required to avoid service interruption and late fees.
Stage 4 — Final Notice (Day 45): > Dear [Client], > > FINAL NOTICE: Invoice #[number] for $[amount] is now 45 days overdue. If we do not receive payment within 7 days, we will be forced to escalate this matter to collections.
All templates fully customizable in config.
# Mark invoice as paid
status.sh INV-042 --paid --date "2025-02-10"
# Add payment note
status.sh INV-042 --note "Client called, payment sent via check"
# Pause reminders (client asked for extension)
status.sh INV-042 --pause --until "2025-03-01"
# Archive without payment (write-off)
status.sh INV-042 --archive --reason "Bad debt write-off"
# Show summary
scripts/report.sh
# Output:
# 📊 Accounts Receivable Aging Report
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# Current (0-30 days): $12,500 (5 invoices)
# 31-60 days: $3,200 (2 invoices) ⚠️
# 61-90 days: $1,800 (1 invoice) 🚨
# 90+ days: $500 (1 invoice) 💀
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# Total Outstanding: $18,000 (9 invoices)
# Detail view
scripts/report.sh --detail
# Export to CSV
scripts/report.sh --export ar-aging-2025-01-28.csv
~/.config/invoice-chaser/
├── config.json # User configuration
├── invoices.json # Invoice database (state machine)
├── chase-log.json # Email send history
├── last-chase-report.json # Latest chase run data
└── archives/
└── YYYY-MM/ # Archived paid/written-off invoices
Set up daily chase runs via cron:
# Run every morning at 9 AM
0 9 * * * cd ~/clawd/skills/invoice-chaser && scripts/chase.sh >> ~/.config/invoice-chaser/chase.log 2>&1
# Weekly AR report to Telegram (Mondays at 8 AM)
0 8 * * 1 cd ~/clawd/skills/invoice-chaser && scripts/report.sh --channel telegram
Or use Clawdbot's cron integration:
clawdbot cron add \
--schedule "0 9 * * *" \
--command "cd ~/clawd/skills/invoice-chaser && scripts/chase.sh" \
--label "invoice-chaser-daily"
...
安装 Invoice Chaser 后,可以对 AI 说这些话来触发它
Send a Slack message to the #engineering channel about the deployment
Formats and sends the message with relevant context, tagging the right people
Summarize all unread messages in my inbox from today
Reads messages across connected channels and returns a prioritized summary
Draft a reply to this customer complaint and send it for review
Writes an empathetic, professional response and routes it to the approval queue
将技能文件夹放到 ~/.claude/skills/invoice-chaser/ 目录(个人级,所有项目可用),或 .claude/skills/invoice-chaser/(项目级)。重启 AI 客户端后,用 /invoice-chaser 主动调用,或让 AI 根据上下文自动发现并使用。
Invoice Chaser 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Invoice Chaser 可免费安装使用。请查阅仓库了解许可证信息。
Automated invoice follow-up sequences that escalate from friendly to firm. Track unpaid invoices, send timed reminder emails with escalating tone, log payment interactions, and generate AR aging reports. Your agent handles the awkward conversations so you don't have to — preserving cash flow and client relationships while you focus on actual work. Configure invoice tracking, email templates per stage (friendly → firm → final notice), timing rules, and let your agent chase payments 24/7. Use when adding invoices, running payment chases, checking status, or generating accounts receivable reports.
Invoice Chaser 属于「Communication」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。