Imports Wise (TransferWise) CSV transaction exports into accounting systems, handling multi-currency transfers, conversion fees, deduplication by ID, and categorization.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openaccountant-skills:wise-importThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Import transaction data from Wise (formerly TransferWise) CSV statement exports. Handles multi-currency accounts, conversion fees, and international transfers. Maps Wise's transfer-centric format into Open Accountant transactions.
Import transaction data from Wise (formerly TransferWise) CSV statement exports. Handles multi-currency accounts, conversion fees, and international transfers. Maps Wise's transfer-centric format into Open Accountant transactions.
transaction_search — check for existing Wise transactions to prevent duplicatescategorize — assign categories to imported Wise transactionsexport_transactions — export reconciled Wise data| Wise CSV Column | Open Accountant Field | Notes |
|---|---|---|
TransferWise ID or ID | reference_id | Unique transfer ID for dedup |
Date | date | Completion date |
Description | description | Transfer description / recipient |
Amount | amount | Transaction amount (signed) |
Currency | currency | Source currency ISO code |
Running Balance | — | Not stored |
Exchange Rate | notes | Stored in notes for reference |
Total fees | amount (separate row) | Wise fee (negative = expense) |
To work with Wise exports manually:
Total fees column — use this directly.=Amount * ExchangeRate (use the rate from the Wise statement, not a live rate).Total Inflows: =SUMIFS(Amount, Amount, ">0", Currency, "USD")
Total Outflows: =ABS(SUMIFS(Amount, Amount, "<0", Currency, "USD"))
Total Fees: =ABS(SUMIFS(TotalFees, Currency, "USD"))
Net: =Inflows - Outflows
For developers, Wise has a public API at api.transferwise.com that can pull statements programmatically. Requires an API key from your Wise business account settings.
Batch ID and Reference.npx claudepluginhub openaccountant/skillsImports financial transactions from CSV, OFX, or QIF bank exports. Detects format and banks (Chase, Amex, BofA), previews first 5, deduplicates by date/amount/description, and inserts new records into database.
Records Japanese journal entries (shiwake), imports transactions from CSV/receipts/invoices via CLI, manages ledger with init/search/update/delete. For bookkeeping workflows.
Exports MoonPay portfolio balances and transaction history to CSV or JSON for spreadsheets and tax reporting.