Skip to main content

financial-reconciliation

Reconciles Stripe payouts to bank deposits and breaks down balance transactions -- gross, fees, refunds, net. Use when the user mentions "reconciliation", "payout doesn't match bank", "Stripe fees", "balance transactions", or "where did the money go". For balance snapshot only, see payout-balance-report.

跳到安装

来源信息

仓库
appeeky/stripe-skills
最近来源活动
2026年7月19日 10:10
检测到的 SKILL.md 语言
英语
星标
5
分支
1

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
financial-reconciliation
description
Reconciles Stripe payouts to bank deposits and breaks down balance transactions -- gross, fees, refunds, net. Use when the user mentions "reconciliation", "payout doesn't match bank", "Stripe fees", "balance transactions", or "where did the money go". For balance snapshot only, see payout-balance-report.
metadata
{"version":"1.0.0"}
# Financial Reconciliation ## Stripe MCP Setup Requires **Stripe MCP** (https://docs.stripe.com/mcp). `GetMcpTools` before `CallMcpTool`. Paginate all lists (`limit: 100`, `starting_after` while `has_more`). Amounts in **cents**. Read-only for audits; confirm before writes. ## Workflow 1. `GetPayouts` -- target payout(s) with amount + arrival date 2. `GetBalanceTransactions` filtered by `payout` -- the transactions that composed it 3. Break down: gross charges - Stripe fees - refunds - adjustments = net payout ## Fee Analysis Sum `fee` across balance transactions; compute effective % of gross. ## Output Template ``` Payout Reconciliation -- [payout_id] Arrival: [date] | Net paid: $[X] Composition: | Type | Count | Gross | Fees | Net | |------|-------|-------|------|-----| | Charges | | | | | | Refunds | | | | | | Adjustments | | | | | Effective Stripe fee: [X]% of gross Bank match: [reconciled / discrepancy $Y] ``` Flag discrepancies between payout net and expected bank deposit.
在 GitHub 查看