# Send Clawpify to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawpify",
    "name": "Clawpify",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Alhwyn/clawpify",
    "canonicalUrl": "https://clawhub.ai/Alhwyn/clawpify",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawpify",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawpify",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/blogs.md",
      "references/bulk-operations.md",
      "references/collections.md",
      "references/customers.md",
      "references/discounts.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawpify",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T19:07:39.436Z",
      "expiresAt": "2026-05-08T19:07:39.436Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawpify",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawpify",
        "contentDisposition": "attachment; filename=\"clawpify-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawpify"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clawpify"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawpify",
    "downloadUrl": "https://openagent3.xyz/downloads/clawpify",
    "agentUrl": "https://openagent3.xyz/skills/clawpify/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawpify/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawpify/agent.md"
  }
}
```
## Documentation

### Shopify GraphQL Admin API

A comprehensive skill for interacting with Shopify's GraphQL Admin API. This skill enables Claude to query and manage all aspects of Shopify store data.

### When to Use This Skill

Use this skill when the user asks about:

Products (list, search, create, update, delete)
Orders (view, cancel, fulfill)
Customers (list, create, update)
Inventory (check levels, adjust quantities)
Discounts (create codes, manage promotions)
Any other Shopify store operations

### Critical Operations Requiring Permission

IMPORTANT: Before executing any of the following operations, you MUST ask for explicit user permission:

Refunds: Create refunds (permanent financial transactions)
Order Cancellations: Cancel orders (may trigger refunds)
Gift Card Deactivation: Permanently disable gift cards
Inventory Adjustments: Modify stock levels
Product Deletions: Permanently remove products
Discount Activations: Change pricing for customers

Always show what will be changed and wait for user confirmation.

### How to Use

Use the shopify_graphql tool to execute queries
Check for errors (GraphQL issues) and userErrors (validation issues)
Use pagination with first/after for large result sets
Format all IDs as: gid://shopify/Resource/123

### Available References

For detailed patterns and examples, refer to the reference documents:

products.md - Products and variants management
orders.md - Order operations
customers.md - Customer management
inventory.md - Inventory and locations
discounts.md - Discount codes and promotions
collections.md - Product collections
fulfillments.md - Order fulfillment and shipping
refunds.md - Process refunds
draft-orders.md - Draft order creation
gift-cards.md - Gift card management
webhooks.md - Event subscriptions
locations.md - Store locations
marketing.md - Marketing activities
markets.md - Multi-market setup
menus.md - Navigation menus
metafields.md - Custom data fields
pages.md - Store pages
blogs.md - Blog management
files.md - File uploads
shipping.md - Shipping configuration
shop.md - Store information
subscriptions.md - Subscription management
translations.md - Content translations
segments.md - Customer segments
bulk-operations.md - Bulk data operations

### List Recent Orders

query {
  orders(first: 10, sortKey: CREATED_AT, reverse: true) {
    nodes {
      id
      name
      totalPriceSet {
        shopMoney { amount currencyCode }
      }
      customer { displayName }
    }
  }
}

### Search Products

query {
  products(first: 10, query: "title:*shirt* AND status:ACTIVE") {
    nodes {
      id
      title
      status
    }
  }
}

### Check Inventory

query GetInventory($id: ID!) {
  inventoryItem(id: $id) {
    id
    inventoryLevels(first: 5) {
      nodes {
        quantities(names: ["available"]) {
          name
          quantity
        }
        location { name }
      }
    }
  }
}

### Error Handling

Always check responses:

errors array = GraphQL syntax issues
userErrors in mutations = validation problems

### Best Practices

Request only needed fields to optimize response size
Use pagination for lists that may grow
Check userErrors in all mutation responses
Ask permission before dangerous operations
Format results clearly for the user
Use bulk operations for large data exports/imports
Handle rate limits with exponential backoff
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Alhwyn
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T19:07:39.436Z
- Expires at: 2026-05-08T19:07:39.436Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawpify)
- [Send to Agent page](https://openagent3.xyz/skills/clawpify/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawpify/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawpify/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawpify)