Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

shopify-order-managementShopify order management 开发

Agent Skill

shopify-order-management 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

18,296

周安装

733

GitHub Stars

公开资料未说明

下载量

5,923
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:shopify-order-management(Shopify order management 开发)
来源仓库:https://github.com/mhmalvi/shopify-order-management
安装命令:
openclaw skills install shopify-order-management
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install shopify-order-management

简介

自动化处理 Shopify 订单生命周期的管理系统。

  • 适用于订单量大需减少人工干预的电商运营场景。
  • 可同步状态、触发补货提醒与生成日报摘要。shopify-order-management 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 涉及资金与库存变动时应设置二次确认机制。
  • 请确保 webhook 配置正确以避免消息丢失或重复处理。

SKILL.md

name
shopify-order-management
description
Shopify order lifecycle management with new order handling, status sync, low-stock alerts, abandoned cart recovery, and daily sales reports. 5 production-ready n8n workflows with Google Sheets tracking and Shopify Admin API integration.
tags
[shopify, ecommerce, orders, inventory, abandoned-cart, sales, automation, n8n]
author
mhmalvi
version
1.2.0
license
CC BY-NC-SA 4.0
metadata
clawdbot
emoji
\F6D2
requires
n8nCredentials
[google-sheets-oauth2, smtp]
env
[SHOPIFY_STORE_URL, SHOPIFY_ACCESS_TOKEN, SHOPIFY_WEBHOOK_SECRET, SHOPIFY_ADMIN_EMAIL, LOW_STOCK_THRESHOLD]
os
[linux, darwin, win32]

Shopify Order Management

Complete Shopify order lifecycle management built on n8n. Handles new orders, status sync, inventory alerts, abandoned cart recovery, and daily sales reporting.

Problem

Shopify's built-in tools are limited for operations management. Order status changes aren't logged centrally, low-stock alerts arrive too late, abandoned cart emails are basic, and daily sales data requires logging into the admin dashboard.

This system automates the full order lifecycle with real-time tracking and proactive alerts.

What It Does

  1. New Order Handling — Webhook captures new orders, logs to Google Sheets, emails admin
  2. Order Status Sync — Periodically syncs fulfillment/payment status from Shopify to Sheets
  3. Low Stock Alerts — Checks inventory every 6 hours, alerts on items below threshold
  4. Abandoned Cart Recovery — Sends recovery emails to customers who abandoned checkout
  5. Daily Sales Reports — Revenue, order count, AOV, fulfillment stats, and top products

Included Workflows

#FilePurpose
0101-new-order-handler.jsonWebhook → parse order → log to Sheets → notify admin
0202-order-status-sync.jsonScheduled → check pending orders → sync from Shopify API
0303-low-stock-alert.jsonScheduled → inventory check → alert on low stock
0404-abandoned-cart-recovery.jsonScheduled → fetch abandoned carts → recovery email
0505-daily-sales-report.jsonDaily → fetch orders → metrics → report email

Architecture

Shopify Webhook (orders/create)
    |
    v
Workflow 01: New Order Handler
    +-> Parse order data
    +-> Log to Google Sheets (Orders tab)
    +-> Email notification to admin

Scheduled (every 2 hours):
    |
    v
Workflow 02: Order Status Sync
    +-> Read unfulfilled orders from Sheets
    +-> Fetch current status from Shopify API
    +-> Update Sheets with latest status

Scheduled (every 6 hours):
    |
    v
Workflow 03: Low Stock Alert
    +-> Fetch all products from Shopify
    +-> Check inventory vs threshold
    +-> IF low stock -> email alert

Scheduled (every 3 hours):
    |
    v
Workflow 04: Abandoned Cart Recovery
    +-> Fetch open checkouts from Shopify
    +-> Filter: abandoned 1-24 hours ago
    +-> Send recovery email with cart link

Daily:
    |
    v
Workflow 05: Daily Sales Report
    +-> Fetch last 24h orders
    +-> Calculate revenue, AOV, fulfillment stats
    +-> Top products by quantity
    +-> Email formatted report

Required n8n Credentials

Credential TypeUsed ForPlaceholder in JSON
Google Sheets OAuth2Order tracking and loggingYOUR_GOOGLE_SHEETS_CREDENTIAL_ID
SMTPNotifications, recovery emails, reportsYOUR_SMTP_CREDENTIAL_ID

Environment Variables

# Shopify (required)
SHOPIFY_STORE_URL=https://your-store.myshopify.com
SHOPIFY_ACCESS_TOKEN=shpat_xxxxxxxxxxxxx
SHOPIFY_WEBHOOK_SECRET=your-webhook-secret

# Google Sheets
SHOPIFY_ORDERS_SHEET_ID=your-sheet-id

# Alerts
SHOPIFY_ADMIN_EMAIL=admin@yourstore.com
LOW_STOCK_THRESHOLD=5

Configuration Placeholders

PlaceholderDescription
YOUR_SHOPIFY_ORDERS_SHEET_IDGoogle Sheet ID for order tracking
YOUR_GOOGLE_SHEETS_CREDENTIAL_IDn8n Google Sheets credential ID
YOUR_SMTP_CREDENTIAL_IDn8n SMTP credential ID
YOUR_NOTIFICATION_EMAILAdmin email for reports and alerts

Google Sheets Schema (Orders)

ColumnTypeDescription
order_idtextShopify order ID (primary key)
order_numbertextHuman-readable order number
customer_nametextCustomer full name
customer_emailtextCustomer email
customer_phonetextCustomer phone
total_pricenumberOrder total
currencytextCurrency code (USD, EUR, etc.)
financial_statustextpending / paid / refunded
fulfillment_statustextunfulfilled / fulfilled / delivered
items_countnumberNumber of line items
items_summarytextItem names and quantities
shipping_addresstextShipping address summary
created_atdatetimeOrder creation timestamp
synced_atdatetimeLast sync timestamp

Quick Start

1. Prerequisites

  • n8n v2.4+ (self-hosted)
  • Shopify store with Admin API access (custom app)
  • Google Sheets OAuth2 credentials
  • SMTP email credentials

2. Create Shopify Custom App

In Shopify Admin > Settings > Apps > Develop apps > Create app. Grant scopes: read_orders, read_products, read_checkouts.

3. Create Orders Sheet

Create a Google Sheet with the columns above. Name the tab "Orders".

4. Configure Shopify Webhook

In Shopify Admin > Settings > Notifications > Webhooks, add orders/create pointing to your n8n webhook URL.

5. Import & Configure

Import all 5 JSON files into n8n. Replace YOUR_* placeholders and set environment variables.

Use Cases

  1. DTC brands — Order tracking, inventory alerts, and automated cart recovery
  2. Print-on-demand — Monitor fulfillment status across products
  3. Dropshippers — Track orders and low-stock from suppliers
  4. Subscription boxes — Daily sales and fulfillment monitoring
  5. Agency operators — Multi-store management with centralized reporting

Requirements

  • n8n v2.4+ (self-hosted recommended)
  • Shopify store with Admin API custom app
  • Google Sheets OAuth2 credentials
  • SMTP email credentials

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.73%
按下载量换算4,249

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills