square-import — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited square-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 Square POS CSV exports. Handles sales, tips, refunds, and Square processing fees. Maps Square's item-level detail into Open Accountant's transaction format.
transaction_search — check for existing Square transactions to prevent duplicatescategorize — assign categories to imported Square transactionsexport_transactions — export reconciled Square data| Square CSV Column | Open Accountant Field | Notes |
|---|---|---|
Date | date | Transaction date |
Time | — | Not stored |
Transaction ID | reference_id | Square payment ID for dedup |
Description or Item | description | Item or payment description |
Gross Sales | amount | Total before fees (positive = income) |
Tips | amount (separate row) | Tip amount (positive = income) |
Processing Fees | amount (separate row) | Square fee (negative = expense) |
Refunds | amount (separate row) | Refund amount (negative) |
Net Sales | — | Calculated, not stored directly |
Payment Method | notes | Cash, card, etc. |
To work with Square exports manually:
Gross Sales: =SUM(E:E)
Total Tips: =SUM(F:F)
Total Fees: =SUM(G:G)
Total Refunds: =SUM(H:H)
Net Revenue: =GrossSales + Tips - Fees - Refunds
Effective Fee %: =TotalFees / (GrossSales + Tips) * 100
Avg Transaction: =GrossSales / COUNTA(D:D)Square Dashboard has built-in reports at Reporting > Sales Summary that show gross sales, fees, and net by day, week, or month. Use these for quick reference without exporting.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.