paypal-import — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited paypal-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 PayPal CSV exports. Handles payments received, fees, refunds, and currency conversions. PayPal CSVs include many transaction types — this skill filters to financially meaningful entries and maps them to Open Accountant's format.
transaction_search — check for duplicates against existing transactionscategorize — assign categories to imported PayPal transactionsexport_transactions — export reconciled PayPal data| PayPal CSV Column | Open Accountant Field | Notes |
|---|---|---|
Date | date | Transaction date (MM/DD/YYYY format) |
Time | — | Not stored, date is sufficient |
Name | description | Counterparty name |
Type | — | Used for filtering (see workflow) |
Status | — | Only import Completed transactions |
Gross | amount | Transaction amount before fees |
Fee | amount (separate row) | PayPal fee (negative = expense) |
Net | — | Calculated, not stored directly |
Transaction ID | reference_id | PayPal transaction ID for dedup |
Currency | currency | 3-letter ISO code |
Subject or Item Title | notes | Optional detail |
Payment Received, Mobile Payment, Website Payment, Invoice ReceivedRefund, Reversal, ChargebackSubscription PaymentTransfer to Bank, Bank Deposit (appears in bank import)Currency Conversion (handled as part of the parent transaction)Authorization, Pending, Temporary HoldCompleted transactions.To work with PayPal exports manually:
Gross Revenue: =SUMIFS(Gross, Type, "Payment Received", Status, "Completed")
Total Fees: =ABS(SUMIFS(Fee, Type, "Payment Received", Status, "Completed"))
Total Refunds: =ABS(SUMIFS(Gross, Type, "Refund", Status, "Completed"))
Net Revenue: =GrossRevenue - TotalFees - TotalRefunds
Fee Rate: =TotalFees / GrossRevenue * 100~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.