Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

responsive-storefront响应式店面

Agent Skill

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

总安装

490

周安装

20

GitHub Stars

19

下载量

157
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill responsive-storefront

简介

responsive-storefront 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它能协助 Agent 自动响应协作事件并生成结构化反馈。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装该技能。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Responsive Storefront

Overview

Apply mobile-first responsive design patterns to a commerce storefront so that the shopping experience is fast and usable on phones, where the majority of commerce traffic originates. Key patterns include thumb-zone aware layouts, a sticky buy bar that appears on scroll, tap-target sizing, and responsive product grids that reflow without horizontal scrolling.

When to Use This Skill

  • When more than 50% of storefront traffic comes from mobile devices (check your analytics)
  • When building a new storefront from scratch and laying out the CSS architecture
  • When auditing an existing storefront for mobile usability issues
  • When implementing a product detail page and need a sticky buy button pattern
  • When optimizing mobile conversion rate and cart abandonment

Core Instructions

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

PlatformRecommended ApproachWhy
ShopifyUse a mobile-first OS2.0 theme (Dawn, Sense, Craft) — all are responsive by default; configure mobile layout in Theme EditorDawn scores 90+ on mobile PageSpeed out of the box; the Theme Editor exposes mobile-specific layout controls
WooCommerceUse a mobile-first WooCommerce theme (Astra, Kadence, or Flatsome) — all include responsive breakpoints and mobile cart drawer built inAstra and Kadence score well on Core Web Vitals; Flatsome has built-in sticky header and mobile menu without plugins
BigCommerceUse Cornerstone theme which is mobile-first by design; configure breakpoints in Theme EditorCornerstone is BigCommerce's reference theme and passes Google's mobile usability tests
Custom / HeadlessWrite mobile-first CSS with min-width media queries and build a responsive product grid, sticky buy bar, and bottom-sheet cart drawerFull control over all breakpoints and touch interactions; see patterns below

Step 2: Configure mobile layout on your platform


Shopify

Theme Editor mobile configuration:

  1. Go to Online Store → Themes → Customize
  2. Click the Mobile preview icon in the top toolbar to preview on a phone
  3. Configure Header settings:

- Set Mobile menu type: Drawer (recommended) or Dropdown - Enable Sticky header so navigation stays visible while scrolling

  1. Configure Collection page:

- Set Products per row (mobile) to 2 (standard) or 1 (large cards) - Enable Filters as a drawer on mobile (not sidebar)

  1. Configure Product page:

- Enable Sticky add-to-cart in the product section settings - Set Media placement to stack gallery above product info on mobile (this is the default)

  1. In Theme settings → Buttons, set button height to at least 44px to meet touch target requirements

Testing mobile performance:

  1. Open Google PageSpeed Insights (pagespeed.web.dev) and enter your store URL
  2. Review the Mobile tab — aim for 75+ Performance score
  3. The most common fix: compress images via Settings → Files and replace large images with WebP versions

WooCommerce

Astra theme mobile configuration:

  1. Go to Appearance → Customize → Header → Mobile Header
  2. Configure hamburger menu style and position
  3. Under Appearance → Customize → WooCommerce → Shop Page, set Products per row (mobile) to 2
  4. Under Appearance → Customize → WooCommerce → Product Page, enable Sticky Add to Cart bar for mobile
  5. In Appearance → Customize → Global → Container, ensure container width is 100% on mobile (no horizontal padding issues)

Kadence theme mobile configuration:

  1. Go to Appearance → Customize → WooCommerce → Product Archive
  2. Set mobile columns to 2 and configure card spacing
  3. Under Appearance → Customize → WooCommerce → Product Page, enable Sticky Add to Cart
  4. In Kadence → Header Builder, configure the mobile header layout — Kadence lets you drag elements (logo, menu, cart) to separate mobile header rows

Flatsome theme:

  1. In Theme Options → WooCommerce → Products, configure mobile product grid columns
  2. Enable Sticky Add to Cart in Theme Options → WooCommerce → Product
  3. Flatsome's UX Builder has a mobile preview mode — use it to inspect every page's mobile layout

BigCommerce

Cornerstone mobile configuration:

  1. Go to Storefront → My Themes → Customize
  2. Preview on mobile using the device icon in the toolbar
  3. Under Global → Layout, configure mobile breakpoints and container padding
  4. Under Product Page → Images, set gallery layout to Stacked on mobile (image above product info)
  5. Enable Mobile overlay for the cart — this converts the cart from a sidebar to a bottom sheet on mobile
  6. Under Category Page → Product Cards, set mobile columns to 2

Custom / Headless

Mobile-first CSS foundations:

/* tokens.css */
:root {
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --touch-target: 44px;     /* WCAG 2.5.5 minimum tap target */
  --content-max-width: 1200px;
}

/* Breakpoints: sm=640px, md=768px, lg=1024px */
/* Write base styles for mobile, add min-width queries for larger screens */

Responsive product grid (auto-fills columns based on available width):

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr));
  gap: var(--space-md);
  padding: var(--space-md);
}

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--space-lg); }
}

/* Minimum 44px touch target on product card CTA */
.product-card__cta { min-height: var(--touch-target); display: flex; align-items: center; }

Sticky buy bar — appears when primary Add to Cart scrolls out of view:

export function StickyBuyBar({ product, onAddToCart }) {
  const [visible, setVisible] = useState(false);

  useEffect(() => {
    const primaryBtn = document.getElementById('main-add-to-cart');
    if (!primaryBtn) return;
    const obs = new IntersectionObserver(([e]) => setVisible(!e.isIntersecting));
    obs.observe(primaryBtn);
    return () => obs.disconnect();
  }, []);

  return (
    <div className={`sticky-buy-bar ${visible ? 'visible' : ''}`} aria-hidden={!visible}>
      <img src={product.image} alt="" width="40" height="40" />
      <span>{product.name}</span>
      <span>${product.price}</span>
      <button onClick={onAddToCart} tabIndex={visible ? 0 : -1}>Add to Cart</button>
    </div>
  );
}
.sticky-buy-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid #e2e8f0;
  transform: translateY(100%); transition: transform 0.2s ease; z-index: 50;
  padding-bottom: env(safe-area-inset-bottom); /* iPhone home indicator */
  display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem;
}
.sticky-buy-bar.visible { transform: translateY(0); }

Mobile cart drawer (bottom sheet pattern):

.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: min(400px, 100vw); background: #fff;
  transform: translateX(100%); transition: transform 0.3s ease;
  overflow-y: auto; overscroll-behavior: contain;
}

@media (max-width: 640px) {
  .cart-drawer {
    top: auto; width: 100vw; height: 85vh;
    transform: translateY(100%); border-radius: 16px 16px 0 0;
  }
  .cart-drawer.open { transform: translateY(0); }
}

.cart-drawer.open { transform: translateX(0); }

/* Checkout button stays within thumb reach */
.cart-checkout-btn {
  position: sticky; bottom: 0; background: #fff;
  padding: var(--space-md);
  padding-bottom: calc(var(--space-md) + env(safe-area-inset-bottom));
}

Global 44px touch targets:

button, a, input[type="checkbox"], input[type="radio"], select, [role="button"] {
  min-height: var(--touch-target);
  min-width: var(--touch-target);
}

Best Practices

  • Write mobile-first CSS — start with the smallest screen styles and add min-width media queries to enlarge; the reverse approach leads to specificity conflicts
  • Use env(safe-area-inset-bottom) — required for iPhone notch/home indicator; without it, bottom-fixed buttons are obscured
  • Test with real devices — browser DevTools emulation does not replicate iOS Safari's dynamic viewport height or touch scroll inertia
  • Use overscroll-behavior: contain on scroll containers — prevents body scroll from leaking when users swipe in the cart drawer
  • Use 100dvh instead of 100vh on full-screen elements — iOS Safari's dynamic toolbar causes 100vh to include the toolbar height, causing overflow
  • Set font-size to at least 16px on <body> — prevents iOS Safari from auto-zooming on input focus

Common Pitfalls

ProblemSolution
Sticky buy bar obscures footer or checkout buttonHide the bar when the footer or checkout button enters the viewport using IntersectionObserver
iOS Safari layout jumps when toolbar appearsUse 100dvh (dynamic viewport height) instead of 100vh; fall back with @supports (height: 100dvh)
Font too small to read without pinch-zoomingSet font-size: 1rem (16px) on body; never set it lower on mobile
Cart drawer body scrollApply overflow: hidden on <body> when drawer is open; restore on close
Product images load slowly on mobileSpecify width and height attributes to prevent layout shift; use loading="lazy" for below-fold images

Related Skills

  • @mega-menu-builder
  • @quick-view-modal
  • @accessibility-commerce
  • @storefront-theming

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

32.19%
按下载量换算51

Codex

31.8%
按下载量换算50

Cursor

16.8%
按下载量换算26

Gemini CLI

10.27%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills