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

commerce-js-integration商务 js 集成

Agent Skill

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

总安装

442

周安装

19

GitHub Stars

19

下载量

155
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill commerce-js-integration

简介

commerce-js-integration 用于 Commerce.js(Chec)平台的 JavaScript SDK 集成。

  • 适用于快速添加电商功能到静态网站或 React/Vue/Svelte 项目等场景。
  • 通过安装命令 npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill commerce-js-integration 从 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Commerce.js Integration

Overview

Commerce.js (Chec) is a headless commerce platform offering a JavaScript SDK that wraps its REST API for managing products, carts, checkouts, and orders. It is designed for developers who want to add commerce functionality to any website or JavaScript framework without the complexity of a full e-commerce platform. The SDK handles product fetching, cart lifecycle, checkout token creation, and order capture in a straightforward, promise-based API.

When to Use This Skill

  • When you want to add e-commerce to a static site or simple React/Vue/Svelte project quickly
  • When you don't need a complex backend and want a managed commerce API without server-side code
  • When building a portfolio project, MVP, or proof-of-concept headless store
  • When your catalog is small (under 1,000 products) and you don't need custom fulfillment logic
  • When you want a simple SDK without managing a full Shopify or commercetools environment

Prerequisites & Platform Notes

This skill is written for custom/headless storefronts (Node.js, Python, or similar backend). The code examples use TypeScript/Node.js and can be adapted to any stack.

Shopify: Shopify Hydrogen is Shopify's headless framework. MACH/composable patterns apply when using Shopify as the commerce backend with a custom frontend, or when mixing Shopify with other best-of-breed services. WooCommerce: WooCommerce can serve as a headless backend via its REST API and WPGraphQL. These patterns apply when decoupling the frontend from WordPress. Magento: Magento's GraphQL API and PWA Studio support headless architectures. These composable patterns apply to Magento as a backend service in a MACH stack.

You'll need:

  • Node.js 18+ (or adapt to your backend language)
  • Stripe account and API keys
  • An email sending service (SendGrid, AWS SES, or Postmark)

Core Instructions

  1. Install the SDK and initialize the client npm install @chec/commerce.js import Commerce from '@chec/commerce.js'; // Public key is safe to expose in the browser const commerce = new Commerce(process.env.NEXT_PUBLIC_CHEC_PUBLIC_KEY, true); // true = debug mode Get your public API key from the Chec Dashboard under Developer → API keys.
  2. Fetch and display products // Fetch all products const {data: products} = await commerce.products.list({limit: 20, page: 1, sort_by: 'created', sort_direction: 'desc',}); // Fetch a single product by permalink (slug) const product = await commerce.products.retrieve('my-product-slug', {type: 'permalink'}); // Products include structured data console.log({id: product.id, name: product.name, price: product.price.formatted_with_symbol, // "$29.99" description: product.description, // HTML string from Chec CMS image: product.image?.url, variants: product.variants, // Size, color options}); React component example: import {useEffect, useState} from 'react'; import Commerce from '@chec/commerce.js'; const commerce = new Commerce(process.env.NEXT_PUBLIC_CHEC_PUBLIC_KEY!); export function ProductGrid() {const [products, setProducts] = useState<any[]>([]); const [loading, setLoading] = useState(true); useEffect(() => {commerce.products.list().then(({data}) => setProducts(data)).finally(() => setLoading(false));}, []); if (loading) return <div>Loading...</div>; return (<div className="grid grid-cols-3 gap-6"> {products.map(product => (<div key={product.id} className="border rounded-lg p-4"> <img src={product.image?.url} alt={product.name} className="w-full h-48 object-cover" /> <h2 className="mt-2 font-semibold">{product.name}</h2> <p className="text-gray-600">{product.price.formatted_with_symbol}</p> <AddToCartButton productId={product.id} /> </div>))} </div>);}
  3. Manage the cart Commerce.js stores the cart ID in localStorage automatically: // Get or create the current cart const cart = await commerce.cart.retrieve(); // Add a product to the cart const updatedCart = await commerce.cart.add(productId, quantity, {// Optional: specify variant selections variantId: 'variant_id_here', optionId: 'option_id_here',}); // Update line item quantity await commerce.cart.update(lineItemId, {quantity: 3}); // Remove a line item await commerce.cart.remove(lineItemId); // Empty the cart await commerce.cart.empty(); // Refresh the cart const refreshedCart = await commerce.cart.refresh(); Cart state management with React Context: // context/cart-context.tsx import {createContext, useContext, useState, useEffect} from 'react'; import Commerce from '@chec/commerce.js'; const commerce = new Commerce(process.env.NEXT_PUBLIC_CHEC_PUBLIC_KEY!); const CartContext = createContext<any>(null); export function CartProvider({children}: {children: React.ReactNode}) {const [cart, setCart] = useState<any>(null); useEffect(() => {commerce.cart.retrieve().then(setCart);}, []); const addToCart = async (productId: string, quantity = 1) => {const {cart: updated} = await commerce.cart.add(productId, quantity); setCart(updated);}; const removeFromCart = async (lineItemId: string) => {const {cart: updated} = await commerce.cart.remove(lineItemId); setCart(updated);}; return (<CartContext.Provider value={{cart, addToCart, removeFromCart}}> {children} </CartContext.Provider>);} export const useCart = () => useContext(CartContext);
  4. Generate a checkout token and capture the order ` // Step 1: Generate a checkout token from the cart const checkoutToken = await commerce.checkout.generateToken(cart.id, {type: 'cart'}); // Step 2: Get live checkout information (shipping options, taxes) const checkoutData = await commerce.checkout.getLive(checkoutToken.id); // Step 3: Capture the order const order = await commerce.checkout.capture(checkoutToken.id, {customer: {firstname: 'Jane', lastname: 'Doe', email: 'jane@example.com',}, shipping: {name: 'Jane Doe', street: '123 Main Street', town_city: 'San Francisco', county_state: 'US-CA', postal_zip_code: '94103', country: 'US',}, fulfillment: {shipping_method: checkoutData.shipping.available_options[0].id,}, payment: {gateway: 'stripe', stripe: {payment_method_id: stripePaymentMethodId, // from Stripe.js},},}); console.log(Order #${order.customer_reference} placed!); // Clear the cart after successful order await commerce.cart.refresh(); `
  5. Handle product variants ` const product = await commerce.products.retrieve(productId); // Variants are organized as variant groups (e.g., "Size") with options (e.g., "S", "M", "L") product.variants.forEach(variantGroup => {console.log(Variant group: ${variantGroup.name}); variantGroup.options.forEach(option => {console.log( - ${option.name}: +${option.price.formatted_with_symbol});});}); // When adding to cart, provide the full variant selection const selections = {[sizeVariantGroupId]: selectedSizeOptionId, [colorVariantGroupId]: selectedColorOptionId,}; await commerce.cart.add(product.id, 1, selections); `
  6. List and display orders // Requires a customer JWT (obtained via commerce.customer.login) const customerToken = await commerce.customer.login(email, password); const {data: orders} = await commerce.orders.getAllForCustomer({customer_token: customerToken.token,}); orders.forEach(order => {console.log({reference: order.customer_reference, status: order.status, total: order.order_value.formatted_with_symbol, items: order.order.line_items.map(item => item.product_name),});});

Examples

Complete Next.js product page

// app/products/[permalink]/page.tsx
import Commerce from '@chec/commerce.js';
import DOMPurify from 'isomorphic-dompurify';

// Server-side: use secret key to fetch product at build time
const commerce = new Commerce(process.env.CHEC_SECRET_KEY!);

export async function generateStaticParams() {
  const {data: products} = await commerce.products.list({limit: 200});
  return products.map((p: any) => ({permalink: p.permalink}));
}

export default async function ProductPage({params}: {params: {permalink: string}}) {
  const product = await commerce.products.retrieve(params.permalink, {type: 'permalink'});
  // Sanitize HTML from Chec CMS before rendering
  const safeDescription = DOMPurify.sanitize(product.description ?? '');

  return (
    <main>
      <img src={product.image?.url} alt={product.name} />
      <h1>{product.name}</h1>
      {/* Sanitized HTML rendered safely */}
      <div dangerouslySetInnerHTML={{__html: safeDescription}} />
      <p className="text-xl font-bold">{product.price.formatted_with_symbol}</p>
    </main>
  );
}

Cart item count badge

export function CartBadge() {
  const {cart} = useCart();
  const totalItems = cart?.total_unique_items ?? 0;

  return (
    <button className="relative">
      <ShoppingCartIcon />
      {totalItems > 0 && (
        <span className="absolute -top-2 -right-2 bg-red-500 text-white text-xs rounded-full w-5 h-5 flex items-center justify-center">
          {totalItems}
        </span>
      )}
    </button>
  );
}

Best Practices

  • Use the public key on the client, secret key on the server — the public key can only read products and manage carts; the secret key can also manage orders and is not safe to expose in browser code
  • Initialize the Commerce client once — create a single instance in a module-level constant and import it; avoid creating a new instance on every render
  • Handle webhook events for order automation — configure Chec webhooks in the dashboard to POST to your server when orders are placed, updated, or refunded
  • Use checkout tokens, not cart IDs, for checkoutgenerateToken creates a time-limited, checkout-specific token; always pass this token to capture, never the raw cart ID
  • Refresh the cart after order capture — calling commerce.cart.refresh() after a successful order creates a fresh empty cart; the old cart ID is invalidated
  • Sanitize product description HTML before rendering — product descriptions are HTML from the Chec CMS; always run them through DOMPurify (isomorphic-dompurify works in both Node.js and browser) before rendering
  • Implement error handling for checkout capture — wrap commerce.checkout.capture in try/catch and map commerce.error codes to user-friendly messages

Common Pitfalls

ProblemSolution
Commerce is not a constructorEnsure you import as import Commerce from '@chec/commerce.js' (default import, not named)
Cart not persisting between page loadsCommerce.js stores the cart in localStorage under chec_cart_id; ensure localStorage is available and not blocked
Checkout token expiresCheckout tokens expire after 7 days; generate a new token from the cart immediately before starting checkout
Variant selections not appliedPass selections as the third argument to commerce.cart.add(): commerce.cart.add(id, qty, {variantGroupId: optionId})
Payment gateway not configuredEnable and configure the payment gateway (Stripe, Square, etc.) in the Chec Dashboard under Setup → Payment gateways

Related Skills

  • @jamstack-storefront
  • @shopify-hydrogen
  • @secure-checkout
  • @webhook-architecture

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.52%
按下载量换算60

Claude

30.78%
按下载量换算48

Cursor

18.17%
按下载量换算28

Gemini CLI

9.78%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills