From agi-super-team
Scans and organizes invoice/receipt files into tax-ready folders. Applies consistent naming, extracts vendor/date/amount data, and produces a CSV summary for bookkeeping.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agi-super-team:invoice-organizerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
<!-- Adapted from: awesome-claude-skills/invoice-organizer -->
Automatically organize invoices and receipts for tax preparation and bookkeeping.
From each invoice, extract:
YYYY-MM-DD Vendor - Invoice - Description.ext
Examples:
2024-03-15 Adobe - Invoice - Creative Cloud.pdf2024-01-10 Amazon - Receipt - Office Supplies.pdfInvoices/
├── Adobe/
├── Amazon/
├── Google/
└── Microsoft/
Invoices/
├── 2024/
│ ├── Software/
│ ├── Hardware/
│ ├── Services/
│ └── Travel/
└── 2023/
Invoices/
├── 2024/
│ ├── Q1/
│ ├── Q2/
│ ├── Q3/
│ └── Q4/
Invoices/
├── Deductible/
├── Partially-Deductible/
└── Personal/
# Find all invoices
find . -type f \( -name "*.pdf" -o -name "*.jpg" -o -name "*.png" \) -print
# Create folder structure
mkdir -p "Invoices/2024/Software/Adobe"
# Copy with new name (preserve original)
cp "original.pdf" "Invoices/2024/Software/Adobe/2024-03-15 Adobe - Invoice - Creative Cloud.pdf"
Date,Vendor,Invoice Number,Description,Amount,Category,File Path
2024-03-15,Adobe,INV-12345,Creative Cloud,52.99,Software,path/to/file.pdf
Useful for:
Works with:
npx claudepluginhub aaaaqwq/agi-super-team --plugin agi-super-teamReads messy invoice/receipt files, extracts vendor/date/amount, renames consistently, and sorts into folders by category or vendor. Useful for tax prep, expense reconciliation, and bookkeeping automation.
Organizes invoices and receipts for tax preparation by extracting key info, renaming files consistently, and sorting into logical folders.
Organizes invoices, receipts, and financial documents from PDFs, images, scans, and emails into categorized folders by vendor, expense type, date, or tax category. Extracts vendor, date, amount, and description for renaming and CSV export.