# Send Pipe17 Openclaw Skill 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": "pipe17-openclaw-skill",
    "name": "Pipe17 Openclaw Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/j-shao1/pipe17-openclaw-skill",
    "canonicalUrl": "https://clawhub.ai/j-shao1/pipe17-openclaw-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pipe17-openclaw-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pipe17-openclaw-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pipe17-openclaw-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T03:21:59.513Z",
      "expiresAt": "2026-05-14T03:21:59.513Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pipe17-openclaw-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pipe17-openclaw-skill",
        "contentDisposition": "attachment; filename=\"pipe17-openclaw-skill-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pipe17-openclaw-skill"
      },
      "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/pipe17-openclaw-skill"
    },
    "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/pipe17-openclaw-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/pipe17-openclaw-skill",
    "agentUrl": "https://openagent3.xyz/skills/pipe17-openclaw-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pipe17-openclaw-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pipe17-openclaw-skill/agent.md"
  }
}
```
## Documentation

### pipe17

Use the Pipe17 Unified API to search and read core commerce/operations objects.

This skill focuses on:

Search + read Orders
Search + read Shipping Requests (a.k.a. Shipments)
Search + read Fulfillments
Search Inventory by SKU (and optionally location)

### Setup

Create / obtain a Pipe17 API key for the target organization/integration.
Export it:

export PIPE17_API_KEY="..."

Keep the API key secret. Use least-privilege keys whenever possible.

### API Basics

Base URL (default):

https://api-v3.pipe17.com/api/v3

All requests should include:

X-Pipe17-Key: ${PIPE17_API_KEY}
Accept: application/json

Example:

P17_BASE="https://api-v3.pipe17.com/api/v3"

curl "${P17_BASE}/orders" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

### Search & Filtering

Pipe17 commonly supports server-side filtering via query parameters, often including:

filters=... (repeatable)
limit=...
page=...

A common filter encoding pattern looks like:

filters={type}~{field}~{operator}~{value}

Examples of typical patterns:

filters=string~status~equals~readyForFulfillment
filters=string~status~equalsAnyOf~new,onHold,readyForFulfillment
filters=date~extOrderCreatedAt~isGreaterThanOrEqualTo~2024-12-31T00:00:00.000Z

If your tenant uses a different filter grammar, follow the contract in the API doc.

### Search orders

List orders with optional query parameters.

ParameterTypeDescriptioncountinteger (int32)Number of results to returnskipinteger (int32)Number of results to skip (for pagination)extOrderIdarray[string]Filter by external order ID(s)sincestring (date-time)Filter orders since this UTC ISO timestampstatusarray[string]Filter by status(es)

Allowed status values: draft, new, onHold, toBeValidated, reviewRequired, readyForFulfillment, sentToFulfillment, partialFulfillment, fulfilled, inTransit, partialReceived, received, canceled, returned, refunded, archived, closed

P17_BASE="https://api-v3.pipe17.com/api/v3"

# Example: most recent orders (paging)
curl "${P17_BASE}/orders?count=25&skip=0" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

# Example: filter by status
curl "${P17_BASE}/orders?count=25&status=new&status=onHold&status=readyForFulfillment" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

# Example: filter by date
curl "${P17_BASE}/orders?count=25&since=2024-12-31T00:00:00.000Z" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

# Example: filter by external order ID
curl "${P17_BASE}/orders?extOrderId=EXT-12345" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

### Read order by id

The search endpoint returns an orderId for each order. Use it to fetch full order details.

P17_BASE="https://api-v3.pipe17.com/api/v3"
ORDER_ID="{orderId}"

curl "${P17_BASE}/orders/${ORDER_ID}" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

### Search shipping requests

List shipping requests with optional query parameters.

ParameterTypeDescriptioncountinteger (int32)Number of results to returnskipinteger (int32)Number of results to skip (for pagination)extOrderIdarray[string]Filter by external order ID(s)orderIdarray[string]Filter by Pipe17 order ID(s)locationIdarray[string]Filter by location ID(s)sincestring (date-time)Filter shipping requests since this UTC ISO timestampstatusarray[string]Filter by status(es)

Allowed status values: new, pendingInventory, pendingShippingLabel, reviewRequired, readyForFulfillment, sentToFulfillment, fulfilled, partialFulfillment, canceled, canceledRestock, failed, onHold

P17_BASE="https://api-v3.pipe17.com/api/v3"

# Example: list shipping requests
curl "${P17_BASE}/shipping_requests?count=25&skip=0" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

# Example: filter by status
curl "${P17_BASE}/shipping_requests?count=25&status=readyForFulfillment" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

# Example: filter by order ID
curl "${P17_BASE}/shipping_requests?count=25&orderId=ORD-12345" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

# Example: filter by location
curl "${P17_BASE}/shipping_requests?count=25&locationId=LOC-001" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

### Read shipping request by id

P17_BASE="https://api-v3.pipe17.com/api/v3"
SHIPPING_REQUEST_ID="{shippingRequestId}"

curl "${P17_BASE}/shipping_requests/${SHIPPING_REQUEST_ID}" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

### Fulfillments

Fulfillments represent completed shipment execution with tracking and shipped line items. They are typically treated as immutable once created.

### Search fulfillments

List fulfillments with optional query parameters.

ParameterTypeDescriptioncountinteger (int32)Number of results to returnskipinteger (int32)Number of results to skip (for pagination)extOrderIdarray[string]Filter by external order ID(s)orderIdarray[string]Filter by Pipe17 order ID(s)shipmentIdarray[string]Filter by shipment ID(s)locationIdarray[string]Filter by location ID(s)sincestring (date-time)Filter fulfillments since this UTC ISO timestamp

P17_BASE="https://api-v3.pipe17.com/api/v3"

# Example: list fulfillments
curl "${P17_BASE}/fulfillments?count=25&skip=0" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

# Example: filter by order ID
curl "${P17_BASE}/fulfillments?count=25&orderId=ORD-12345" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

# Example: filter by shipment ID
curl "${P17_BASE}/fulfillments?count=25&shipmentId=SHIP-001" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

# Example: filter by date
curl "${P17_BASE}/fulfillments?count=25&since=2024-12-31T00:00:00.000Z" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

### Read fulfillment by id

P17_BASE="https://api-v3.pipe17.com/api/v3"
FULFILLMENT_ID="{fulfillmentId}"

curl "${P17_BASE}/fulfillments/${FULFILLMENT_ID}" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

### Inventory

Inventory is stored per SKU (and often per location) and may include multiple quantity types (e.g., onHand, available, committed, etc.).

### Search inventory

List inventory with optional query parameters.

ParameterTypeDescriptioncountinteger (int32)Number of results to returnskipinteger (int32)Number of results to skip (for pagination)skuarray[string]Filter by SKU(s). Mutually exclusive with sku_gt/sku_ltlocationIdarray[string]Filter by location ID(s)sincestring (date-time)Filter inventory created after this UTC ISO timestampavailableintegerFilter where available equals this value. Mutually exclusive with available_gt/available_ltavailable_gtintegerFilter where available is greater than this valueavailable_ltintegerFilter where available is less than this valueonHandintegerFilter where onHand equals this value. Mutually exclusive with onHand_gt/onHand_ltonHand_gtintegerFilter where onHand is greater than this valueonHand_ltintegerFilter where onHand is less than this valuetotalsbooleanReturn inventory totals across all locations (not allowed with ledger flag)ledgerbooleanReturn inventory ledger information (not allowed with totals flag)

Default behavior: Always send totals=true unless the user specifically requests ledger detail. totals and ledger are mutually exclusive.

P17_BASE="https://api-v3.pipe17.com/api/v3"

# Example: list inventory by SKU (always use totals=true by default)
curl "${P17_BASE}/inventory?count=100&sku=MY-SKU-001&totals=true" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

# Example: SKU + location
curl "${P17_BASE}/inventory?count=100&sku=MY-SKU-001&locationId=LOC-001&totals=true" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

# Example: find items with zero available
curl "${P17_BASE}/inventory?count=100&available=0&totals=true" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

# Example: find items with available > 10
curl "${P17_BASE}/inventory?count=100&available_gt=10&totals=true" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

# Example: get ledger detail (only when specifically requested)
curl "${P17_BASE}/inventory?count=100&sku=MY-SKU-001&ledger=true" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

### Read inventory record by inventoryId

P17_BASE="https://api-v3.pipe17.com/api/v3"
INVENTORY_ID="{inventoryId}"

curl "${P17_BASE}/inventory/${INVENTORY_ID}" \\
  -H "X-Pipe17-Key: ${PIPE17_API_KEY}" \\
  -H "Accept: application/json"

### Notes

Prefer list/search endpoints with pagination (count, skip) for support workflows.
Favor narrow filters (status/date/sku) to avoid pulling large result sets.
If you hit rate limits, implement backoff and retry according to response headers.

### References

Pipe17 Unified API Docs: https://apidoc.pipe17.com/#/
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: j-shao1
- 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-07T03:21:59.513Z
- Expires at: 2026-05-14T03:21:59.513Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pipe17-openclaw-skill)
- [Send to Agent page](https://openagent3.xyz/skills/pipe17-openclaw-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/pipe17-openclaw-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pipe17-openclaw-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/pipe17-openclaw-skill)