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

predictive-personalization预测性个性化

Agent Skill

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

总安装

428

周安装

18

GitHub Stars

19

下载量

150
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill predictive-personalization

简介

预测性个性化技能用于查找、检索和筛选相关信息,支持关键词和场景匹配。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 通过 GitHub 安装,使用 npx skills add 命令添加指定仓库的技能。
  • 需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • predictive-personalization 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Predictive Personalization

Overview

Predictive personalization tailors the shopping experience to each visitor — showing relevant product recommendations, personalized content, and targeted offers based on behavior, purchase history, and patterns from similar customers. For most merchants, dedicated personalization apps deliver this without any custom ML code. Building a custom recommendation engine only makes sense for headless stores with significant traffic (100k+ monthly visitors) where app costs or data control requirements justify the complexity.

When to Use This Skill

  • When your store shows the same products to every visitor regardless of their behavior
  • When you want to add "Recommended for You" sections to your homepage, PDP, or cart
  • When email campaigns send the same products to your entire list
  • When conversion rates are plateauing and you need a lift from relevance
  • When ready to move beyond rule-based merchandising to data-driven personalization

Core Instructions

Step 1: Choose the right personalization tool

PlatformBest ForShopifyWooCommerceBigCommercePrice
RebuyProduct recommendations, cross-sell/upsell widgetsApp StoreLimitedLimited$99+/mo
LimeSpotPersonalization + merchandisingApp StorePluginApp Marketplace$18+/mo
NostoMid-market, full homepage + email personalizationApp StorePluginApp MarketplaceRevenue-share
Dynamic YieldEnterprise, full A/B testing + personalizationVia JS tagVia JS tagVia JS tag$1,000+/mo
Klaviyo (email)Personalized product blocks in email flowsApp StorePluginApp MarketplaceIncluded in Klaviyo
CustomHeadless stores, 100k+ visitors/moAPIAPIAPIDev cost

Recommendation by store size:

  • Under $1M revenue: Rebuy or LimeSpot for recommendation widgets; Klaviyo for personalized email
  • $1M–$10M revenue: Nosto for full-site + email personalization
  • $10M+: Dynamic Yield for enterprise personalization + experimentation

Step 2: Set up product recommendations


Shopify

With Rebuy:

  1. Install Rebuy from the Shopify App Store
  2. Go to Rebuy → Smart Cart to add AI-powered cross-sell recommendations to your cart page — no code required
  3. Go to Rebuy → Data Sources to configure recommendation logic:

- "Frequently Bought Together" — products purchased together in the same order - "Similar Products" — products with similar tags and attributes - "Recommended for You" — personalized based on browsing history

  1. Go to Rebuy → Widgets to add recommendation carousels to product pages, the cart, and the homepage
  2. Rebuy connects directly to Shopify's order data to compute co-purchase patterns — no additional setup needed

With LimeSpot:

  1. Install LimeSpot Personalizer from the Shopify App Store
  2. Go to LimeSpot → Placements to add recommendation boxes to any page (homepage, collection, product, cart)
  3. Set the recommendation strategy per placement: "Trending," "Recently Viewed," "You May Also Like," or "Frequently Bought Together"
  4. LimeSpot learns from your store's behavioral data automatically

WooCommerce

  1. Go to WooCommerce → Products → [Product] → Linked Products to add manual cross-sells and upsells per product
  2. For automated ML-based recommendations: install LimeSpot for WooCommerce or Barilliance plugin
  3. For email personalization: configure Klaviyo dynamic product blocks in post-purchase flows (Klaviyo's Catalog block uses purchase history to generate personalized recommendations automatically)

Alternative (simpler): install YITH WooCommerce Frequently Bought Together — it adds "Customers who bought this also bought" sections using your order history, without requiring a monthly subscription.


BigCommerce

  1. Go to BigCommerce App Marketplace and install LimeSpot or Nosto
  2. Both apps integrate with BigCommerce's product and order APIs to compute recommendations
  3. For email: install Klaviyo from the BigCommerce App Marketplace and use Catalog blocks for personalized product recommendations in flows

Custom / Headless

For headless stores, build a recommendation engine using behavioral event data and collaborative filtering:

// Collect behavioral events for each visitor
interface PersonalizationEvent {
  userId: string | null;       // null for anonymous visitors
  sessionId: string;
  eventType: 'view' | 'add_to_cart' | 'purchase';
  productId: string;
  categoryId?: string;
  timestamp: Date;
}

// Maintain a real-time user profile in Redis
async function updateUserProfile(event: PersonalizationEvent) {
  const key = event.userId ?? `anon:${event.sessionId}`;

  const recentViews = JSON.parse(await redis.get(`profile:${key}:views`) ?? '[]');
  if (event.eventType === 'view') {
    recentViews.unshift(event.productId);
    if (recentViews.length > 50) recentViews.pop();
    await redis.setex(`profile:${key}:views`, 30 * 86400, JSON.stringify(recentViews));
  }

  const categoryScores = JSON.parse(await redis.get(`profile:${key}:categories`) ?? '{}');
  if (event.categoryId) {
    const weight = { view: 1, add_to_cart: 3, purchase: 5 }[event.eventType] ?? 1;
    categoryScores[event.categoryId] = (categoryScores[event.categoryId] ?? 0) + weight;
    await redis.setex(`profile:${key}:categories`, 30 * 86400, JSON.stringify(categoryScores));
  }
}

// Nightly batch job: build co-purchase similarity from 90-day order history
// Serve recommendations via Redis cache for sub-10ms response times
// Fallback: trending/popular items when user has no history (cold start)

For most headless stores, use Nosto's or Dynamic Yield's JavaScript widget + REST API instead of building from scratch. The API surfaces the same personalization data without maintaining the recommendation engine infrastructure.

Step 3: Personalize email with dynamic product blocks

This works for all platforms via Klaviyo:

  1. In any Klaviyo flow (post-purchase, win-back, browse abandonment), add a Product Block
  2. Set the product source to "Personalized Recommendations" — Klaviyo uses the recipient's purchase history to select products
  3. Or use "Cross-sell" — Klaviyo shows products frequently bought alongside what the customer last purchased
  4. Preview the email for different customer profiles to verify recommendations vary by recipient

Step 4: Set up "Recommended for You" on the homepage


Shopify with Rebuy or LimeSpot

  1. In the app dashboard, go to Placements → Homepage
  2. Set the recommendation strategy to "Recommended for You" (requires at least one prior visit/purchase to personalize; shows trending for new visitors)
  3. Use the app's theme editor widget — drag it into your homepage section in Shopify → Online Store → Themes → Customize

Step 5: Measure personalization impact

Always A/B test personalization before full rollout. Both Rebuy and Nosto have built-in A/B testing:

MetricTargetWhere to Find
Recommendation widget CTR> 5%App analytics dashboard
Revenue attributed to recommendations10–20% of totalApp analytics
AOV lift (personalized vs. control)> 5%App A/B test results
Email personalized block CTR vs. static> 2× higherKlaviyo flow analytics

Best Practices

  • Start with post-purchase cross-sell — "Customers who bought X also bought Y" is the highest-converting recommendation placement; set it up on the order confirmation page and in post-purchase emails
  • Show "Recently Viewed" on the homepage — returning visitors who see their previously viewed products have 3–4× higher conversion rates; Rebuy and LimeSpot both support this out of the box
  • Use trending/popular as the fallback — new visitors with no history should see trending products, not empty recommendation slots
  • Diversify recommendations across categories — enforce a maximum of 4 items per category to avoid showing 12 near-identical products
  • Test personalization vs. editorial curation — for some product types (luxury goods, gifts), curated staff picks can outperform algorithmic recommendations

Common Pitfalls

ProblemSolution
Recommendations show already-purchased itemsConfigure the app to exclude previously purchased products from recommendations
New store with no data — recommendations look wrongUse "Trending" or editorial curation for the first 60–90 days while behavioral data accumulates
Recommendations are all from one categoryEnable diversity controls in app settings; most apps support "max items per category"
Personalized email recommendations are same for everyoneVerify Klaviyo is receiving Placed Order events from your platform; check Klaviyo → Integrations status

Related Skills

  • @cross-sell-upsell-engine
  • @email-marketing-automation
  • @ab-testing-ecommerce
  • @customer-analytics
  • @search-autocomplete

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.97%
按下载量换算58

Claude

31.54%
按下载量换算47

Cursor

17.39%
按下载量换算26

Gemini CLI

9.13%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills