AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Import Transactions

skill-openaccountant-skills-import-transactions · by openaccountant

>

No reviews yet
0 installs
5 views
0.0% view→install

Install

$ agentstack add skill-openaccountant-skills-import-transactions

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-openaccountant-skills-import-transactions)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Import Transactions? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 duplicates
  • categorize — apply categorization rules to newly imported transactions

Workflow

  1. Ask the user for the file path to their bank export.
  2. 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)
  1. For CSV files, identify the bank by header patterns:
  • Chase: Transaction Date,Post Date,Description,Category,Type,Amount,Memo
  • Amex: Date,Description,Amount (or Reference,Date,Description,Card Member,Amount)
  • Bank of America: Date,Description,Amount,Running Bal.
  • Generic: any CSV with recognizable date, description, and amount columns
  1. Preview the first 5 parsed transactions for the user to confirm.
  2. Deduplicate by matching date + amount + description against existing transactions.
  3. Report how many new vs. duplicate transactions were found.
  4. Insert new transactions into the database.
  5. Offer to run categorize on the newly imported transactions.

Without Wilson

You can import transactions manually into any spreadsheet or accounting tool:

Downloading Exports

Chase:

  1. Log in at chase.com
  2. Go to the account > Statements & Documents
  3. Click Download account activity (top right of transaction list)
  4. Select date range and format: CSV, OFX/QFX, or QIF
  5. File downloads to your computer

American Express:

  1. Log in at americanexpress.com
  2. Go to Statements & Activity
  3. Click Download your Transactions (right side or under the kebab menu)
  4. Select date range, choose CSV or OFX/QFX
  5. Download

Bank of America:

  1. Log in at bankofamerica.com
  2. Go to the account > Information & Services tab
  3. Click Download transactions
  4. Select date range and format: Microsoft Excel (.csv), Quicken (.qfx), or QuickBooks (.qbo)
  5. 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

  1. Open the CSV in Excel or Google Sheets.
  2. Normalize columns to: Date, Description, Amount, Category.
  3. Make amounts negative for expenses, positive for income/credits.
  4. Remove duplicate rows using Data > Remove Duplicates (Excel) or the =UNIQUE() function (Sheets).
  5. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.