wise-import — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited wise-import (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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 - OutflowsFor 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.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.