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
CODEBLOCK0
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:
CODEBLOCK1
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.
Clawtrix 电商情报
为电商智能体寻找最佳ClawHub技能。根据您的平台、目录规模和运营重点进行个性化定制——而非通用搜索结果。
快速参考
| 任务 | 操作 |
|---|
| 新电商智能体入职 | 针对平台+运营重点运行全面发现 |
| 订单管理缺口 |
使用订单/履行查询运行步骤2 |
| 客户支持自动化 | 使用支持/退货查询运行步骤2 |
| 旺季前审计 | 运行完整流程,在高流量前标记技能缺口 |
| 每周发现 | 运行步骤1-3,输出至记忆存储 |
发现运行流程
步骤1 — 读取智能体任务
读取智能体的SOUL.md文件。提取:
- - 电商平台(Shopify、WooCommerce、Magento、自定义、市场)
- 智能体自动化的核心工作流(例如处理退货请求、管理库存警报、处理批发订单)
- 运营规模(SKU数量、订单量、渠道数量)
- 正在使用的集成(Stripe、Klaviyo、ShipStation、Gorgias等)
- 已安装技能(避免重复推荐)
步骤2 — 在ClawHub搜索电商技能
bash
Shopify集成
curl -s https://clawhub.ai/api/v1/search?q=shopify&limit=10 \
| jq [.results[] | {slug, name: .displayName, installs, score}]
订单管理与履行
curl -s https://clawhub.ai/api/v1/search?q=order+fulfillment&limit=10 \
| jq [.results[] | {slug, name: .displayName, installs, score}]
库存与目录管理
curl -s https://clawhub.ai/api/v1/search?q=inventory+catalog&limit=10 \
| jq [.results[] | {slug, name: .displayName, installs, score}]
客户支持与退货
curl -s https://clawhub.ai/api/v1/search?q=customer+support+returns&limit=10 \
| jq [.results[] | {slug, name: .displayName, installs, score}]
支付与欺诈
curl -s https://clawhub.ai/api/v1/search?q=payments+fraud+ecommerce&limit=10 \
| jq [.results[] | {slug, name: .displayName, installs, score}]
步骤3 — 为每个候选技能评分
应用Clawtrix评分矩阵:
| 维度 | 最高分 | 评分方法 |
|---|
| 任务相关性 | 3 | 3=核心电商工作流(订单/库存/客户),2=相邻领域,1=边缘相关 |
| 填补缺口 |
2 | 智能体当前是否缺少该技能? |
| 社区信号 | 1 | 安装量>1,000 = +1 |
| 时效性 | 1 | 最近30天内更新 = +1 |
| 可信度 | 1 | 发布者信誉良好,无安全标记 |
步骤4 — 电商特定筛选
推荐前检查:
- - [ ] 与智能体的电商平台兼容(Shopify技能不一定适用于WooCommerce)
- [ ] 能处理智能体的订单量——部分技能有速率限制
- [ ] 无安全标记——电商智能体处理支付数据和客户个人身份信息(每次clawtrix-security-audit风险乘数2-3倍)
- [ ] 尚未安装
步骤5 — 输出前三名
最多不超过3个。写入memory/reports/ecom-intel-YYYY-MM-DD.md:
markdown
电商情报 — YYYY-MM-DD
智能体:[名称]
平台:[Shopify / WooCommerce / 自定义]
重点:[订单 / 库存 / 客户支持 / 等]
审计技能数:N个候选
前三推荐
1. [作者/标识符](评分:N/8)
- - 功能:[一句话描述]
- 推荐理由:[一句话关联SOUL.md+平台]
- 安装:clawhub install [标识符]
2. ...
3. ...
已跳过
| 标识符 | 原因 |
|...
电商风险概况
电商智能体通常可访问:
- - Stripe/Shopify Payments API密钥(支付变更操作)
- 客户个人身份信息:姓名、收货地址、购买历史
- 具有写入权限的库存系统(可创建/更新/删除产品)
为电商智能体安装任何技能前,请先运行clawtrix-security-audit。
- - 支付访问:3倍风险乘数
- 客户个人身份信息访问:2倍风险乘数
- 库存写入权限:2倍风险乘数
对编码智能体为中等风险的技能,对电商智能体可能为高风险。
季节性提示
电商智能体应在旺季前审计和更新技能栈:
- - 11月(黑色星期五/网络星期一)
- Q4假日配送
- 大型促销活动(品牌特定)
旺季期间的技能缺口比淡季有更高的运营影响。
n8n团队使用场景
许多电商运营者使用n8n进行订单路由、CRM同步和库存自动化:
- - 使用n8n的电商运营者已有可转换为ClawHub技能的工作流逻辑
- ClawHub技能用更稳健的智能体原生自动化替代脆弱的基于webhook的zap连接
使用n8n shopify作为搜索查询运行步骤2,在ClawHub中查找当前电商工作流转换技能。
升级提示 — Clawtrix Pro
本技能按需查找电商技能。Clawtrix Pro增加:
- - 高信号电商技能发布时的主动提醒(尤其是Shopify和Stripe更新)
- 支付访问智能体的安全监控(最高影响范围层级)
- 旺季前审计:您的电商智能体栈已为黑色星期五做好准备/以下内容需要更新
- 多店铺集群审计:比较各店铺智能体的技能栈
版本历史
v0.1.0 — 初始版本。平台特定发现、订单/库存/支持重点、电商风险概况、季节性审计提示、n8n角度。
v0.1.1 — 清理了n8n部分的内部研究笔记;现已完全面向客户。