Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计提醒

tax-calculation税收计算

Agent Skill

tax-calculation 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

519

周安装

21

GitHub Stars

19

下载量

163
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill tax-calculation

简介

Tax Calculation 引擎,自动计算商品税费与跨境交易税额。

  • 适合电商平台订单计价、发票开具或财务系统集成。
  • 嵌入 awesome-ecommerce-skills 套件,强调商业逻辑准确性。
  • 需定期同步税率表更新以防计算偏差。
  • tax-calculation 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Tax Calculation

Overview

Accurate tax calculation at checkout is a legal requirement, not an optimization. In the United States, there are over 13,000 taxing jurisdictions. EU VAT rules require charging the customer's local VAT rate. Getting it wrong leads to under-collection (a liability you must cover) or over-collection (refunds and customer complaints). All major platforms have built-in tax calculation or direct integrations with TaxJar and Avalara that handle this correctly without custom code.

When to Use This Skill

  • When expanding sales to states or countries where you have tax nexus obligations
  • When manual tax rates are causing compliance issues or needing constant updates
  • When implementing EU VAT compliance (OSS/IOSS registration)
  • When displaying accurate tax before the customer confirms payment

Core Instructions

Step 1: Understand nexus before configuring tax

You only need to collect tax in jurisdictions where you have nexus (a tax obligation).

US Sales Tax nexus:

  • Physical nexus: you have employees, warehouses, or offices in a state
  • Economic nexus: most states trigger at $100,000/year in sales OR 200 transactions to customers in that state (California and Texas use $500,000)
  • Check each state's current threshold before configuring — thresholds change

EU VAT:

  • EU-based sellers must charge VAT at the customer's country rate for all EU sales
  • Non-EU sellers must register for EU VAT (via OSS scheme) once annual EU B2C sales exceed €10,000
  • B2B sales within the EU: reverse charge applies — the buyer handles VAT via self-assessment

Step 2: Set up tax calculation on your platform


Shopify

Option A: Shopify's built-in tax (recommended for US stores)

  1. Go to Settings → Taxes and duties
  2. Under Tax regions, select the regions where you have nexus
  3. For US: Shopify calculates taxes automatically at the correct state + county + city rate based on the customer's shipping address — no third-party service needed for basic US compliance
  4. Enable Charge tax on shipping if your state requires it (varies by state)
  5. For product-level exemptions (e.g., clothing exempt in PA): go to Products → [Product] → Tax and set the appropriate tax category or create a custom tax override

Option B: Stripe Tax (via Shopify + Stripe)

Shopify's built-in tax covers US well. For international VAT compliance, install Stripe Tax via a Shopify app integration.

Option C: TaxJar or Avalara (for complex multi-jurisdiction requirements)

  1. Install TaxJar or Avalara AvaTax from the Shopify App Store
  2. Follow the app's setup wizard: connect to your Shopify store, enter your nexus states, and configure product tax categories
  3. The app replaces Shopify's built-in tax calculation with its own real-time calculation at checkout
  4. Committed transactions are automatically sent to TaxJar/Avalara for filing reports

WooCommerce

Option A: WooCommerce built-in tax

  1. Go to WooCommerce → Settings → Tax and enable tax calculation
  2. Set your store base address (this affects which rates apply)
  3. Go to Tax → Standard rates and manually enter rates per state/country
  4. Limitation: manual rates are not updated automatically; for compliance, use TaxJar or Avalara

Option B: TaxJar (recommended for US compliance)

  1. Sign up at taxjar.com and get your API token
  2. Install TaxJar for WooCommerce plugin (free, from WordPress.org)
  3. Go to WooCommerce → TaxJar and enter your API token
  4. Enable Automatic tax calculation — TaxJar calculates the correct rate at checkout in real-time based on your nexus states and the customer's address
  5. Enable Transaction sync — completed orders are automatically sent to TaxJar for filing reports

Option C: Avalara AvaTax

  1. Sign up at avalara.com and create a company in AvaTax
  2. Install the Avalara AvaTax for WooCommerce plugin
  3. Enter your Account ID, License Key, and Company Code from the Avalara dashboard
  4. Enable calculation and transaction recording

BigCommerce

  1. Go to Store Setup → Tax
  2. BigCommerce has a built-in tax calculation for basic US rates
  3. For full compliance: go to Store Setup → Tax → Tax Provider and connect Avalara AvaTax or TaxJar
  4. Follow the provider's BigCommerce setup guide — both have native integrations that replace the built-in tax engine with real-time compliant calculations

EU VAT on BigCommerce: Enable VAT by country under Store Setup → Tax → VAT for EU VAT compliance. For full OSS compliance, use Avalara's EU VAT module.


Custom / Headless

Use Stripe Tax (simplest) or the TaxJar/Avalara API directly:

Option A: Stripe Tax (recommended for Stripe-based stores)

// Enable Stripe Tax on the PaymentIntent — Stripe calculates and collects tax automatically
const paymentIntent = await stripe.paymentIntents.create({
  amount: orderSubtotalCents, // Subtotal only — Stripe adds tax
  currency: 'usd',
  automatic_payment_methods: { enabled: true },
  // Stripe Tax configuration
  // See: https://stripe.com/docs/tax/integration
});

