Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

free-shipping-thresholds免运费门槛

Agent Skill

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

总安装

494

周安装

20

GitHub Stars

19

下载量

155
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill free-shipping-thresholds

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限和维护状态。
  • 使用前建议核实是否会触发联网、命令执行或文件读写操作。
  • free-shipping-thresholds 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Free Shipping Thresholds

Overview

A free shipping threshold motivates customers to add more to their cart to avoid paying for shipping — one of the highest-converting tactics for increasing average order value. The key is showing a dynamic progress bar ("Add $12 more for free shipping") that updates as items are added. Most platforms support this natively or via an app without writing any code.

When to Use This Skill

  • When adding a free shipping banner or cart progress bar to increase average order value
  • When different customer tiers should have different free shipping thresholds
  • When A/B testing different threshold amounts to find the AOV sweet spot
  • When you want to surface "add $X more to unlock free shipping" messages dynamically
  • When free shipping rules should vary by shipping zone (domestic vs. international)

Core Instructions

Step 1: Determine your platform and choose the right tool

PlatformRecommended ToolWhy
ShopifyBuilt-in shipping settings + Hextom Free Shipping Bar appShopify handles the rule; Hextom or similar apps add the visible progress bar
WooCommerceWooCommerce Shipping (built-in free shipping method) + WooCommerce Free Shipping Bar pluginWooCommerce has native free shipping rules; plugins handle the bar UI
BigCommerceBuilt-in free shipping promotion + free shipping bar appBigCommerce has native promotional rules for free shipping thresholds
Custom / HeadlessBuild a rule resolver + progress bar componentFull control over threshold logic, per-segment rules, and UI

Step 2: Set up the free shipping rule

Shopify

Create the free shipping rate (required first):

  1. Go to Settings → Shipping and delivery → Manage rates
  2. Under your shipping zone, click Add rate
  3. Name it "Free Shipping" and set the price to $0.00
  4. Under Conditions, check "Only available if order meets conditions" → Based on order price → set the minimum order price (e.g., $75)
  5. Save

Add the progress bar (Hextom Free Shipping Bar app — free tier available):

  1. Install Hextom: Free Shipping Bar from the Shopify App Store
  2. The app automatically detects your free shipping threshold from Shopify settings
  3. Customize the bar text: "You're {{amount}} away from free shipping!" where {{amount}} is replaced dynamically
  4. Place the bar on cart pages and/or the mini-cart via the app's theme editor
  5. For tiered thresholds (e.g., lower threshold for loyalty members): use the paid tier of Hextom which supports customer-tag-based conditions

Alternative — Shopify Plus: use Scripts for per-segment thresholds:

  • Shopify Scripts (Plus only) let you write Ruby-like code to apply different shipping rates based on customer tags
  • Go to Online Store → Scripts → Shipping to set up segment-specific free shipping rules

WooCommerce

Create the free shipping method:

  1. Go to WooCommerce → Settings → Shipping → [Your shipping zone] → Add shipping method
  2. Select Free Shipping and click Add shipping method
  3. Click on Free Shipping to configure it
  4. Set "Free shipping requires..." to A minimum order amount and enter the threshold (e.g., $75)
  5. Optionally check Coupon to also allow free shipping coupons to trigger this rule
  6. Save changes

Add the progress bar:

  • Install WooCommerce Free Shipping Bar by WPFactory (free on WordPress.org) or Iconic WooCommerce Free Gifts (paid, with bar feature)
  • The WPFactory plugin automatically reads your free shipping threshold and shows the bar in the cart
  • Configure the bar message in the plugin settings: "Add {{amount_remaining}} more to get free shipping!"

For customer-tier-based thresholds:

  • Install the WooCommerce Role-Based Pricing plugin or use conditional logic in the Advanced Shipping plugin to apply different thresholds to different user roles
  • A common approach: create a "Wholesale" user role with a custom free shipping method that triggers at a lower minimum order

BigCommerce

Create the free shipping promotion:

  1. Go to Marketing → Promotions → Create a promotion
  2. Choose Shipping promotion type
  3. Set condition: "Cart subtotal is greater than or equal to [amount]"
  4. Set action: "Free shipping"
  5. Enable the promotion and set start/end dates if it's temporary

Add the progress bar:

  • Install a free shipping bar app from the BigCommerce App Marketplace (search "free shipping bar")
  • Rebolt ‑ Free Shipping Bar is available for BigCommerce and reads your promotion settings automatically

For geographic variation (domestic vs. international):

  • Create separate shipping promotions for different shipping zones in BigCommerce
  • Each promotion can be restricted to specific shipping zones

Step 3: Configure the progress bar message and upsell behavior

Regardless of platform, these messaging best practices apply:

  1. Before threshold: "Add $12.50 more for FREE shipping!" — always show the specific dollar amount, not a percentage
  2. Just before threshold ($5–$15 away): Consider showing product suggestions that fill the gap — "These popular items could qualify you:" (many apps support this)
  3. At threshold: "You've unlocked FREE shipping!" with a congratulatory style — green color, checkmark icon
  4. Place the bar on both the cart page and mini-cart drawer — customers who see it in the mini-cart have higher AOV

Custom / Headless

// Server-side: resolve free shipping status for a cart
function resolveShippingThreshold(params: {
  cartSubtotalCents: number;
  shippingCountry: string;
  customerTags: string[];
  thresholdRules: ShippingThresholdRule[];
}): { isFree: boolean; thresholdCents: number; amountNeededCents: number; progressPct: number } {
  // Find the highest-priority matching rule
  const rule = params.thresholdRules
    .filter(r => r.isActive)
    .filter(r => !r.countries?.length || r.countries.includes(params.shippingCountry))
    .filter(r => !r.customerTags?.length || r.customerTags.some(t => params.customerTags.includes(t)))
    .sort((a, b) => b.priority - a.priority)[0];

  if (!rule) return { isFree: false, thresholdCents: 0, amountNeededCents: 0, progressPct: 0 };

  const isFree = params.cartSubtotalCents >= rule.thresholdCents;
  const amountNeededCents = Math.max(0, rule.thresholdCents - params.cartSubtotalCents);
  const progressPct = Math.min(100, Math.round((params.cartSubtotalCents / rule.thresholdCents) * 100));

  return { isFree, thresholdCents: rule.thresholdCents, amountNeededCents, progressPct };
}
// React component for the progress bar
function FreeShippingBar({ amountNeededCents, progressPct, isFree }: {
  amountNeededCents: number; progressPct: number; isFree: boolean;
}) {
  const formatted = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' })
    .format(amountNeededCents / 100);

  return (
    <div className="free-shipping-bar">
      {isFree ? (
        <p>You've unlocked FREE shipping!</p>
      ) : (
        <p>Add <strong>{formatted}</strong> more for FREE shipping</p>
      )}
      <div className="progress-track">
        <div className="progress-fill" style={{ width: `${progressPct}%` }} />
      </div>
    </div>
  );
}

Step 4: Set the right threshold amount

The threshold should be above your average order value (AOV) but achievable:

  • Rule of thumb: Set the free shipping threshold at 20–30% above your current AOV
  • Test the economics: If your average shipping cost is $8 and your gross margin is 40%, you need the incremental revenue from the upsell to cover the $8 shipping cost
  • A/B test: Tools like Google Optimize (now GA4 Experiments) or Shopify's built-in theme A/B testing let you test different threshold amounts

Best Practices

  • Show the progress bar on both the cart page and the mini-cart — customers who see the progress bar in the mini-cart add items more frequently than those who only see it at full checkout
  • Update in real time — the bar should update immediately when items are added; stale values erode trust
  • Use free shipping as the default reward, not a coupon code — requiring a code adds friction; automatic thresholds convert better
  • Don't apply free shipping to international orders by default — international shipping costs can exceed your entire margin; set geographic restrictions from day one
  • Communicate the threshold in the header/sitewide banner — "Free shipping on orders over $75" in the top bar sets expectations before customers even start shopping

Common Pitfalls

ProblemSolution
Progress bar shows "free shipping" but checkout still chargesDouble-check that the free shipping rate is active in your platform's shipping settings AND that no other rule is overriding it
Free shipping fires when a coupon reduces the cart below thresholdIn WooCommerce, set the free shipping method to require "minimum order amount" after discounts; in Shopify, ensure the shipping rate uses post-discount subtotal
International customers see the free shipping barScope your shipping rate to domestic zones only; configure the app to only show the bar for domestic visitors
Progress bar shows 100% but order is below thresholdEnsure progress calculation uses the same subtotal as the shipping rate rule (post-discount, excluding non-qualifying items)

Related Skills

  • @shipping-rate-calculator
  • @coupon-management
  • @discount-engine
  • @loyalty-points-system
  • @checkout-flow-optimization

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.21%
按下载量换算53

Claude

31.97%
按下载量换算50

Cursor

19.81%
按下载量换算31

Gemini CLI

10.36%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills