ecommerce-expert

ecommerce-expert is a skill for Claude Code, Codex from roedyrustam/vibes-plug. It costs 70 tokens per session (814 once invoked), scanned A, original, MIT.

A guide to building online stores and commerce systems with Shopify Storefront, Medusa.js, or Saleor. It covers products, inventory, shopping carts, checkout, orders, fulfillment, and search visibility for product pages.

In plain words
What is it for?
Use it to choose a commerce platform, connect a custom frontend to Shopify, set up Medusa.js or Saleor, design product catalogs, and plan cart and checkout behavior.
Why use it?
It helps turn separate store concerns into a consistent design for browsing products, buying them, and managing orders.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to choose a commerce platform, connect a custom frontend to Shopify, set up Medusa.js or Saleor, design product catalogs, and plan cart and checkout behavior.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/roedyrustam/vibes-plug/ecommerce-expert
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add roedyrustam/vibes-plug --skill ecommerce-expert
Clone the repo
git clone --depth 1 https://github.com/roedyrustam/vibes-plug

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ecommerce-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/ecommerce-expert/github.svg)](https://agentmods.dev/skills/roedyrustam/vibes-plug/ecommerce-expert)
Your own site
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/ecommerce-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/ecommerce-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ecommerce-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/ecommerce-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/ecommerce-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 814 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00070 $0.00814
Opus 5 $0.00035 $0.00407
Sonnet 5 $0.00014 $0.00163
Haiku 4.5 $0.00007 $0.00081

Measured 9d ago against content hash 7dd4a8dc45fb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

ecommerce-expert scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

const res = await fetch(process.env.SHOPIFY_STOREFRONT_URL!, {
skills/ecommerce-expert/SKILL.md · 88 lines

How it starts

The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.

E-Commerce Expert (2026 Edition)

English | Bahasa Indonesia


English

Orchestration & Integration

  • payment-gateway-expert: Stripe, Xendit, Midtrans payment integration.
  • nextjs-app-router-expert: SSR product pages and cart functionality.
  • seo: Product schema markup, sitemaps, and SEO optimization.
  • saas-billing: Subscription-based e-commerce models.
  • headless-cms-expert: Content management for product descriptions and pages.

Description

Expert guide for building modern e-commerce applications. Covers Shopify Storefront API (headless commerce), Medusa.js v2 (open-source, self-hosted), Saleor (GraphQL-first), product catalog design, cart state management, checkout flows, inventory management, order fulfillment, and SEO for product pages.

Trigger Conditions

  • Building an online store or e-commerce platform.
  • Integrating Shopify Storefront API with custom frontend.
  • Setting up Medusa.js or Saleor for headless commerce.
  • Designing product catalog schemas and cart/checkout UX.

Platform Selection

Platform Type API Self-Hosted Best For
Shopify Storefront SaaS + Headless GraphQL Quick launch, large catalog
Medusa.js v2 Open-source REST + JS SDK Full control, customization
Saleor Open-source GraphQL Enterprise, multi-channel
WooCommerce Plugin (WordPress) REST WordPress ecosystem

Core Patterns

// Shopify Storefront API — Fetch products
const SHOPIFY_QUERY = `{
  products(first: 12, sortKey: BEST_SELLING) {
    edges {
      node {
        id title handle description
        priceRange { minVariantPrice { amount currencyCode } }
        images(first: 1) { edges { node { url altText } } }
        variants(first: 5) { edges { node { id title availableForSale price { amount } } } }
      }
    }
  }
}`;

async function getProducts() {
  const res = await fetch(process.env.SHOPIFY_STOREFRONT_URL!, {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
      'X-Shopify-Storefront-Access-Token': process.env.SHOPIFY_TOKEN!,
    },
    body: JSON.stringify({ query: SHOPIFY_QUERY }),
  });
  return (await res.json()).data.products.edges.map((e) => e.node);
}

Read the full file on GitHub · 88 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 88 lines · 70 tokens per session scan A 7dd4a8dc45fb

Subscribe to this mod's changes

ecommerce-expert is a skill published in the GitHub repository roedyrustam/vibes-plug (49 stars, last pushed yesterday), licensed MIT. It adds 70 tokens to every session and 814 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

slickpay-integrator

An expert in integrating the Algerian SlickPay API (SATIM/EDAHABIA). Handles invoice creation, commission calculation, and webhooks securely.

karim-embarek/antigravity-operator · 36 tokens

customer-billing-ops

Operate customer billing workflows such as subscriptions, refunds, churn triage, billing-portal recovery, and plan analysis using connected billing tools like Stripe. Use when the user needs to help a customer, inspect subscription state, or manage revenue-impacting billing operations.

Jamkris/everything-gemini-code · 57 tokens

customs-trade-compliance

Codified expertise for customs documentation, tariff classification, duty optimization, restricted party screening, and regulatory compliance across multiple jurisdictions. Informed by trade compliance specialists with 15+ years experience. Includes HS classification logic, Incoterms application, FTA utilization, and…

Jamkris/everything-gemini-code · 82 tokens

inventory-demand-planning

Codified expertise for demand forecasting, safety stock optimization, replenishment planning, and promotional lift estimation at multi-location retailers. Informed by demand planners with 15+ years experience managing hundreds of SKUs. Includes forecasting method selection, ABC/XYZ analysis, seasonal transition…

Jamkris/everything-gemini-code · 86 tokens

cloudbase-wechat-integration

CloudBase WeChat integration guide for Mini Program WeChat Pay, Official Account JSAPI Pay, Native QR-code Pay, Official Account OAuth, openid handling, payment callbacks, and CloudBase Integration Center generated functions. This skill should be used when users ask to add, debug, or extend WeChat payment or…

sutchan/Agent-Skills-Hub · 76 tokens

inventory-demand-planning

Codified expertise for demand forecasting, safety stock optimization, replenishment planning, and promotional lift estimation at multi-location retailers. Informed by demand planners with 15+ years experience managing hundreds of SKUs. Includes forecasting method selection, ABC/XYZ analysis, seasonal transition…

majiang213/OpenClaw-MAS · 86 tokens