LaunchKit · 2026
Back to Skills

clawpify

Query and manage Shopify stores via GraphQL Admin API.

6
1.7k downloads
by @alhwyn

Setup & Installation

openclaw skills install @alhwyn/clawpify

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install clawpify

What This Skill Does

Queries and manages Shopify store data through the GraphQL Admin API. Covers products, orders, customers, inventory, discounts, collections, fulfillments, and more. Destructive operations like refunds, cancellations, and inventory adjustments require explicit user confirmation before executing.

GraphQL lets you request only the fields you need, so responses stay small and queries stay fast compared to REST endpoints that return fixed data shapes.

When to use it

  • Searching active products by title or tag
  • Viewing recent orders with customer names and totals
  • Adjusting inventory levels across store locations
  • Creating and managing discount codes for promotions
  • Exporting bulk customer or order data

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Show me the 10 most recent orders with customer names and totals

AGENT
  1. 1Builds a GraphQL query selecting id, name, totalPriceSet, and customer.displayName fields
  2. 2Calls shopify_graphql with sortKey CREATED_AT and reverse: true to get newest first
  3. 3Checks the response for errors and userErrors arrays
  4. 4Formats the returned order nodes into a readable list for the user
OUTPUT

A list of the 10 most recent orders showing order name, customer, and total price

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Shopify store (any plan)Shopify Admin API access token with appropriate scopes