Claude Skill

cowork-invoice-chaser

Point Cowork at your invoices and payments records -- builds an AR aging report, drafts escalating follow-up emails matched to each invoice's age and the client relationship, and runs as a weekly scheduled task so nothing slips past 30 days unnoticed.

LLM Mart · 0 points · 0 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download onewave-ai-claude-skills-cowork-invoice-chaser-97b5147.zip · 1 KB
Part of onewave-ai/claude-skills — 67 skills

Install

skills CLI npx skills add https://github.com/OneWave-AI/claude-skills/tree/main/cowork-invoice-chaser
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install onewave-ai-claude-skills@llmmart
Git git clone https://github.com/OneWave-AI/claude-skills.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole onewave-ai/claude-skills collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Cowork Invoice Chaser

Chase receivables the way a firm-but-warm operator does: know exactly who owes what and for how long, escalate on a schedule, and never send a dunning email to someone who already paid. Inputs: a folder of issued invoices (PDF/.docx) and payment evidence (bank exports, remittance emails, a payments .csv, or a paid-list the user maintains).

Workflow

  1. Build the ledger. Extract from every invoice: number, client, contact, issue date, due date, amount, terms. From payment records: date, amount, payer. Reconcile -- match payments to invoices (exact amount first, then partial payments, then aggregated payments covering multiple invoices).
  2. Age the book. Produce the AR aging report: current, 1-30, 31-60, 61-90, 90+ days past due, by client. Include total outstanding, weighted average days late, and the three largest exposures.
  3. Flag before chasing. List invoices with ambiguous payment status (partial matches, unidentified deposits near the amount) separately. These get a human decision, not a chaser.
  4. Draft the chasers. For each confirmed-unpaid invoice, draft an email matched to its escalation stage -- drafts only, never send:
    • Due in 3 days: friendly heads-up with invoice attached reference
    • 1-14 late: polite nudge, assume oversight, restate amount and payment details
    • 15-45 late: direct, reference prior contact, ask for a payment date
    • 46-90 late: firm, propose a call, mention terms (late fees only if the invoice/contract actually states them)
    • 90+: final notice tone, next-steps language, flag to the human for a collections/legal decision
  5. Digest. One summary per run: total outstanding and change since last run, payments received, drafts queued by stage, ambiguous items needing a decision, and clients whose pattern changed (reliable payer suddenly 30 days late is a relationship signal, not just an AR line).

Rules

  • Never send -- drafts only. A wrong dunning email costs more than a late invoice.
  • Never chase an ambiguous invoice. Unmatched payment evidence near the amount means human review first.
  • Match tone to relationship: the user can tag clients (key account, standard, problem); key accounts never get form-letter tone regardless of age.
  • One email per client per run, covering all their overdue invoices -- three separate nudges in one morning reads as automation and burns goodwill.
  • State late fees only when the underlying invoice or contract specifies them. Never invent penalty terms.
  • Keep the escalation memory: track what stage each invoice last received so a resent nudge escalates rather than repeats.

Scheduled Mode

As a weekly Cowork scheduled task: re-scan the folders, reconcile new payments, advance escalation stages, and deliver the digest with drafts ready for approval. The run is idempotent -- no invoice is double-chased within its stage window.

Quick Commands

  • "Age my receivables" -- steps 1-2 only
  • "Chase everything overdue" -- full workflow
  • "Who pays late?" -- client payment-behavior profile from the ledger history
  • "Draft the 90+ letters" -- final-notice drafts only
Files (claude-skills)
  • SKILL.md 3.4 KB
    ---
    name: cowork-invoice-chaser
    description: Point Cowork at your invoices and payments records -- builds an AR aging report, drafts escalating follow-up emails matched to each invoice's age and the client relationship, and runs as a weekly scheduled task so nothing slips past 30 days unnoticed.
    tools: Read, Glob, Grep, Write, Bash
    model: inherit
    ---
    
    # Cowork Invoice Chaser
    
    Chase receivables the way a firm-but-warm operator does: know exactly who owes what and for how long, escalate on a schedule, and never send a dunning email to someone who already paid. Inputs: a folder of issued invoices (PDF/.docx) and payment evidence (bank exports, remittance emails, a payments .csv, or a paid-list the user maintains).
    
    ## Workflow
    
    1. **Build the ledger.** Extract from every invoice: number, client, contact, issue date, due date, amount, terms. From payment records: date, amount, payer. Reconcile -- match payments to invoices (exact amount first, then partial payments, then aggregated payments covering multiple invoices).
    2. **Age the book.** Produce the AR aging report: current, 1-30, 31-60, 61-90, 90+ days past due, by client. Include total outstanding, weighted average days late, and the three largest exposures.
    3. **Flag before chasing.** List invoices with ambiguous payment status (partial matches, unidentified deposits near the amount) separately. These get a human decision, not a chaser.
    4. **Draft the chasers.** For each confirmed-unpaid invoice, draft an email matched to its escalation stage -- drafts only, never send:
       - Due in 3 days: friendly heads-up with invoice attached reference
       - 1-14 late: polite nudge, assume oversight, restate amount and payment details
       - 15-45 late: direct, reference prior contact, ask for a payment date
       - 46-90 late: firm, propose a call, mention terms (late fees only if the invoice/contract actually states them)
       - 90+: final notice tone, next-steps language, flag to the human for a collections/legal decision
    5. **Digest.** One summary per run: total outstanding and change since last run, payments received, drafts queued by stage, ambiguous items needing a decision, and clients whose pattern changed (reliable payer suddenly 30 days late is a relationship signal, not just an AR line).
    
    ## Rules
    
    - Never send -- drafts only. A wrong dunning email costs more than a late invoice.
    - Never chase an ambiguous invoice. Unmatched payment evidence near the amount means human review first.
    - Match tone to relationship: the user can tag clients (`key account`, `standard`, `problem`); key accounts never get form-letter tone regardless of age.
    - One email per client per run, covering all their overdue invoices -- three separate nudges in one morning reads as automation and burns goodwill.
    - State late fees only when the underlying invoice or contract specifies them. Never invent penalty terms.
    - Keep the escalation memory: track what stage each invoice last received so a resent nudge escalates rather than repeats.
    
    ## Scheduled Mode
    
    As a weekly Cowork scheduled task: re-scan the folders, reconcile new payments, advance escalation stages, and deliver the digest with drafts ready for approval. The run is idempotent -- no invoice is double-chased within its stage window.
    
    ## Quick Commands
    
    - "Age my receivables" -- steps 1-2 only
    - "Chase everything overdue" -- full workflow
    - "Who pays late?" -- client payment-behavior profile from the ledger history
    - "Draft the 90+ letters" -- final-notice drafts only
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related