549★by mrgoodb
shopify – OpenClaw Skill
shopify is an OpenClaw Skills integration for writing workflows. Manage Shopify stores - products, orders, customers, and inventory via Admin API.
549 stars3.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing
Skill Snapshot
| name | shopify |
| description | Manage Shopify stores - products, orders, customers, and inventory via Admin API. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/shopify |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/shopify |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
267 BSKILL.md
1.6 KBSKILL.md
name: shopify description: Manage Shopify stores - products, orders, customers, and inventory via Admin API. metadata: {"clawdbot":{"emoji":"🛒","requires":{"env":["SHOPIFY_STORE","SHOPIFY_ACCESS_TOKEN"]}}}
Shopify
Manage e-commerce stores.
Environment
export SHOPIFY_STORE="your-store.myshopify.com"
export SHOPIFY_ACCESS_TOKEN="shpat_xxxxxxxxxx"
List Products
curl "https://$SHOPIFY_STORE/admin/api/2024-01/products.json" \
-H "X-Shopify-Access-Token: $SHOPIFY_ACCESS_TOKEN"
Create Product
curl -X POST "https://$SHOPIFY_STORE/admin/api/2024-01/products.json" \
-H "X-Shopify-Access-Token: $SHOPIFY_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"product": {
"title": "New Product",
"body_html": "<p>Description</p>",
"vendor": "My Brand",
"product_type": "Clothing",
"variants": [{"price": "29.99", "sku": "SKU123"}]
}
}'
List Orders
curl "https://$SHOPIFY_STORE/admin/api/2024-01/orders.json?status=any" \
-H "X-Shopify-Access-Token: $SHOPIFY_ACCESS_TOKEN"
Get Order Details
curl "https://$SHOPIFY_STORE/admin/api/2024-01/orders/{order_id}.json" \
-H "X-Shopify-Access-Token: $SHOPIFY_ACCESS_TOKEN"
Update Inventory
curl -X POST "https://$SHOPIFY_STORE/admin/api/2024-01/inventory_levels/set.json" \
-H "X-Shopify-Access-Token: $SHOPIFY_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"location_id": 123, "inventory_item_id": 456, "available": 100}'
Links
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install shopify?
Run openclaw add @mrgoodb/shopify in your terminal. This installs shopify into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/shopify. Review commits and README documentation before installing.
