重要前提
安装AI Skills的关键前提是:必须科学上网,且开启TUN模式,这一点至关重要,直接决定安装能否顺利完成,在此郑重提醒三遍:科学上网,科学上网,科学上网。查看完整安装教程 →
shopify by membranedev/application-skills
npx skills add https://github.com/membranedev/application-skills --skill shopifyShopify 是一个让任何人都能建立在线商店并销售产品的平台。它被创业者、小型企业和大型企业用于管理其电子商务运营,包括网站建设、支付处理和物流运输。
官方文档:https://shopify.dev
根据需要使用的操作名称和参数。
此技能使用 Membrane CLI 与 Shopify 交互。Membrane 会自动处理身份验证和凭证刷新——因此您可以专注于集成逻辑,而无需处理身份验证的底层细节。
安装 Membrane CLI,以便您可以从终端运行 membrane 命令:
npm install -g @membranehq/cli
membrane login --tenant
浏览器窗口将打开以进行身份验证。
无头环境: 运行该命令,复制打印出的 URL 供用户在浏览器中打开,然后使用 membrane login complete <code> 完成。
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
创建新连接:
membrane search shopify --elementType=connector --json
从 output.items[0].element?.id 获取连接器 ID,然后:
membrane connect --connectorId=CONNECTOR_ID --json
用户在浏览器中完成身份验证。输出包含新的连接 ID。
当您不确定连接是否已存在时:
检查现有连接:
membrane connection list --json
如果存在 Shopify 连接,请记下其 connectionId。
当您知道要做什么但不知道确切的操作 ID 时:
membrane action list --intent=QUERY --connectionId=CONNECTION_ID --json
这将返回包含 id 和 inputSchema 的操作对象,以便您知道如何运行它。
| 名称 | 键 | 描述 |
|---|---|---|
| 列出订单 | list-orders | 从 Shopify 商店检索订单列表 |
| 列出客户 | list-customers | 从 Shopify 商店检索客户列表 |
| 列出产品 | list-products | 从 Shopify 商店检索产品列表 |
| 列出草稿订单 | list-draft-orders | 检索草稿订单列表 |
| 列出系列 | list-collections | 检索自定义系列列表 |
| 列出地点 | list-locations | 检索商店地点列表 |
| 列出库存水平 | list-inventory-levels | 检索某个地点库存商品的库存水平 |
| 获取订单 | get-order | 按 ID 检索单个订单 |
| 获取客户 | get-customer | 按 ID 检索单个客户 |
| 获取产品 | get-product | 按 ID 检索单个产品 |
| 获取商店信息 | get-shop-info | 检索关于 Shopify 商店的信息 |
| 创建订单 | create-order | 在 Shopify 商店中创建新订单 |
| 创建客户 | create-customer | 在 Shopify 商店中创建新客户 |
| 创建产品 | create-product | 在 Shopify 商店中创建新产品 |
| 创建草稿订单 | create-draft-order | 创建新的草稿订单 |
| 更新订单 | update-order | 更新现有订单 |
| 更新客户 | update-customer | 更新现有客户 |
| 更新产品 | update-product | 更新现有产品 |
| 删除产品 | delete-product | 从 Shopify 商店中删除产品 |
| 调整库存水平 | adjust-inventory-level | 调整某个地点库存商品的库存水平 |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json
传递 JSON 参数:
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"
当现有操作无法满足您的用例时,您可以通过 Membrane 的代理直接向 Shopify API 发送请求。Membrane 会自动将基础 URL 附加到您提供的路径,并注入正确的身份验证标头——如果凭证过期,还会透明地进行刷新。
membrane request CONNECTION_ID /path/to/endpoint
常用选项:
| 标志 | 描述 |
|---|---|
-X, --method | HTTP 方法(GET、POST、PUT、PATCH、DELETE)。默认为 GET |
-H, --header | 添加请求头(可重复),例如 -H "Accept: application/json" |
-d, --data | 请求体(字符串) |
--json | 发送 JSON 正文并设置 Content-Type: application/json 的简写 |
--rawData | 按原样发送正文,不做任何处理 |
--query | 查询字符串参数(可重复),例如 --query "limit=10" |
--pathParam | 路径参数(可重复),例如 --pathParam "id=123" |
membrane action list --intent=QUERY(将 QUERY 替换为您的意图)以查找现有操作。预构建的操作处理了原始 API 调用可能遗漏的分页、字段映射和边界情况。每周安装数
72
代码仓库
GitHub 星标数
18
首次出现
2026年3月11日
安全审计
安装于
claude-code72
github-copilot72
codex72
kimi-cli72
gemini-cli72
cursor72
Shopify is a platform that enables anyone to set up an online store and sell their products. It's used by entrepreneurs, small businesses, and large enterprises to manage their e-commerce operations, including website building, payment processing, and shipping.
Official docs: https://shopify.dev
Use action names and parameters as needed.
This skill uses the Membrane CLI to interact with Shopify. Membrane handles authentication and credentials refresh automatically — so you can focus on the integration logic rather than auth plumbing.
Install the Membrane CLI so you can run membrane from the terminal:
npm install -g @membranehq/cli
membrane login --tenant
A browser window opens for authentication.
Headless environments: Run the command, copy the printed URL for the user to open in a browser, then complete with membrane login complete <code>.
Create a new connection:
membrane search shopify --elementType=connector --json
Take the connector ID from output.items[0].element?.id, then:
membrane connect --connectorId=CONNECTOR_ID --json
The user completes authentication in the browser. The output contains the new connection id.
When you are not sure if connection already exists:
Check existing connections:
membrane connection list --json
If a Shopify connection exists, note its connectionId
When you know what you want to do but not the exact action ID:
membrane action list --intent=QUERY --connectionId=CONNECTION_ID --json
This will return action objects with id and inputSchema in it, so you will know how to run it.
| Name | Key | Description |
|---|---|---|
| List Orders | list-orders | Retrieve a list of orders from the Shopify store |
| List Customers | list-customers | Retrieve a list of customers from the Shopify store |
| List Products | list-products | Retrieve a list of products from the Shopify store |
| List Draft Orders | list-draft-orders | Retrieve a list of draft orders |
| List Collections | list-collections | Retrieve a list of custom collections |
| List Locations | list-locations | Retrieve a list of store locations |
| List Inventory Levels | list-inventory-levels | Retrieve inventory levels for inventory items at a location |
| Get Order | get-order | Retrieve a single order by ID |
| Get Customer | get-customer |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json
To pass JSON parameters:
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"
When the available actions don't cover your use case, you can send requests directly to the Shopify API through Membrane's proxy. Membrane automatically appends the base URL to the path you provide and injects the correct authentication headers — including transparent credential refresh if they expire.
membrane request CONNECTION_ID /path/to/endpoint
Common options:
| Flag | Description |
|---|---|
-X, --method | HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
-H, --header | Add a request header (repeatable), e.g. -H "Accept: application/json" |
-d, --data | Request body (string) |
--json | Shorthand to send a JSON body and set Content-Type: application/json |
--rawData |
membrane action list --intent=QUERY (replace QUERY with your intent) to find existing actions before writing custom API calls. Pre-built actions handle pagination, field mapping, and edge cases that raw API calls miss.Weekly Installs
72
Repository
GitHub Stars
18
First Seen
Mar 11, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
claude-code72
github-copilot72
codex72
kimi-cli72
gemini-cli72
cursor72
Skills CLI 使用指南:AI Agent 技能包管理器安装与管理教程
48,700 周安装
LangGraph智能体架构指南:构建生产级AI智能体的图结构与状态管理
296 周安装
代码库分析工具 - 理解代码结构、模式与流程的AI分析能力 | Claude配置
296 周安装
App Builder应用构建协调器:AI智能分析技术栈,13个模板快速搭建全栈项目
296 周安装
CloudFormation 转 Pulumi 迁移指南:完整工作流与关键成功要求
298 周安装
LobeHub 开源 AI 智能体工作空间 | 现代设计,支持 Web/桌面/移动端
307 周安装
Webflow 无障碍审计工具 - 全面 WCAG 2.1 合规性检测与修复方案
308 周安装
| Retrieve a single customer by ID |
| Get Product | get-product | Retrieve a single product by ID |
| Get Shop Info | get-shop-info | Retrieve information about the Shopify shop |
| Create Order | create-order | Create a new order in the Shopify store |
| Create Customer | create-customer | Create a new customer in the Shopify store |
| Create Product | create-product | Create a new product in the Shopify store |
| Create Draft Order | create-draft-order | Create a new draft order |
| Update Order | update-order | Update an existing order |
| Update Customer | update-customer | Update an existing customer |
| Update Product | update-product | Update an existing product |
| Delete Product | delete-product | Delete a product from the Shopify store |
| Adjust Inventory Level | adjust-inventory-level | Adjust the inventory level for an inventory item at a location |
| Send the body as-is without any processing |
--query | Query-string parameter (repeatable), e.g. --query "limit=10" |
--pathParam | Path parameter (repeatable), e.g. --pathParam "id=123" |