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

recently-viewed-products最近查看的产品

Agent Skill

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

总安装

423

周安装

18

GitHub Stars

19

下载量

148
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill recently-viewed-products

简介

recently-viewed-products 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景快速定位候选结果。
  • 通过命令行调用,需提供查询目标和筛选条件。
  • 安装前建议确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Recently Viewed Products

Overview

Track which products a shopper views and display them in a "Recently Viewed" widget on product pages, the cart, and the homepage. Uses browser storage for within-session and cross-session history. Product data is always re-fetched from the server to avoid showing stale prices or out-of-stock items.

When to Use This Skill

  • When implementing a "Continue where you left off" experience for returning visitors
  • When adding a "Recently Viewed" widget to product detail pages or the cart drawer
  • When integrating with a personalization engine that requires client-side behavioral data
  • When building a headless storefront and need lightweight browsing history without a backend dependency

Core Instructions

Step 1: Determine the merchant's platform and choose the right approach

PlatformRecommended ApproachWhy
ShopifyEnable the built-in Recently Viewed section in your OS2.0 theme, or install Also Bought • Related products / LimeSpot PersonalizerDawn and most OS2.0 themes include a native Recently Viewed section; LimeSpot ($15/mo) adds AI-powered personalization including recently viewed across sessions
WooCommerceUse WooCommerce's built-in Recently Viewed Products widget or shortcode, or install YITH WooCommerce Frequently Bought TogetherWooCommerce includes a recently viewed widget out of the box; place it via Appearance → Widgets or with the [recent_products] shortcode
BigCommerceUse the Recently Viewed widget in the BigCommerce Page Builder or enable it in the Cornerstone theme settingsCornerstone and BigCommerce Page Builder both include a native Recently Viewed widget that uses browser cookies automatically
Custom / HeadlessImplement localStorage-based view tracking with a server-side batch endpoint to fetch fresh product dataClient-side storage means no server state needed; re-fetching data on display ensures prices and stock are current

Step 2: Enable Recently Viewed on your platform


Shopify

Using a built-in section (OS2.0 themes — Dawn, Sense, Craft):

  1. Go to Online Store → Themes → Customize
  2. Navigate to a product page template
  3. Click Add section and search for "Recently Viewed" — it appears as Recently viewed products in the section list
  4. Configure it:

- Set Maximum products to show (4–8 recommended) - Set the section heading text ("Recently Viewed", "Your Browsing History", etc.) - Set product card style: show price, show rating, etc.

  1. The section uses JavaScript and browser storage (localStorage) automatically — no additional configuration needed

For the homepage:

  1. Go to your homepage template
  2. Add a Recently viewed products section in the same way
  3. This section will only render content for returning visitors who have previously browsed products

LimeSpot Personalizer (cross-device, AI-powered):

  1. Install from the Shopify App Store
  2. LimeSpot tracks views server-side (not just in the browser) so recently viewed persists across devices and browsers
  3. Configure the Recently Viewed widget placement in the LimeSpot dashboard — it can appear on any page via app blocks

WooCommerce

Built-in Recently Viewed widget:

  1. Go to Appearance → Widgets
  2. Find the WooCommerce Recently Viewed Products widget
  3. Drag it to your Shop Sidebar or Footer widget area
  4. Configure:

- Number of products to show: 4–6 recommended - Show title: Yes/No

  1. Alternatively, place the shortcode [woocommerce_recently_viewed_products per_page="4"] directly in a product page template, sidebar, or Gutenberg block

For Classic Editor / Gutenberg:

  • In Gutenberg, add a Shortcode block and paste [woocommerce_recently_viewed_products per_page="4"]
  • For Elementor: use the Shortcode widget to embed the same code

WooCommerce stores recently viewed product IDs in the visitor's session (PHP session / cookie) — no plugin required. The widget reads from this session automatically.


BigCommerce

Built-in Recently Viewed widget (Cornerstone theme):

  1. Go to Storefront → My Themes → Customize
  2. Navigate to a product page template
  3. In the sidebar, find the Recently Viewed section and enable it (or adjust its position in the page layout)
  4. Set the number of products to display
  5. BigCommerce uses browser cookies to track recently viewed products — no app needed

Page Builder approach:

  1. Go to Storefront → Page Builder
  2. Open any page where you want the widget
  3. Drag the Recently Viewed Products widget from the widget panel onto the page
  4. Configure display settings in the widget panel on the right

Custom / Headless

localStorage-based view tracking:

// lib/recentlyViewed.js
const STORAGE_KEY = 'rv_products';
const MAX_ITEMS = 12;
const TTL_MS = 30 * 24 * 60 * 60 * 1000; // 30 days

export function recordView(productId) {
  const items = getStoredItems();
  const filtered = items.filter(i => i.id !== productId); // remove existing entry
  const updated = [{ id: productId, viewedAt: Date.now() }, ...filtered].slice(0, MAX_ITEMS);
  try { localStorage.setItem(STORAGE_KEY, JSON.stringify(updated)); } catch {}
}

export function getRecentlyViewedIds(excludeId = null) {
  const now = Date.now();
  return getStoredItems()
    .filter(i => now - i.viewedAt < TTL_MS && i.id !== excludeId)
    .map(i => i.id);
}

function getStoredItems() {
  try { return JSON.parse(localStorage.getItem(STORAGE_KEY) ?? '[]'); }
  catch { return []; }
}

Record view on the product detail page:

// In ProductDetailPage.jsx — read localStorage only in useEffect to avoid SSR mismatch
import { useEffect } from 'react';
import { recordView } from '../lib/recentlyViewed';

export function ProductDetailPage({ product }) {
  useEffect(() => { recordView(product.id); }, [product.id]);
  return (
    <div>
      {/* product content */}
      <RecentlyViewedWidget excludeId={product.id} maxItems={4} />
    </div>
  );
}

Widget component — re-fetches fresh product data from the server:

// RecentlyViewedWidget.jsx
export function RecentlyViewedWidget({ excludeId, maxItems = 4 }) {
  const [products, setProducts] = useState([]);

  useEffect(() => {
    const ids = getRecentlyViewedIds(excludeId).slice(0, maxItems);
    if (ids.length === 0) return;

    fetch('/api/products/by-ids', {
      method: 'POST',
      headers: { 'Content-Type': 'application/json' },
      body: JSON.stringify({ ids }),
    })
      .then(r => r.json())
      .then(data => {
        // Preserve the viewed order (API may return in any order)
        const map = new Map(data.products.map(p => [p.id, p]));
        setProducts(ids.map(id => map.get(id)).filter(Boolean));
      })
      .catch(() => {}); // Non-critical — fail silently
  }, [excludeId, maxItems]);

  if (products.length === 0) return null;

  return (
    <section aria-label="Recently viewed">
      <h2>Recently Viewed</h2>
      <div className="recently-viewed-grid">
        {products.map(product => (
          <article key={product.id}>
            <a href={product.url}>
              <img src={product.image} alt={product.name} loading="lazy" width="150" height="150" />
              <p>{product.name}</p>
              <p>${product.price}</p>
            </a>
          </article>
        ))}
      </div>
    </section>
  );
}

Batch product endpoint (Node.js):

// api/products/by-ids.js
export async function getProductsByIds(req, res) {
  const { ids } = req.body;
  if (!Array.isArray(ids) || ids.length === 0 || ids.length > 20)
    return res.status(400).json({ error: 'Invalid ids' });

  const products = await db.products.findMany({
    where: { id: { in: ids }, published: true },
    select: { id: true, name: true, price: true, image: true, url: true, inStock: true },
  });
  res.json({ products });
}

Best Practices

  • Store only product IDs, not full product objects — prices and availability change; always re-fetch from the server when rendering the widget
  • Exclude the current product — pass excludeId to prevent showing the product the shopper is already viewing
  • Fail silently — the recently viewed widget is non-critical; catch all errors and render nothing rather than breaking the page
  • Hydrate after mount — in SSR frameworks, read from localStorage inside useEffect to avoid server/client mismatch
  • Respect privacy consent — only write to storage after the user has accepted analytics cookies if your cookie policy requires it
  • Consider TTL expiry — purge entries older than 30 days on read to avoid showing discontinued products

Common Pitfalls

ProblemSolution
Hydration mismatch in Next.js / SSRRead localStorage only inside useEffect, never during render; initialize state as empty array
localStorage throws in private browsingWrap all reads/writes in try/catch; fall back to in-memory array for the current session
Widget shows out-of-stock or deleted productsFilter server response to only include published: true products; never trust stored IDs to reflect current catalog state
Duplicate product appears at multiple positionsBefore prepending, filter out the existing entry for that product ID
Widget causes layout shift on loadReserve the widget's height with a min-height skeleton while data loads, or position it below the fold

Related Skills

  • @wishlist-save-for-later
  • @product-page-design
  • @product-comparison
  • @storefront-theming

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.44%
按下载量换算55

Claude

29.38%
按下载量换算43

Cursor

17.15%
按下载量换算25

Gemini CLI

9.75%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills