一键导入
stripe-import
Import Stripe payment CSV exports with charges, fees, and refund handling.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Import Stripe payment CSV exports with charges, fees, and refund handling.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Calculate break-even revenue by separating fixed and variable costs.
Project future cash flow using historical trends and recurring patterns.
Analyze revenue and costs per client to find your most profitable accounts.
Monitor 1099 contractor payments and flag $600 threshold.
Track unpaid invoices by age bucket and flag overdue payments.
Run a monthly bookkeeping close checklist with reconciliation.
| name | stripe-import |
| description | Import Stripe payment CSV exports with charges, fees, and refund handling. |
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.
transaction_search — check for existing Stripe transactions to prevent duplicatescategorize — assign categories to imported Stripe transactionsexport_transactions — export reconciled Stripe data| 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 |
Type is charge and Status is succeededType is refundType is payout or transfer (these appear in bank imports)Status is failed or pendingAmount column, category "Revenue:Stripe"Fee column, category "Fees:Payment Processing"id column) as the reference.To work with Stripe exports manually:
id, Created (UTC), Description, Amount, Fee, Net, Currency, Status, Type, Customer EmailGross 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
Net column values between payout dates.