🛒 Ecommerce & Retail Operations
Catalog management, storefront automation, orders, inventory sync, marketplace support, and review-driven merchandising.
Who this is for
- Store operators, marketplace teams, and ecommerce engineers managing catalog, order, inventory, and payment workflows.
- Teams that need agents to inspect commerce data without treating the storefront UI as the system of record.
Jobs covered
- Sync product, customer, order, and inventory data.
- Inspect webhooks and payment events around store operations.
- Provision marketplace or subscription payment flows.
- Track prices and operational signals across storefronts.
Workflow Stacks
- Catalog and order ops: Sync catalog → review inventory deltas → inspect order payloads → escalate exceptions
- Marketplace payments: Provision connected accounts → verify checkout flow → inspect webhooks → reconcile payouts
- Webhook-trusted order automation: Verify payment webhook → route commerce event → query order state → update fulfillment context → inspect failures
Curated Skills (9)
Provides an API-first commerce backend for catalog, checkout, order, and channel workflows.
Covers modular store operations where agents need backend APIs rather than storefront clicks.
Covers Shopify app build and validation work for teams extending storefront and admin operations with the official toolkit.
Keeps WooCommerce inventory synchronized across channels without treating wp-admin as the workflow surface.
Covers the marketplace side of retail payments: Connect transfers, reversals, and payout reconciliation across sellers.
Routes WooCommerce webhook events into repeatable order, inventory, and fulfillment automations.
Exposes Shopify Admin actions to MCP clients while keeping catalog and order work supervised.
Retained as the single Stripe checkout/payment-flow pick for validating cart-to-payment intent behavior.
Monitors product price pages when no clean feed or partner API exists for competitive checks.
| Skill | What it does here | Persona | Install | Stars |
|---|---|---|---|---|
| Saleor Open Source Headless Commerce Platform with GraphQL API | Provides an API-first commerce backend for catalog, checkout, order, and channel workflows. | Commerce platform engineer | High | 22.8k |
| Medusa Commerce API and Store Operations Automation Skill | Covers modular store operations where agents need backend APIs rather than storefront clicks. | Store operations engineer | High | 32.6k |
| Build and validate Shopify apps with the official Shopify AI Toolkit | Covers Shopify app build and validation work for teams extending storefront and admin operations with the official toolkit. | Shopify app engineer / commerce platform lead | High | 348 |
| WooCommerce REST Inventory Sync | Keeps WooCommerce inventory synchronized across channels without treating wp-admin as the workflow surface. | WooCommerce operator / WordPress engineer | Medium | 10.2k |
| Stripe Connect Marketplace Sync | Covers the marketplace side of retail payments: Connect transfers, reversals, and payout reconciliation across sellers. | Marketplace operations lead / payments engineer | High | 4.4k |
| WooCommerce Webhook Orchestrator | Routes WooCommerce webhook events into repeatable order, inventory, and fulfillment automations. | Store automation engineer / WordPress ops | Medium | 10.3k |
| Run Shopify Admin product order customer and inventory workflows through MCP | Exposes Shopify Admin actions to MCP clients while keeping catalog and order work supervised. | AI ops engineer / Shopify operator | High | 15 |
| Stripe Payment Flow Connector | Retained as the single Stripe checkout/payment-flow pick for validating cart-to-payment intent behavior. | Checkout engineer / payments engineer | Medium | 4.4k |
| Cheerio Product Price Tracker | Monitors product price pages when no clean feed or partner API exists for competitive checks. | Merchandising analyst / growth ops | Medium | 30.3k |
Editorial Notes
- This collection stays focused on operating stores and marketplaces, not generic web scraping or content generation.
- Stripe is limited to two differentiated payment workflows: checkout/payment flow and marketplace/Connect payout sync.
- Keep this about operating a store, not about generic product or content tooling.
Adjacent Collections
Editorial Context
Running an online store is a documentation and data problem dressed up as a retail problem. Every SKU needs accurate attributes. Every order has to reconcile against warehouse picks and carrier updates. Customer reviews pile up faster than any product team can read them. And platform migrations — from WooCommerce to Shopify, or between marketplace integrations — are exactly the kind of high-risk, high-repetition work that turns into costly mistakes when done manually under pressure.
Agent skills don’t make those problems disappear. But they do change the ratio of human attention required. The Ecommerce & Retail Operations collection on AgentSkillExchange is built around one principle: the best ecommerce agents are ops copilots that produce diffs, queue changes, and assemble evidence — and then wait for a human to approve before touching storefront data.
Here’s a practical look at what that means across the four areas where retail teams spend the most time.
Catalog Cleanup and Sync
Product catalog debt is universal in ecommerce. Attribute values drift. Descriptions get written once and never updated. Images get uploaded in inconsistent formats. When you manage hundreds or thousands of SKUs across multiple channels, the catalog becomes a slow-motion data quality crisis.
Catalog-focused agent skills attack this in two ways.
Diff-first cleanup. Before any skill modifies a product record, it should produce a structured diff: here is what the current record says, here is what it should say, here is the source for that change. A well-designed catalog cleanup skill doesn’t push updates directly — it queues them in a review file or staging environment where a merchandising team can scan and approve in batch. That’s the difference between a skill that’s useful and one that’s terrifying to run on a live catalog.
Cross-channel sync checks. Catalog sync skills compare records across your primary system (WooCommerce, Shopify, a PIM) and downstream channels (Amazon, eBay, Google Shopping). They surface mismatches — a price difference here, a missing attribute there — and log them. The agent doesn’t resolve the mismatch by picking a winner; it flags it so a human can decide which channel has the authoritative value.
Skills that combine Playwright or Puppeteer browser automation with direct API calls are particularly useful here: some catalog discrepancies only appear in the storefront render, not in the admin API response. A skill that checks both catches more drift.
WooCommerce and Shopify Operations
Both WooCommerce and Shopify expose REST APIs with enough coverage to build meaningful operational skills. The challenge is writing skills that use those APIs safely — meaning they respect rate limits, handle partial failures gracefully, and never push bulk changes without checkpoints.
Common operations that work well as agent skills:
- Inventory threshold alerts. A skill polls stock levels across product variants, compares against reorder points stored in a config file, and produces a reorder queue. It doesn’t place orders. It surfaces the queue for a buyer to review.
- Bulk price adjustment staging. When a team needs to apply a promotional discount across a category, a skill can calculate the new prices, write them to a staging CSV, and only push to the API after a human approves the file. WooCommerce and Shopify both support draft products and staged import workflows that pair well with this pattern.
- Order tagging and segmentation. Skills that read order data and apply tags (high-value customer, first purchase, subscription renewal due) give CRM and support teams cleaner data without requiring them to export and manually segment spreadsheets.
- Shipping and fulfillment checks. A skill that calls carrier APIs or a fulfillment service like ShipStation can surface stuck shipments — orders marked shipped but with no scan events in 48 hours — and create a support ticket draft for review.
Platform-specific skills work best when they’re scoped narrowly. A skill that does one job reliably — “check WooCommerce inventory for items below par” — is more useful than a generic “manage my store” skill that tries to cover everything and ends up covering nothing well.
Product Review Sentiment and Triage
Customer reviews are a product signal that most retail teams systematically underuse because reading them at scale is genuinely hard. A skill that processes review streams changes that equation.
Review sentiment skills work best when they’re built with a specific output in mind. Not “analyze our reviews” but “produce a weekly list of product issues mentioned by three or more customers, with review IDs and direct quotes.” That specificity makes the output actionable. A product manager can take that list into a planning meeting. Without it, they’re back to manually reading reviews again.
Useful review processing patterns include:
- Issue clustering. Group reviews by product and extract recurring complaint phrases. Skills that combine basic keyword extraction with structured output (JSON or CSV, not prose summaries) are easier to act on than free-form analysis.
- Rating trend detection. A skill that tracks average rating over rolling time windows and flags products where ratings are declining surfaces problems before they become return spikes or listing suppressions on marketplaces.
- Reply draft generation. For stores that respond to reviews publicly, a skill can draft replies for the lowest-rated recent reviews and queue them for a support rep to edit and post. The rep still publishes — the skill just removes the blank-page friction.
Review skills that connect to marketplaces like Amazon or Etsy need to handle API access carefully. Some platforms restrict review data access or require seller-specific authentication flows. Skills should document those prerequisites explicitly so teams don’t hit authorization walls mid-run.
Order Reconciliation and Marketplace Matching
Order reconciliation is where ecommerce operations most often breaks down. Orders come in from multiple channels — direct store, Amazon, eBay, wholesale portals — and need to be matched against warehouse picks, payment gateway settlements, and carrier confirmations. When those sources don’t agree, someone has to find the discrepancy manually.
Reconciliation skills solve this by treating the problem as a structured join: take two or more datasets, match on order ID or tracking number, and produce a report of what matched cleanly and what didn’t. The skill doesn’t close the discrepancy. It creates a discrepancy report that a finance or ops team member can investigate.
Key patterns for reconciliation skills:
- Source-explicit matching. Every row in the output should show the source (Shopify order 12345, Stripe charge ch_abc, ShipStation shipment 67890) so reviewers can click through to the original record. Reconciliation that produces a number without a source link isn’t auditable.
- Configurable tolerance. Rounding differences and currency conversion artifacts are expected. Skills should support a tolerance threshold in config so they don’t flag $0.01 variances as critical errors while still catching real discrepancies.
- Staged output before write-back. If a reconciliation skill also writes results back to an ERP or accounting system, it should stage that write-back as a dry-run first. Show what would be posted, wait for confirmation, then post.
Marketplace-specific reconciliation is a particular pain point. Amazon’s settlement reports use a different format and cadence than Shopify’s payout summaries. A skill that normalizes both into a common schema before matching is more reusable than one that hardcodes either platform’s format.
The Ops Copilot Pattern: Diffs, Queues, and Evidence
The thread running through all of these use cases is the same pattern: the agent fetches, calculates, and prepares — it doesn’t act autonomously on live storefront data.
This isn’t a limitation of the skills. It’s a design choice that reflects how ecommerce operations actually work. Product managers, merchants, and ops teams need to be the decision layer. The agent’s job is to compress the time it takes to get to a decision by doing the data assembly work that currently consumes hours of human time each week.
A skill that produces a clean catalog diff in five minutes instead of three hours doesn’t replace the merchandiser — it gives the merchandiser five hours back to do the work that actually requires judgment.
When evaluating any ecommerce agent skill, the right question is: does this skill make it easier to make a good decision, or does it try to make the decision for you? The best skills in the ASE industry collections consistently do the former.
Prerequisites and Platform Coverage
Most ecommerce skills in the ASE catalog require some combination of:
- Platform API credentials (WooCommerce application passwords, Shopify Admin API tokens)
- A config file specifying store URL, product category scope, and reconciliation tolerances
- Read access to order exports or settlement reports from marketplaces
- An output directory for diffs, queues, and reconciliation reports
Some skills additionally use browser automation (Playwright or Puppeteer) for tasks that aren’t fully covered by REST APIs — particularly for storefront verification and marketplace scraping where API access is restricted. Skills using browser automation should document that dependency in their prerequisites section so teams know what’s required before they install.
Platform coverage in the collection spans WooCommerce, Shopify, WooCommerce + Shopify cross-migration, Amazon Seller Central, eBay, Etsy, and generic REST-based catalog systems. Skills built for a specific platform will say so explicitly in their description; generic catalog skills will specify which API schema they expect.
Where to Start
If you’re running a WooCommerce or Shopify store and want to see what agent skills can do in practice, three entry points give you the clearest signal:
- Inventory threshold alerting — low risk, high immediate value, no write-back required
- Review sentiment clustering — zero touch to live data, output is a report only
- Order reconciliation dry-run — matches data sources without writing back, surfaces mismatches for human review
All three produce useful outputs without touching live product or order data. They’re the right skills to run first, build confidence with, and use as a baseline before deploying anything that stages changes for approval.
Browse the full collection at agentskillexchange.com/industry-skills/ and filter by Ecommerce & Retail Operations to see current catalog coverage. Skills are added as they meet ASE’s source-alignment and quality standards — which means the collection grows carefully, not noisily.
If you’re building a retail-focused skill and want to understand what the curation bar looks like, the Skill Creator’s Checklist is the right starting point.