Install
$ agentstack add skill-openaccountant-skills-import-transactions ✓ 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
Import Transactions
Overview
Import financial transactions from bank export files. Automatically detects file format by extension (.csv, .ofx, .qif) and identifies the bank (Chase, Amex, BofA, or generic) by inspecting column headers. Previews parsed transactions, deduplicates against existing data, and inserts new records.
Wilson Tools Used
transaction_search— check for existing transactions to prevent duplicatescategorize— apply categorization rules to newly imported transactions
Workflow
- Ask the user for the file path to their bank export.
- Detect the file format by extension:
.csv— parse as CSV, inspect headers to identify bank.ofx/.qfx— parse as OFX (Open Financial Exchange).qif— parse as QIF (Quicken Interchange Format)
- For CSV files, identify the bank by header patterns:
- Chase:
Transaction Date,Post Date,Description,Category,Type,Amount,Memo - Amex:
Date,Description,Amount(orReference,Date,Description,Card Member,Amount) - Bank of America:
Date,Description,Amount,Running Bal. - Generic: any CSV with recognizable date, description, and amount columns
- Preview the first 5 parsed transactions for the user to confirm.
- Deduplicate by matching date + amount + description against existing transactions.
- Report how many new vs. duplicate transactions were found.
- Insert new transactions into the database.
- Offer to run
categorizeon the newly imported transactions.
Without Wilson
You can import transactions manually into any spreadsheet or accounting tool:
Downloading Exports
Chase:
- Log in at chase.com
- Go to the account > Statements & Documents
- Click Download account activity (top right of transaction list)
- Select date range and format: CSV, OFX/QFX, or QIF
- File downloads to your computer
American Express:
- Log in at americanexpress.com
- Go to Statements & Activity
- Click Download your Transactions (right side or under the kebab menu)
- Select date range, choose CSV or OFX/QFX
- Download
Bank of America:
- Log in at bankofamerica.com
- Go to the account > Information & Services tab
- Click Download transactions
- Select date range and format: Microsoft Excel (.csv), Quicken (.qfx), or QuickBooks (.qbo)
- Download
Generic / Other Banks: Most banks offer CSV or OFX export from their transaction history page. Look for "Download," "Export," or a download icon near the date range selector.
Manual Import into a Spreadsheet
- Open the CSV in Excel or Google Sheets.
- Normalize columns to:
Date,Description,Amount,Category. - Make amounts negative for expenses, positive for income/credits.
- Remove duplicate rows using Data > Remove Duplicates (Excel) or the
=UNIQUE()function (Sheets). - Sort by date.
OFX/QIF Files
- OFX files are XML-based. You can open them in a text editor to inspect, or import directly into GnuCash, Quicken, or YNAB.
- QIF files are plain text. Each transaction starts with
D(date),T(amount),P(payee). You can convert QIF to CSV with online tools like qif2csv.com.
Important Notes
- Chase CSV exports use negative amounts for payments/credits and positive for charges. Wilson normalizes this (negative = expense, positive = income).
- Amex CSV has amounts where charges are positive. Wilson inverts the sign on import.
- OFX files contain a date range in the header — Wilson uses this to scope deduplication.
- Deduplication is based on date + amount + description. If you manually edited a transaction description in your bank's app, the edited version may import as a new record.
- Large imports (1000+ transactions) are batched in groups of 500 for performance.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: openaccountant
- Source: openaccountant/skills
- 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.