transaction-processing

transaction-processing is a skill for Claude Code, Codex from gokulb20/crewm8-cfo-skills. It costs 75 tokens per session (1,633 once invoked), scanned A, original, MIT.

A bookkeeping workflow for organizing daily business transactions such as invoices, expenses, receipts, card charges, and reimbursements. It categorizes records, finds duplicates, flags unusual items, and prepares them for the general ledger.

In plain words
What is it for?
Use it to process bank or payment exports, categorize expenses, review receipts and invoices, detect duplicates or anomalies, and prepare transactions for ledger posting.
Why use it?
It reduces manual entry and catches classification or duplicate-record errors before transactions enter the main accounts.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: positional $N argument; built for openclaw.

Good fit Use it to process bank or payment exports, categorize expenses, review receipts and invoices, detect duplicates or anomalies, and prepare transactions for ledger posting.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gokulb20/crewm8-cfo-skills/transaction-processing
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add gokulb20/crewm8-cfo-skills --skill transaction-processing
Clone the repo
git clone --depth 1 https://github.com/gokulb20/crewm8-cfo-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for transaction-processing

README.md
[![agentmods](https://agentmods.dev/badge/skills/gokulb20/crewm8-cfo-skills/transaction-processing/github.svg)](https://agentmods.dev/skills/gokulb20/crewm8-cfo-skills/transaction-processing)
Your own site
<a href="https://agentmods.dev/skills/gokulb20/crewm8-cfo-skills/transaction-processing"><img src="https://agentmods.dev/badge/skills/gokulb20/crewm8-cfo-skills/transaction-processing/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for transaction-processing

Your own site · 80×15
<a href="https://agentmods.dev/skills/gokulb20/crewm8-cfo-skills/transaction-processing"><img src="https://agentmods.dev/badge/skills/gokulb20/crewm8-cfo-skills/transaction-processing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,633 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00075 $0.01633
Opus 5 $0.00037 $0.00816
Sonnet 5 $0.00015 $0.00327
Haiku 4.5 $0.00007 $0.00163

Measured 9d ago against content hash d355e6de51fd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

transaction-processing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/financial-operations/transaction-processing/SKILL.md · 129 lines

How it starts

The opening of the file, as written. The whole thing — 129 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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

Concept What It Does Why It Matters
Auto-categorization Maps transaction descriptions to COA categories using rules Ensures every transaction has a home without manual effort
Deduplication Scans for duplicate amounts/vendor/date combinations Prevents double-counting, the most common bookkeeping error
Anomaly detection Flags outlier amounts, missing fields, round numbers Catches errors and potential fraud before ledger posting
Confidence scoring HIGH / MEDIUM / LOW per categorization Surfaces items that need human review
Multi-currency handling Records original + USD-equivalent Required 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.

Read the full file on GitHub · 129 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 129 lines · 75 tokens per session scan A d355e6de51fd

Subscribe to this mod's changes

transaction-processing is a skill published in the GitHub repository gokulb20/crewm8-cfo-skills (2 stars, last pushed 4mo ago), licensed MIT. It adds 75 tokens to every session and 1,633 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

bookkeeping

Use when a small business needs audit-ready books — a chart of accounts, posting a transaction to the right account and side, clearing an uncategorized bank feed, cash vs accrual, or a ledger that won't tie to the bank. NOT interpreting the numbers — runway, burn, P&L cadence (that is finance-ops), NOT issuing…

ericrisco/rsc-harness · 84 tokens

jangbu-jongso

A Korean tax-document checklist generator for individuals, freelancers, sole-company owners, mixed earners, and certain business owners.

kimlawtech/korean-jangbu-for · 139 tokens

korean-jangbu-for

A Korean bookkeeping assistant for startups, freelancers, sole proprietors, and one-person companies. It processes financial files locally, helps classify transactions, and prepares accounting and tax outputs.

kimlawtech/korean-jangbu-for · 144 tokens

jangbu-import

A data-import workflow for turning bank files, card records, spreadsheets, receipts, tax invoices, and statement PDFs into a standard set of 13 transaction fields. OCR, or optical character recognition, is used to read information from document images and PDFs.

kimlawtech/korean-jangbu-for · 97 tokens

jangbu-connect

A setup guide for connecting Korean tax, bank, card, and social-insurance data through CODEF, an external API service. It explains how users obtain their own CODEF credentials and store them locally.

kimlawtech/korean-jangbu-for · 98 tokens

jangbu-tag

A bookkeeping tool that assigns Korean business transactions to accounting categories using rules first, with masked data sent for further classification only when rules cannot decide.

kimlawtech/korean-jangbu-for · 80 tokens