// Or use Stripe Checkout with automatic_tax enabled:
const session = await stripe.checkout.sessions.create({
  line_items: lineItems,
  mode: 'payment',
  automatic_tax: { enabled: true }, // Stripe Tax handles calculation
  customer_details: { address: { country: customerCountry }, address_source: 'shipping' },
  success_url: `${domain}/success`,
  cancel_url: `${domain}/cart`,
});

Configure Stripe Tax under Stripe Dashboard → Tax → Configure — set your tax registration numbers and the tax behaviors for each product category.

Option B: TaxJar API

const Taxjar = require('taxjar');
const taxjar = new Taxjar({ apiKey: process.env.TAXJAR_API_KEY });

async function calculateTaxForOrder({ fromAddress, toAddress, lineItems, shippingCost }) {
  const response = await taxjar.taxForOrder({
    from_country: fromAddress.country,
    from_zip: fromAddress.zip,
    from_state: fromAddress.state,
    to_country: toAddress.country,
    to_zip: toAddress.zip,
    to_state: toAddress.state,
    to_city: toAddress.city,
    amount: lineItems.reduce((sum, i) => sum + i.unit_price * i.quantity, 0),
    shipping: shippingCost,
    line_items: lineItems.map(item => ({
      id: item.id,
      quantity: item.quantity,
      unit_price: item.unit_price,
      product_tax_code: item.tax_code ?? null, // e.g., '20010' for general goods
    })),
  });

  return {
    totalTax: response.tax.amount_to_collect,
    taxRate: response.tax.rate,
    hasNexus: response.tax.has_nexus, // false = no tax to collect
    breakdown: response.tax.breakdown,
  };
}

// After order is confirmed, commit the transaction for filing reports
async function commitTaxTransaction(order) {
  await taxjar.createOrder({
    transaction_id: order.id,
    transaction_date: new Date().toISOString().split('T')[0],
    from_country: WAREHOUSE_ADDRESS.country,
    from_zip: WAREHOUSE_ADDRESS.zip,
    from_state: WAREHOUSE_ADDRESS.state,
    to_country: order.shippingAddress.country,
    to_zip: order.shippingAddress.zip,
    to_state: order.shippingAddress.state,
    amount: order.subtotal,
    shipping: order.shippingCost,
    sales_tax: order.taxAmount,
    line_items: order.lineItems.map(item => ({
      id: item.id,
      quantity: item.quantity,
      unit_price: item.price,
      sales_tax: item.taxAmount,
    })),
  });
}

EU VAT reverse charge (B2B cross-border within EU):

For EU B2B transactions, validate the buyer's VAT number via the EU VIES service before applying zero-rate:

async function validateEUVATNumber(vatNumber) {
  const countryCode = vatNumber.slice(0, 2);
  const number = vatNumber.slice(2);
  const res = await fetch(
    `https://ec.europa.eu/taxation_customs/vies/rest-api/ms/${countryCode}/vat/${number}`
  );
  const data = await res.json();
  return data.isValid === true;
}

Step 3: Commit tax transactions after order completion

Tax calculation services require you to "commit" each transaction after payment is confirmed — this records it in your filing reports. TaxJar and Avalara apps for Shopify/WooCommerce do this automatically. For custom integrations, call the create/commit API after the order is confirmed (not before payment).

Best Practices

  • Never hard-code tax rates — rates change constantly; use TaxJar, Avalara, Stripe Tax, or your platform's built-in tax engine
  • Calculate tax in real-time at checkout — display the exact tax amount before the customer confirms payment; estimated tax that changes at payment causes distrust and cart abandonment
  • Commit transactions after payment, not before — only committed transactions appear in filing reports; commit when the payment is confirmed
  • Void tax transactions on refunds — when you issue a refund, void the corresponding tax transaction in TaxJar/Avalara to avoid over-reporting on your filing
  • Handle tax API errors gracefully — if the tax API is unavailable, apply a fallback rate (US average ~8.5%) rather than blocking checkout

Common Pitfalls

ProblemSolution
Tax calculated but not committed to the filing APIEnsure your platform integration (TaxJar plugin, Avalara plugin) is configured to auto-commit on order completion; verify in the provider's transaction dashboard
EU VAT charged on B2B cross-border salesValidate VAT numbers via VIES before applying reverse charge; if validation fails, charge VAT as B2C
Tax API adds 500ms to checkoutTaxJar and Avalara both have caching built into their Shopify/WooCommerce plugins; for custom builds, cache estimates by destination zip code and cart total for 1 hour
Shopify charging wrong tax rate for a stateVerify your nexus state list in Settings → Taxes is correct and up to date; check for product-level tax overrides that may be incorrectly configured
WooCommerce showing "0 tax" after TaxJar installVerify TaxJar API key is correct; check the plugin's status page for API errors; confirm your warehouse address and nexus states are configured in the TaxJar dashboard

Related Skills

  • @checkout-flow-optimization
  • @multi-currency
  • @order-processing-pipeline
  • @stripe-integration
  • @tax-compliance-automation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.25%
按下载量换算56

Claude

30.62%
按下载量换算50

Cursor

18.8%
按下载量换算31

Gemini CLI

8.96%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills