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

Stripe Import

skill-openaccountant-skills-stripe-import · by openaccountant

>

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

Install

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

✓ 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-stripe-import)

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

About

Stripe Import

Overview

Import transaction data from Stripe CSV exports into Open Accountant. Handles charges (revenue), Stripe processing fees, and refunds as separate line items. Payouts are skipped since they appear in your bank import and would cause double-counting.

Wilson Tools Used

  • transaction_search — check for existing Stripe transactions to prevent duplicates
  • categorize — assign categories to imported Stripe transactions
  • export_transactions — export reconciled Stripe data

Column Mapping

| Stripe CSV Column | Open Accountant Field | Notes | |---|---|---| | id | reference_id | Stripe charge ID (ch_xxx) | | Created (UTC) | date | Transaction date | | Description | description | Customer-facing description | | Amount | amount | Gross charge amount (positive = income) | | Fee | amount (separate row) | Stripe processing fee (negative = expense) | | Net | — | Calculated field, not stored directly | | Currency | currency | 3-letter ISO code | | Status | — | Only import succeeded charges | | Customer Email | notes | Optional, stored in notes |

Workflow

  1. Ask the user for the Stripe CSV file path.
  2. Parse the CSV and validate expected Stripe column headers.
  3. Filter rows:
  • Import: rows where Type is charge and Status is succeeded
  • Import: rows where Type is refund
  • Skip: rows where Type is payout or transfer (these appear in bank imports)
  • Skip: rows where Status is failed or pending
  1. For each charge, create two transactions:
  • Revenue: positive amount from the Amount column, category "Revenue:Stripe"
  • Fee: negative amount from the Fee column, category "Fees:Payment Processing"
  1. For refunds, create a negative revenue transaction with category "Revenue:Refunds"
  2. Deduplicate using the Stripe charge ID (id column) as the reference.
  3. Preview the import summary: total charges, total fees, total refunds, net revenue.
  4. Insert transactions and confirm.

Without Wilson

To work with Stripe exports manually:

Downloading from Stripe

  1. Log in to dashboard.stripe.com
  2. Go to Payments (left sidebar)
  3. Click Export (top right of the payments list)
  4. Select date range and columns:
  • Recommended: id, Created (UTC), Description, Amount, Fee, Net, Currency, Status, Type, Customer Email
  1. Choose CSV format and download

Manual Processing in a Spreadsheet

  1. Open the CSV in Google Sheets or Excel.
  2. Filter out non-succeeded: Data > Filter > Status column > select only "succeeded"
  3. Remove payouts: Filter Type column > deselect "payout" and "transfer"
  4. Create revenue rows:
  • Column for category: set to "Revenue:Stripe" for all charge rows
  • Amount column already has the gross charge amount
  1. Create fee rows: Add rows for each charge with:
  • Same date
  • Description: "Stripe fee — [original description]"
  • Amount: negative value from the Fee column (e.g., if Fee = 2.90, enter -2.90)
  • Category: "Fees:Payment Processing"
  1. Handle refunds: Refund rows should have negative amounts in the Amount column. Set category to "Revenue:Refunds"
  2. Summary formulas:

`` Gross Revenue: =SUMIFS(Amount, Type, "charge", Status, "succeeded") Total Fees: =SUMIFS(Fee, Type, "charge", Status, "succeeded") Total Refunds: =ABS(SUMIFS(Amount, Type, "refund")) Net Revenue: =GrossRevenue - TotalFees - TotalRefunds Effective Rate: =TotalFees / GrossRevenue * 100 ``

  1. Reconcile with bank: Your bank payout amounts should equal the sum of Net column values between payout dates.

Important Notes

  • Stripe amounts are in the smallest currency unit in the API but in standard units in CSV exports (e.g., $10.00, not 1000).
  • Multi-currency: if you accept payments in multiple currencies, each currency is imported with its original amount. Wilson does not perform currency conversion.
  • Stripe fee percentage is typically 2.9% + $0.30 per transaction but varies by plan. The actual fee is in the CSV.
  • Do not import payouts. Payouts are the transfer from Stripe to your bank account. These appear in your bank statement import and importing them from Stripe would double-count the money.
  • Connect/platform charges: if you use Stripe Connect, application fees appear as separate line items. Import these under "Fees:Platform" if applicable.

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.