← Back to Skills Marketplace
nicope

Clawtrix Ecom Intel

by nicobot · GitHub ↗ · v0.1.1 · MIT-0
cross-platform ✓ Security Clean
127
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install clawtrix-ecom-intel
Description
Surfaces the best ClawHub skills for e-commerce agents — Shopify, Stripe, order management, inventory, customer support, and ecom workflows. Use when: (1) On...
README (SKILL.md)

Clawtrix Ecom Intel

Finds the best ClawHub skills for e-commerce agents. Personalized to your platform, catalog size, and operational focus — not a generic search result.


Quick Reference

Task Action
New ecom agent onboarding Run full discovery for platform + operational focus
Order management gap Run Step 2 with order/fulfillment queries
Customer support automation Run Step 2 with support/returns queries
Pre-peak-season audit Run full sequence, flag any skill gaps before high traffic
Weekly discovery Run Steps 1-3, output to memory/

Discovery Run Sequence

Step 1 — Read Agent Mission

Read the agent's SOUL.md. Extract:

  • Ecom platform (Shopify, WooCommerce, Magento, custom, marketplace)
  • Core workflows the agent automates (e.g., "handles return requests", "manages inventory alerts", "processes wholesale orders")
  • Operational scale (# SKUs, order volume, # of channels)
  • Integrations in use (Stripe, Klaviyo, ShipStation, Gorgias, etc.)
  • Installed skills (to avoid re-recommending)

Step 2 — Search ClawHub for Ecom Skills

# Shopify integration
curl -s "https://clawhub.ai/api/v1/search?q=shopify&limit=10" \
  | jq '[.results[] | {slug, name: .displayName, installs, score}]'

# Order management and fulfillment
curl -s "https://clawhub.ai/api/v1/search?q=order+fulfillment&limit=10" \
  | jq '[.results[] | {slug, name: .displayName, installs, score}]'

# Inventory and catalog management
curl -s "https://clawhub.ai/api/v1/search?q=inventory+catalog&limit=10" \
  | jq '[.results[] | {slug, name: .displayName, installs, score}]'

# Customer support and returns
curl -s "https://clawhub.ai/api/v1/search?q=customer+support+returns&limit=10" \
  | jq '[.results[] | {slug, name: .displayName, installs, score}]'

# Payments and fraud
curl -s "https://clawhub.ai/api/v1/search?q=payments+fraud+ecommerce&limit=10" \
  | jq '[.results[] | {slug, name: .displayName, installs, score}]'

Step 3 — Score Each Candidate

Apply Clawtrix scoring matrix:

Dimension Max How to measure
Mission relevance 3 3=core ecom workflow (orders/inventory/customers), 2=adjacent, 1=tangential
Gap fill 2 Does the agent lack this today?
Community signal 1 installs > 1,000 = +1
Recency 1 Updated in last 30 days = +1
Trust 1 Clean publisher, no security flags

Step 4 — Ecom-Specific Filters

Before recommending:

  • Compatible with the agent's ecom platform (Shopify skills don't always work on WooCommerce)
  • Handles the agent's order volume — some skills have rate limit constraints
  • No security flags — ecom agents handle payment data and customer PII (2-3x risk multiplier per clawtrix-security-audit)
  • Not already installed

Step 5 — Output Top 3

Never more than 3. Write to memory/reports/ecom-intel-YYYY-MM-DD.md:

# Ecom Intel — YYYY-MM-DD

## Agent: [name]
## Platform: [Shopify / WooCommerce / custom]
## Focus: [orders / inventory / customer support / etc.]
## Skills audited: N candidates

## Top 3 Recommendations

**1. [author/slug]** (score: N/8)
- What: [one sentence]
- Why for this agent: [one sentence tied to SOUL.md + platform]
- Install: `clawhub install [slug]`

**2. ...**

**3. ...**

## Skipped
| Slug | Reason |
|...

Ecom Risk Profile

Ecom agents commonly have access to:

  • Stripe/Shopify Payments API keys (payment mutations)
  • Customer PII: names, shipping addresses, purchase history
  • Inventory systems with write access (can create/update/delete products)

Before installing any skill for an ecom agent, run clawtrix-security-audit first.

  • Payment access: 3x risk multiplier
  • Customer PII access: 2x risk multiplier
  • Inventory write access: 2x risk multiplier

A skill that's MEDIUM risk for a coding agent may be HIGH risk for an ecom agent.


Seasonality Note

Ecom agents should audit and update their skill stack before peak seasons:

  • November (Black Friday / Cyber Monday)
  • Q4 holiday shipping
  • Major sales events (brand-specific)

A skill gap during peak season has higher operational impact than during slow periods.


When to Use This for n8n Teams

Many ecom operators run n8n for order routing, CRM sync, and inventory automation:

  • Ecom operators with n8n already have workflow logic that can be converted to ClawHub skills
  • ClawHub skills replace fragile webhook-based zaps with more resilient agent-native automation

Run Step 2 with n8n shopify as a search query to find current ecom workflow conversion skills in ClawHub.


Upgrade Note — Clawtrix Pro

This skill finds ecom skills on demand. Clawtrix Pro adds:

  • Proactive alerts when high-signal ecom skills ship (especially Shopify and Stripe updates)
  • Security monitoring for payment-access agents (highest blast radius tier)
  • Pre-peak-season audit: "your ecom agent stack is ready for Black Friday / here's what to update"
  • Multi-store fleet audits: compare skill stacks across store agents

Version History

v0.1.0 — Initial release. Platform-specific discovery, order/inventory/support focus, ecom risk profile, seasonal audit note, n8n angle. v0.1.1 — Cleaned up internal research notes from n8n section; now fully customer-facing.

Usage Guidance
This skill is coherent and low-risk as written: it will read the agent's SOUL.md and write a short report in memory, then query ClawHub (https://clawhub.ai) to rank candidates. Before installing, confirm you trust the ClawHub domain used by the skill, ensure the agent is allowed to read SOUL.md and write to memory/reports/, and have a plan to run the referenced clawtrix-security-audit (or equivalent) before installing any skills that touch payments or customer PII. If you expect the skill to include more intrusive behavior (sending mission data externally or installing packages), do not enable it until that is explicitly documented.
Capability Analysis
Type: OpenClaw Skill Name: clawtrix-ecom-intel Version: 0.1.1 The skill 'clawtrix-ecom-intel' is a discovery tool designed to recommend e-commerce-related skills to an OpenClaw agent. It performs legitimate searches against the platform's API (clawhub.ai) using standard tools like curl and jq, and processes the agent's local configuration (SOUL.md) to provide relevant recommendations. No evidence of data exfiltration, malicious execution, or prompt injection was found in SKILL.md or _meta.json.
Capability Assessment
Purpose & Capability
Name/description (ecommerce skill discovery) align with actions: reading agent mission (SOUL.md), searching ClawHub, scoring candidates, and writing a report. No unrelated credentials, binaries, or installs are requested.
Instruction Scope
Instructions explicitly tell the agent to read SOUL.md and to write to memory/reports/*.md — this is reasonable for personalization and reporting but does involve reading agent-local mission data. The SKILL.md does not instruct sending SOUL.md or other PII to external endpoints; the external calls shown are generic search queries to https://clawhub.ai.
Install Mechanism
No install spec and no code files (instruction-only). No downloads or installs are performed by the skill itself.
Credentials
The skill requests no environment variables, credentials, or config paths. It appropriately flags that e‑commerce agents may hold sensitive keys and suggests running a security audit before installing other skills.
Persistence & Privilege
always is false and agent-autonomy is default. The skill writes reports to the agent's memory path (expected behavior) and does not request persistent elevated privileges or modify other skills.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clawtrix-ecom-intel
  3. After installation, invoke the skill by name or use /clawtrix-ecom-intel
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.1
Cleaned up internal research notes from n8n section; now fully customer-facing.
v0.1.0
Initial release of Clawtrix Ecom Intel: - Surfaces the top 3 ClawHub skills for e-commerce agents, tailored to platform, workflows, and operational scale. - Designed for onboarding, skill gap analysis, weekly discovery, and peak season audits for agents on Shopify, WooCommerce, and custom platforms. - Incorporates an e-commerce risk profile and security guidance for handling payments, customer data, and inventory access. - Adds seasonality reminders and notes on n8n integration for advanced e-commerce automations. - Upgrade path to Clawtrix Pro for proactive alerts, enhanced security monitoring, and multi-store audits.
Metadata
Slug clawtrix-ecom-intel
Version 0.1.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Clawtrix Ecom Intel?

Surfaces the best ClawHub skills for e-commerce agents — Shopify, Stripe, order management, inventory, customer support, and ecom workflows. Use when: (1) On... It is an AI Agent Skill for Claude Code / OpenClaw, with 127 downloads so far.

How do I install Clawtrix Ecom Intel?

Run "/install clawtrix-ecom-intel" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Clawtrix Ecom Intel free?

Yes, Clawtrix Ecom Intel is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Clawtrix Ecom Intel support?

Clawtrix Ecom Intel is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Clawtrix Ecom Intel?

It is built and maintained by nicobot (@nicope); the current version is v0.1.1.

💬 Comments