Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

payout-split-management支出分割管理

Agent Skill

payout-split-management 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

447

周安装

19

GitHub Stars

19

下载量

157
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:payout-split-management(支出分割管理)
来源仓库:https://github.com/finsilabs/awesome-ecommerce-skills
仓库路径:skills/payout-split-management
安装命令:
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill payout-split-management
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill payout-split-management

简介

payout-split-management 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前无原始 SKILL.md 内容可参考,实际功能以仓库内文档为准。

SKILL.md

Payout Split Management

Overview

A marketplace or multi-seller platform must split every payment between the platform (commission) and one or more sellers (net payout), withhold taxes where required, manage rolling reserves for refund protection, and disburse funds on a schedule. Stripe Connect is the industry standard for handling this — it legally routes funds to connected seller accounts, handles tax withholding and 1099 reporting, and eliminates the compliance risk of holding seller funds in a pooled bank account.

For Shopify, WooCommerce, and BigCommerce stores that operate as multi-vendor marketplaces, dedicated marketplace apps (like Dokan for WooCommerce) handle the payout split logic on top of Stripe Connect.

When to Use This Skill

  • When building a marketplace with independent sellers who need earnings disbursements
  • When your platform charges a percentage or flat commission on transactions
  • When you need to comply with IRS 1099-K reporting requirements for sellers
  • When managing rolling reserves for high-risk or new sellers
  • When sellers are requesting faster payouts (daily/weekly vs. monthly)

Core Instructions

Step 1: Choose the right marketplace and payout architecture

PlatformRecommended ApproachNotes
ShopifyShopify Marketplace Kit + Stripe Connect, or Multi-Vendor Marketplace appShopify does not natively support multi-seller payouts; marketplace apps handle seller accounts and split payouts
WooCommerceDokan Multivendor Marketplace or WCFM Marketplace + Stripe ConnectDokan is the most widely used WooCommerce marketplace plugin; has native Stripe Connect integration for split payouts
BigCommerceMulti-Seller Marketplace app + Stripe ConnectThird-party marketplace apps on BigCommerce App Marketplace
Custom / HeadlessStripe Connect (Express or Custom accounts)Build the full split logic; Stripe handles compliance, tax forms, and fund routing

Step 2: Set up Stripe Connect for seller payouts

Stripe Connect is required for any architecture where you want to route funds to sellers automatically (rather than collecting everything in your account and manually wiring sellers).

Choose the right Connect account type:

  • Express accounts: Sellers onboard via a Stripe-hosted form; Stripe handles identity verification (KYC); best for most marketplaces
  • Custom accounts: You control the onboarding UX entirely; more complex; for platforms with specific UX requirements
  • Standard accounts: Sellers connect an existing Stripe account; they see your platform in their Stripe dashboard

For most marketplaces, Express accounts are the right choice.

Set up Stripe Connect in the Stripe Dashboard:

  1. Go to Stripe Dashboard → Connect → Overview and configure your platform
  2. Enable Express accounts under Connect → Settings → Account types
  3. Configure your platform's branding (name, logo, colors) for the hosted onboarding flow
  4. Set the commission structure in your platform settings (not Stripe — Stripe routes funds based on the amounts you specify per transaction)

WooCommerce (Dokan)

  1. Install Dokan Multivendor Marketplace (free base + paid extensions from dokan.wedevs.com)
  2. Go to Dokan → Settings → Selling Options and configure:

- Commission type: percentage (e.g., 15% of each sale goes to the platform), flat fee, or combined - Commission rate: the percentage or flat amount you keep as the marketplace

  1. Go to Dokan → Settings → Withdrawal and configure payout schedules (weekly, bi-weekly, monthly) and minimum withdrawal amount
  2. Enable Stripe Connect: go to Dokan → Settings → Payment → Stripe Connect and enter your Stripe Connect platform keys
  3. Sellers connect their Stripe accounts by going to their vendor dashboard and clicking Payment Settings → Connect with Stripe
  4. When an order is placed, Dokan automatically splits the payment: the seller's share is transferred to their connected Stripe account, the commission stays in your platform's Stripe balance

1099 reporting with Dokan: Dokan tracks cumulative payouts per seller. Export vendor earnings reports from Dokan → Reports → Vendor Wise Sales for 1099 preparation. For automatic 1099 generation, use TaxBandits or Track1099 — import the Dokan export and generate IRS-compliant 1099-K forms.

Shopify (Multi-Vendor Marketplace app)

  1. Install Multi-Vendor Marketplace or Marketplace Kit from the Shopify App Store (various providers)
  2. Configure vendor commission rates in the app's vendor settings
  3. Connect Stripe Connect for payouts in the app's payment settings
  4. Vendors are onboarded via a hosted form and can view their earnings and request payouts from a vendor portal

BigCommerce

  1. Install a multi-seller marketplace app from the BigCommerce App Marketplace
  2. Configure commission rates and payout schedules in the app settings
  3. Connect Stripe Connect for automatic fund routing

Custom / Headless

For custom marketplace builds, implement the full split payout architecture using Stripe Connect:

Seller onboarding (Express accounts):

// Create an Express Connect account for a new seller
const account = await stripe.accounts.create({
  type: 'express',
  country: 'US',
  email: sellerEmail,
  capabilities: { transfers: { requested: true } },
  metadata: { seller_id: sellerId },
});

// Generate onboarding link — redirect seller to complete Stripe's KYC form
const accountLink = await stripe.accountLinks.create({
  account: account.id,
  refresh_url: `${process.env.PLATFORM_URL}/sellers/onboarding/retry`,
  return_url: `${process.env.PLATFORM_URL}/sellers/onboarding/complete`,
  type: 'account_onboarding',
});

// Save account.id to your database and redirect seller to accountLink.url
await db.sellers.update({ where: { id: sellerId }, data: { stripeAccountId: account.id } });

Splitting payment at checkout (Destination charge pattern):

// Create a payment intent that automatically routes commission to your platform
// and the seller's share to their connected account
const paymentIntent = await stripe.paymentIntents.create({
  amount: orderTotalCents,
  currency: 'usd',
  payment_method_types: ['card'],
  application_fee_amount: Math.round(orderTotalCents * commissionRate), // Platform commission
  transfer_data: {
    destination: seller.stripeAccountId, // Seller's Connect account
  },
  metadata: { order_id: orderId, seller_id: sellerId },
});

Rolling reserve (withhold a % for refund protection):

// Instead of immediate transfer, create a manual transfer on a delay
const transfer = await stripe.transfers.create({
  amount: Math.round(sellerNetEarningsCents * (1 - ROLLING_RESERVE_RATE)), // 95% transferred now
  currency: 'usd',
  destination: seller.stripeAccountId,
  transfer_group: `order_${orderId}`,
  metadata: { order_id: orderId, reserve_amount: Math.round(sellerNetEarningsCents * ROLLING_RESERVE_RATE) },
});

// Schedule the reserve release 90 days later via a cron job or job queue
await reserveQueue.add('release-reserve', {
  sellerId: seller.id,
  orderId,
  reserveAmount: Math.round(sellerNetEarningsCents * ROLLING_RESERVE_RATE),
}, { delay: 90 * 24 * 60 * 60 * 1000 });

1099-K tracking:

Track each seller's gross transaction volume in real-time. For 2024+, the IRS 1099-K threshold is $600.

// Update seller YTD earnings after each order
await db.sellers.update({
  where: { id: sellerId },
  data: { ytdGrossVolume: { increment: orderSubtotal }, ytdTransactions: { increment: 1 } },
});

// Alert when approaching $600 threshold — request W-9 before first payout
const seller = await db.sellers.findUnique({ where: { id: sellerId } });
if (seller.ytdGrossVolume >= 400 && !seller.w9Collected) {
  await sendW9RequestEmail(seller);
}

For 1099 form generation, use TaxBandits API or Track1099 API rather than building IRS form generation from scratch.

Step 3: Configure payout schedules and seller portal

Stripe Connect payout schedule: In the Stripe Dashboard under Connect → Settings → Payouts, configure the default payout schedule for connected accounts (daily, weekly, or monthly). Individual seller accounts can request changes to their schedule within your platform's settings.

Seller earnings dashboard: Sellers need visibility into their earnings, pending payouts, and reserves. Build or use a pre-built portal:

  • Dokan/WCFM: includes a vendor dashboard with earnings, payout requests, and payment history
  • Custom: use the Stripe Connect Account Balance API to show sellers their available balance in real-time

Best Practices

  • Use Stripe Connect Express or Custom accounts — never hold seller funds in a pooled bank account; use Stripe Connect to ensure funds are legally owned by the platform until transferred
  • Collect W-9 before first payout — without a W-9, you must apply 24% IRS backup withholding; make W-9 collection part of seller onboarding
  • Calculate earnings at order capture, not payout time — earnings records should be immutable and linked to specific orders; the payout is a separate aggregation step
  • Implement rolling reserves for new sellers — withhold 5–10% for 90 days to protect against refunds and chargebacks; release automatically on schedule
  • Store commission rates as snapshots — commission rates change over time; never recompute historical earnings with the current rate; record the rate at the time of each sale

Common Pitfalls

ProblemSolution
Stripe Connect transfer fails silentlyListen for the transfer.failed webhook and notify sellers and your ops team immediately
Rolling reserve not released after maturityBuild a daily cron job that checks release dates; test with a short reserve period in staging
1099-K gross amount does not match seller records1099-K must report gross payment volume before platform fees; use gross order amount, not net seller earnings
Backup withholding not applied to sellers without W-9Set a flag in your database when onboarding if W-9 is not collected; apply 24% withholding to all payouts for that seller until it is received
Negative payout when refunds exceed sales in a periodCarry negative balances forward to the next payout period; never request clawbacks from seller bank accounts
Dokan commission not splitting correctlyVerify the commission rate is set at the vendor level (not just global default); check Dokan's logs under Dokan → Logs for transfer errors

Related Skills

  • @stripe-integration
  • @payment-reconciliation-automation
  • @accounts-receivable-automation
  • @tax-compliance-automation
  • @invoice-generation-automation

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.17%
按下载量换算57

Claude

33.95%
按下载量换算53

Cursor

18.41%
按下载量换算29

Gemini CLI

9.32%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills