# Send Clawver Orders 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": "clawver-orders",
    "name": "Clawver Orders",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/nwang783/clawver-orders",
    "canonicalUrl": "https://clawhub.ai/nwang783/clawver-orders",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawver-orders",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawver-orders",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api-examples.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawver-orders",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:17:17.150Z",
      "expiresAt": "2026-05-06T12:17:17.150Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawver-orders",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawver-orders",
        "contentDisposition": "attachment; filename=\"clawver-orders-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawver-orders"
      },
      "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/clawver-orders"
    },
    "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/clawver-orders",
    "downloadUrl": "https://openagent3.xyz/downloads/clawver-orders",
    "agentUrl": "https://openagent3.xyz/skills/clawver-orders/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawver-orders/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawver-orders/agent.md"
  }
}
```
## Documentation

### Clawver Orders

Manage orders on your Clawver store—view order history, track fulfillment, process refunds, and generate download links.

### Prerequisites

CLAW_API_KEY environment variable
Active store with orders

For platform-specific good and bad API patterns from claw-social, use references/api-examples.md.

### Get All Orders

curl https://api.clawver.store/v1/orders \\
  -H "Authorization: Bearer $CLAW_API_KEY"

### Filter by Status

# Confirmed (paid) orders
curl "https://api.clawver.store/v1/orders?status=confirmed" \\
  -H "Authorization: Bearer $CLAW_API_KEY"

# In-progress POD orders
curl "https://api.clawver.store/v1/orders?status=processing" \\
  -H "Authorization: Bearer $CLAW_API_KEY"

# Shipped orders
curl "https://api.clawver.store/v1/orders?status=shipped" \\
  -H "Authorization: Bearer $CLAW_API_KEY"

# Delivered orders
curl "https://api.clawver.store/v1/orders?status=delivered" \\
  -H "Authorization: Bearer $CLAW_API_KEY"

Order statuses:

StatusDescriptionpendingOrder created, payment pendingconfirmedPayment confirmedprocessingBeing fulfilledshippedIn transit (POD only)deliveredCompletedcancelledCancelled

paymentStatus is reported separately and can be pending, paid, failed, partially_refunded, or refunded.

### Pagination

curl "https://api.clawver.store/v1/orders?limit=20" \\
  -H "Authorization: Bearer $CLAW_API_KEY"

limit is supported. Cursor-based pagination is not currently exposed on this endpoint.

### Get Order Details

curl https://api.clawver.store/v1/orders/{orderId} \\
  -H "Authorization: Bearer $CLAW_API_KEY"

For print-on-demand items, order payloads include:

variantId (required — fulfillment variant identifier, must match a product variant)
variantName (human-readable selected size/variant label)

Note: variantId is required for all POD checkout items as of Feb 2026. Out-of-stock variants are rejected.

### Owner Download Link (Digital Items)

curl "https://api.clawver.store/v1/orders/{orderId}/download/{itemId}" \\
  -H "Authorization: Bearer $CLAW_API_KEY"

Use this when customers report download issues or request a new link.

### Customer Download Link (Digital Items)

curl "https://api.clawver.store/v1/orders/{orderId}/download/{itemId}/public?token={downloadToken}"

Download tokens are issued per order item and can be returned in the checkout receipt (GET /v1/checkout/{checkoutId}/receipt).

### Customer Order Status (Public)

curl "https://api.clawver.store/v1/orders/{orderId}/public?token={orderStatusToken}"

### Checkout Receipt (Success Page / Support)

curl "https://api.clawver.store/v1/checkout/{checkoutId}/receipt"

### Full Refund

curl -X POST https://api.clawver.store/v1/orders/{orderId}/refund \\
  -H "Authorization: Bearer $CLAW_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "amountInCents": 2499,
    "reason": "Customer requested refund"
  }'

### Partial Refund

curl -X POST https://api.clawver.store/v1/orders/{orderId}/refund \\
  -H "Authorization: Bearer $CLAW_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "amountInCents": 500,
    "reason": "Partial refund for missing item"
  }'

Notes:

amountInCents is required and must be a positive integer
reason is required
amountInCents cannot exceed remaining refundable amount
Refunds process through Stripe (1-5 business days to customer)
Order must have paymentStatus of paid or partially_refunded

### POD Order Tracking

For print-on-demand orders, tracking info becomes available after shipping:

curl https://api.clawver.store/v1/orders/{orderId} \\
  -H "Authorization: Bearer $CLAW_API_KEY"

Check trackingUrl, trackingNumber, and carrier fields in response.

### Webhook for Shipping Updates

curl -X POST https://api.clawver.store/v1/webhooks \\
  -H "Authorization: Bearer $CLAW_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "url": "https://your-server.com/webhook",
    "events": ["order.shipped", "order.fulfilled"],
    "secret": "your-secret-min-16-chars"
  }'

### Order Webhooks

Receive real-time notifications:

curl -X POST https://api.clawver.store/v1/webhooks \\
  -H "Authorization: Bearer $CLAW_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "url": "https://your-server.com/webhook",
    "events": ["order.created", "order.paid", "order.refunded"],
    "secret": "your-webhook-secret-16chars"
  }'

Signature format:

X-Claw-Signature: sha256=abc123...

Verification (Node.js):

const crypto = require('crypto');

function verifyWebhook(body, signature, secret) {
  const expected = 'sha256=' + crypto
    .createHmac('sha256', secret)
    .update(body)
    .digest('hex');
  return crypto.timingSafeEqual(
    Buffer.from(signature),
    Buffer.from(expected)
  );
}

### Daily Order Check

# Get newly paid/confirmed orders
response = api.get("/v1/orders?status=confirmed")
orders = response["data"]["orders"]
print(f"New orders: {len(orders)}")

for order in orders:
    print(f"  - {order['id']}: ${order['totalInCents']/100:.2f}")

### Handle Refund Request

def process_refund(order_id, amount_cents, reason):
    # Get order details
    response = api.get(f"/v1/orders/{order_id}")
    order = response["data"]["order"]
    
    # Check if refundable
    if order["paymentStatus"] not in ["paid", "partially_refunded"]:
        return "Order cannot be refunded"
    
    # Process refund
    result = api.post(f"/v1/orders/{order_id}/refund", {
        "amountInCents": amount_cents,
        "reason": reason
    })
    
    return f"Refunded ${amount_cents/100:.2f}"

### Wrong Size Support Playbook

def handle_wrong_size(order_id):
    response = api.get(f"/v1/orders/{order_id}")
    order = response["data"]["order"]

    for item in order["items"]:
        if item.get("productType") == "print_on_demand":
            print("Variant ID:", item.get("variantId"))
            print("Variant Name:", item.get("variantName"))

    # Confirm selected variant before issuing a refund/replacement workflow.

### Resend Download Link

def resend_download(order_id, item_id):
    # Generate new download link
    response = api.get(f"/v1/orders/{order_id}/download/{item_id}")
    
    return response["data"]["downloadUrl"]

### Order Lifecycle

pending → confirmed → processing → shipped → delivered
               ↓
      cancelled / refunded (paymentStatus)

Digital products: confirmed → delivered (instant fulfillment)
POD products: confirmed → processing → shipped → delivered
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nwang783
- Version: 1.0.3
## 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-04-29T12:17:17.150Z
- Expires at: 2026-05-06T12:17:17.150Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawver-orders)
- [Send to Agent page](https://openagent3.xyz/skills/clawver-orders/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawver-orders/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawver-orders/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawver-orders)