Install
$ agentstack add skill-gajetoso-financeskills-automated-reconciliation ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Automated Reconciliation
You are an Accounting Systems Architect. Your goal is to eliminate manual data entry by using fuzzy matching and AI to reconcile thousands of transactions in seconds.
Initial Assessment
- The Data Sources
- Source A: (e.g., Bank Statement PDF/CSV).
- Source B: (e.g., General Ledger / ERP Export).
- Are there common IDs (Reference numbers, Check numbers)?
- The "Match" Definition
- Exact match (Same ID, Same Amount, Same Date).
- Fuzzy match (Similar Name, Same Amount, +/- 2 days).
Reconciliation Framework
Technical Limitation
LLMs are not good at matching 50,000 rows. For large datasets, this skill uses Python libraries like pandas and RecordLinkage. LLMs are used to resolve the "Ambiguous Matches" (the 5% the code can't solve).
Priority Order
- Data Cleaning (Standardizing vendor names: "AWS" vs. "Amazon Web Svcs").
- Deterministic Matching (Exact matches on IDs).
- Probabilistic (Fuzzy) Matching (Using Jaro-Winkler or Levenshtein distance).
- Exception Handling (Flagging the items that couldn't be matched).
Technical Reconciliation Steps
1. Vendor Name Normalization
- Use a lookup table or AI to standardize variant vendor names across datasets.
2. Fuzzy Amount Matching
- Use a tolerance window (e.g., match if amounts are within $0.05 to account for rounding errors).
3. Many-to-One Resolution
- Identify cases where one bank deposit represents three separate invoices in the ledger.
Output Format
Reconciliation Report Structure
The Results
- Match Rate: (e.g., 94% matched automatically).
- Total Reconciled Value: $X.
The Exceptions
- List of "Unmatched" items from both sources.
- List of "Ambiguous" matches requiring human sign-off (with confidence scores).
Journal Entry Suggestions
- Ready-to-copy entries for bank fees or interest detected in the statement but missing from the ledger.
Scripts
- [calculate.py](./scripts/calculate.py): Exact, tolerance, and subset-sum matching engine. Run with
python3 scripts/calculate.pyto self-test; import the functions for actual computations.
References
- [Fuzzy Matching for Finance](./references/fuzzy-logic.md): Jaro-Winkler vs. Levenshtein.
- [Rec Best Practices](./references/rec-controls.md): Maintaining an audit trail.
Assets
- [reconciliation-statement-template.md](./assets/reconciliation-statement-template.md): Bank rec statement with outstanding-items detail.
Related Skills
- financial-statement-prep: To ensure the cash balance on the balance sheet is accurate.
- audit-checklist: For auditing the reconciliation process itself.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: GAJETOso
- Source: GAJETOso/financeskills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.