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

cross-sell-upsell-engine交叉销售追加销售引擎

Agent Skill

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

总安装

528

周安装

22

GitHub Stars

19

下载量

176
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill cross-sell-upsell-engine

简介

cross-sell-upsell-engine 分析电商订单数据并提供交叉销售与追加销售的产品推荐策略建议。

  • 适用于平均客单价偏低、希望在不增加获客成本前提下提升收入的在线零售场景。
  • 推荐从单一页面(商品详情页/购物车)开始试点,优先采用平台内置算法降低开发复杂度。
  • 实施前需评估平台插件生态,避免重复造轮子;初期应小流量测试再全量上线。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Cross-Sell and Upsell Engine

Overview

Cross-sells and upsells generate 10–30% incremental revenue with minimal customer acquisition cost. Every major e-commerce platform has apps that handle the recommendation logic without custom code. The key decisions are: which placement to start with (PDP, cart, or post-purchase), what recommendation logic to use (manual bundles vs. algorithm-based), and how to avoid checkout friction. Start with one placement and measure before expanding.

When to Use This Skill

  • When average order value (AOV) is below industry benchmarks and you want to grow it without paid traffic
  • When launching a new recommendation widget on PDP, cart, or checkout pages
  • When replacing a generic "You may also like" carousel with affinity-based personalization
  • When building a bundle builder or "complete the look" feature
  • When wanting to A/B test recommendation placements

Core Instructions

Step 1: Choose the right tool for your platform

PlatformRecommended ToolWhy
ShopifyRebuy (most powerful) or Frequently Bought TogetherRebuy uses AI-based recommendations with multiple placement types; FBT is simpler and cheaper for basic "people also bought"
Shopify (Plus)Rebuy + Shopify FunctionsShopify Functions allows custom cart transforms for bundle discounts
WooCommerceWooCommerce built-in cross-sell/upsell + YITH WooCommerce Frequently Bought TogetherWooCommerce has native upsell and cross-sell fields on every product; YITH adds the "FBT" widget
BigCommerceAlso Bought or Boost Commerce (App Marketplace)Both integrate natively with BigCommerce product catalog
Custom / HeadlessRebuy API or RecombeeBoth offer recommendation APIs; Rebuy integrates directly with Shopify/BigCommerce backends

Step 2: Decide on placement — start with one

PlacementExpected AOV LiftConversion RiskStart Here?
Product page (below Add to Cart)ModerateLowYes — best starting point
Cart page (sidebar or bottom)HighLowYes — high intent, low friction
Post-purchase pageHighNone (order already placed)Yes — zero risk to conversion
Checkout pageHighMedium-HighNo — test this last; can hurt CVR

Recommendation: start with product page + cart page. Add post-purchase after measuring results. Only add checkout recommendations if you have data showing they lift revenue without hurting CVR.

Step 3: Set up recommendations on your platform


Shopify

Using Rebuy (recommended for full-featured setup):

  1. Install Rebuy from the Shopify App Store
  2. Go to Rebuy → Smart Cart to enable AI-powered cart recommendations — configure the number of products to show (2–3) and placement (cart drawer or cart page)
  3. Go to Rebuy → Product Page Widgets to add a "Frequently Bought Together" widget below the Add to Cart button
  4. Go to Rebuy → Post-Purchase Offers to add a one-click upsell on the order confirmation page
  5. Rebuy uses Shopify's order history to compute co-purchase affinity automatically — no manual configuration needed
  6. To create manual bundles: go to Rebuy → Data Sources → Manual Recommendations and pair specific products

Using Frequently Bought Together (simpler, cheaper):

  1. Install from the Shopify App Store
  2. The app automatically analyzes order history to suggest product pairs
  3. Review auto-generated bundles under FBT → Bundles and remove irrelevant pairs
  4. Configure the widget appearance to match your theme
  5. Set a bundle discount (optional) — 5–10% off when both products are added together

For post-purchase upsells on Shopify:

  • Use ReConvert or CartHook for post-purchase one-click upsell pages
  • These show immediately after checkout is completed but before the thank-you page

WooCommerce

Using WooCommerce native cross-sells and upsells:

  1. Go to WooCommerce → Products → [Edit any product]
  2. In the Linked Products tab, add:

- Upsells: products to show on the product page as "You may also like" (higher-priced alternatives) - Cross-sells: products to show in the cart sidebar

  1. WooCommerce shows cross-sells in the cart automatically — no additional plugin needed

Using YITH WooCommerce Frequently Bought Together (free version available):

  1. Install from the WordPress plugin directory
  2. Go to YITH → Frequently Bought Together → General Settings and configure the widget title and discount amount
  3. On each product's edit page, go to the FBT tab and manually select companion products, or enable auto-recommendations
  4. The widget appears below the Add to Cart button automatically

For post-purchase upsells on WooCommerce:

  • Use CartFlows + AutomateWoo for post-purchase funnel pages
  • Or use WooFunnels / FunnelKit which includes post-purchase upsell flows

BigCommerce

  1. Install Also Bought from the BigCommerce App Marketplace
  2. The app analyzes your order history and automatically generates "Customers Also Bought" recommendations
  3. Configure placement (product page, cart page) and number of products shown in the app settings
  4. For manual control: go to the product editor in BigCommerce Admin and use the Related Products feature to manually specify related items

Custom / Headless

Use Rebuy's API or Recombee for headless storefronts:

Rebuy API (if your backend is Shopify/BigCommerce):

// Fetch recommendations from Rebuy for a given product
const response = await fetch(
  `https://rebuyengine.com/api/v1/products/recommended?key=${REBUY_API_KEY}&shopify_product_ids=${productId}&limit=4`
);
const { data } = await response.json();

Build co-purchase recommendations from order data (only if no third-party tool):

// Compute product affinity from co-purchase frequency
// Run nightly — minimum 1,000 orders for meaningful signal
async function computeProductAffinity() {
  const orders = await db.orders.findAll({ where: { status: 'completed' }, include: ['lineItems'] });

  const coMatrix: Record<string, Record<string, number>> = {};
  for (const order of orders) {
    const productIds = [...new Set(order.lineItems.map((li: any) => li.productId))];
    for (let i = 0; i < productIds.length; i++) {
      for (let j = i + 1; j < productIds.length; j++) {
        const [a, b] = [productIds[i], productIds[j]].sort();
        coMatrix[a] = coMatrix[a] ?? {};
        coMatrix[a][b] = (coMatrix[a][b] ?? 0) + 1;
      }
    }
  }
  // Store results and filter to pairs with at least 3 co-purchases
  // Serve from a cached API endpoint with 1-hour TTL
}

Step 4: Configure pricing and discount strategy

  • Bundle discounts: 5–10% off when both products are added together — enough to motivate, not enough to erode margin
  • Upsell price range: show upsells priced 10–50% above the current product; upsells above 2× the original price rarely convert
  • Checkout recommendations: limit to 1–2 low-cost add-ons (under $30) — multiple recommendations at checkout increase abandonment
  • Post-purchase offers: these can be higher-priced since the customer is already in a buying mindset

Step 5: Measure results

Track these metrics weekly in your recommendation app's analytics:

MetricTargetWhere to Find
Recommendation CTR8–15% (PDP), 15–25% (cart)Rebuy → Analytics, FBT → Reports
Orders with recommended item added5–15% of all ordersApp dashboard → Attach rate
AOV lift from recommendations$5–$20 depending on catalogCompare AOV of orders with/without recommendation clicks

Best Practices

  • Exclude out-of-stock items from recommendations — always — nothing is more frustrating than clicking a recommendation that is unavailable (Rebuy and most apps handle this automatically)
  • Start with 3–4 recommendations max — showing more products creates decision paralysis and reduces CTR
  • Manual overrides for new products — new SKUs have no purchase history; manually configure them as recommended alongside bestsellers for the first 30 days (all major apps have manual override)
  • Refresh auto-recommendations after seasonal changes — purchasing patterns shift; review recommendations quarterly
  • Track recommendation attribution separately — tag orders where a recommended item was added so you can measure true incremental AOV

Common Pitfalls

ProblemSolution
Checkout recommendations increase cart abandonmentA/B test before enabling; limit to 1 low-cost item under $30; remove if test shows negative impact
Recommendations show the same product being viewedExclude the current product from recommendations (most apps do this automatically; verify in settings)
Cold start — no recommendations for new productsAdd manual recommendations in your app's admin panel; pair new products with bestsellers
Recommendations irrelevant (e.g., suggest a phone case with a t-shirt)Review auto-generated recommendations and block irrelevant pairs using the "block" feature in your app
Bundle discount codes being shared publiclyUse your app's built-in auto-apply discount (no code to share) rather than coupon codes

Related Skills

  • @predictive-personalization
  • @customer-retention-engine
  • @conversion-rate-optimization
  • @loyalty-program-optimization
  • @email-marketing-automation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.29%
按下载量换算67

Claude

27.95%
按下载量换算49

Cursor

17.9%
按下载量换算32

Gemini CLI

8.79%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills