agentsclimarketplace

Transaction processing

Skill gokulb20/crewm8-cfo-skills/skills/financial-operations/transaction-processing

CFO Skills by Crewm8 — 36 modular startup finance skills for Hermes, Claude Code, Droid, Cursor, OpenClaw, and any agent.

Install
npx -y skills add gokulb20/crewm8-cfo-skills --skill transaction-processing

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Processes daily financial transactions including invoices, expenses, receipts, credit card charges, and reimbursements with proper categorization, duplicate detection, anomaly flagging, and general ledger posting preparation. Use when the user mentions processing transactions, categorizing expenses, entering receipts into the books, uploading CSV exports from Stripe or QuickBooks, or asks about transaction reconciliation and bookkeeping automation.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

7.3 KB, as published. Nobody here has run it

Transaction Processing

Purpose

Every financial transaction that hits the business — invoices received, expense reports, credit card charges, reimbursements — must be categorized, deduplicated, and flagged for anomalies before it reaches the general ledger. This skill ensures every dollar in and out is accounted for, properly categorized, and ready for posting, reducing bookkeeping errors and providing clean financial data for reporting.

When to Use

  • "Process these transactions / receipts / invoices"
  • "Categorize these expenses"
  • "Enter these into the books"
  • Upload of receipt images, CSV exports from bank/Stripe/QuickBooks, or raw transaction lists.
  • "Reconcile and categorize this month's transactions"

Inputs Required

You must gather or receive:

  1. Transaction source data — CSV export, bank feed, API dump, or manual list. Must include: date, amount, counterparty, description.
  2. Chart of accounts — if not already known, load via ledger-management skill.
  3. Previous period categorization — optional, for consistency checking.

Quick Reference

ConceptWhat It DoesWhy It Matters
Auto-categorizationMaps transaction descriptions to COA categories using rulesEnsures every transaction has a home without manual effort
DeduplicationScans for duplicate amounts/vendor/date combinationsPrevents double-counting, the most common bookkeeping error
Anomaly detectionFlags outlier amounts, missing fields, round numbersCatches errors and potential fraud before ledger posting
Confidence scoringHIGH / MEDIUM / LOW per categorizationSurfaces items that need human review
Multi-currency handlingRecords original + USD-equivalentRequired for accurate P&L and cash reporting

Procedure

  1. Parse the transaction file: detect format (CSV, JSON, PDF table). Extract: date, amount, counterparty, description, payment method.
  2. Deduplicate: Check for duplicates against the existing transaction log. Flag any transaction that already appears.
  3. Auto-categorize each transaction using these rules:
    • Software/subscriptionsSoftware & Subscriptions
    • Payroll/contractorsPayroll & Contractors
    • Rent/officeFacilities
    • Marketing/adsMarketing
    • Travel/mealsTravel & Entertainment
    • Legal/professional servicesProfessional Services
    • Loan payments/interestDebt Service
    • Revenue from customersRevenue
    • Investments/grantsOther Income
    • Everything else → assign best-guess category and flag for review.
  4. Flag anomalies:
    • Duplicate amounts to the same vendor in the same week.
    • Transactions over an outlier threshold (3x the median of the same category).
    • Round numbers that look like estimates rather than actuals.
    • Missing counterparty or description.
  5. Prepare the output — a categorized transaction log.
  6. (Optional) Post to ledger — hand off to ledger-management.

Output Format

A structured table (Markdown or CSV):

DateDescriptionCounterpartyAmountCategoryConfidenceFlag
2026-04-01Stripe payoutStripe$12,450.00RevenueHIGH
2026-04-02AWS Invoice #8932AWS$3,421.00Software & SubsHIGH
2026-04-03Lunch — Joe's DinerJoe's Diner$42.18Travel & EntertainMEDIUMREVIEW: personal vs business?

Summary statistics at the top:

  • Total transactions processed
  • By category (pie or table)
  • Flagged count / review-needed count
  • Uncategorized count

Done Criteria

The skill is complete when:

  1. All transactions in the source data are parsed, deduplicated, and categorized
  2. Anomaly flags are applied and surfaced to the user
  3. Summary statistics are provided (total, by category, flagged count)
  4. Every transaction has a confidence score (HIGH, MEDIUM, or LOW)
  5. The categorized log is ready for hand-off to ledger-management
  6. No transaction is auto-posted to the ledger without human review when flags exist

Pitfalls

  • Categorizing by payment method instead of nature: Categorizing everything from the corporate Amex as "Corporate Card" rather than splitting into actual expense categories (travel, software, meals)
  • Forcing every transaction to HIGH confidence: Overriding the system's MEDIUM/LOW flags to avoid review items. Unreviewed medium-confidence items silently corrupt the general ledger
  • Skipping deduplication on manual entries: Assuming manually-entered transactions are always unique. Manual entries are the most common source of duplicates — always scan
  • Lumping bank fees into a single "Bank Charges" line: Payment processor fees, wire fees, FX markups, and account maintenance fees are fundamentally different costs and should be split if material
  • Auto-posting without human review when flags exist: Processing a transaction batch with 3+ flagged items straight to the ledger without pausing for review. Flags exist for a reason — every flagged batch deserves a human sanity check before ledger posting

Verification

Can you trace any transaction from source data through categorization to the output table? Are all anomaly flags explained with a reason? Is the confidence score justified for each categorization? If a transaction is flagged MEDIUM or LOW, is there a clear path for the user to resolve it?

Example

Example 1: CSV Upload

User: "Here's our April bank export CSV — can you process and categorize all transactions?"

→ You parse the CSV, detect format (date/description/amount columns), deduplicate against prior months, auto-categorize each line item, flag 3 anomalies (one duplicate vendor payment, one $8,400 round-number transfer, one missing counterparty), and present a categorized table with summary stats and flags highlighted for review.

Example 2: Receipt Processing

User: "I have 12 receipts from our team's offsite — process these"

→ You extract dates, vendors, and amounts from the receipts, categorize all as Travel & Entertainment, apply the $500/receipt founder-scrutiny rule (none flagged since amounts are small), deduplicate against the period, and present a clean categorized batch ready for ledger posting.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.