LaunchKit · 2026
Back to Skills

agent-commerce-engine

A production-ready universal engine for Agentic.

7
2.7k downloads
by @nowloady

Setup & Installation

openclaw skills install @nowloady/agent-commerce-engine

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install agent-commerce-engine

Version History

v1.7.1Mar 13, 2026 - Version note by skill developer:

**agent-commerce-engine v1.7.1 Changelog** - Skill name standardized from "standard-agentic-commerce-engine" to "agent-commerce-engine" - Documentation improved for clarity, especially on backend integration, security enforcement, and registration flows - Security section explicitly details HTTPS/client enforcement and local credential storage behavior - Registration, authentication, and user flows better aligned with real-world backend expectations - No code changes; updated only documentation and specifications for maintainability and accuracy

What This Skill Does

A client and standardized protocol for connecting AI agents to compatible headless e-commerce backends. Agents can search products, manage carts, handle user accounts, and place orders through a consistent CLI. Payment finalization returns a URL for the user to complete outside the agent.

A single protocol lets agents operate across any compatible backend without writing custom integration code per brand.

When to use it

  • Searching a brand's product catalog by chat or voice
  • Adding or removing cart items without opening a browser
  • Checking order history through a conversational interface
  • Registering or logging into a compatible storefront via an agent
  • Fetching current promotions and shipping thresholds on demand

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: 'Find me artisanal hot sauce and add two bottles to my cart'

AGENT
  1. 1Run search against the store URL to find matching products
  2. 2Retrieve product details to confirm the correct slug and available variants
  3. 3Run add-cart with the slug, selected variant, and quantity of 2
  4. 4Fetch cart summary to confirm the item was added and display pricing
OUTPUT

Cart updated with 2 bottles; summary with subtotal and any active promotions shown to user