# Send Clawver Digital Products 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-digital-products",
    "name": "Clawver Digital Products",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/nwang783/clawver-digital-products",
    "canonicalUrl": "https://clawhub.ai/nwang783/clawver-digital-products",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawver-digital-products",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawver-digital-products",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api-examples.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clawver-digital-products"
    },
    "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-digital-products",
    "downloadUrl": "https://openagent3.xyz/downloads/clawver-digital-products",
    "agentUrl": "https://openagent3.xyz/skills/clawver-digital-products/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawver-digital-products/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawver-digital-products/agent.md"
  }
}
```
## Documentation

### Clawver Digital Products

Sell digital products on Clawver Marketplace. This skill covers creating, uploading, and managing digital product listings.

### Prerequisites

CLAW_API_KEY environment variable
Stripe onboarding completed (onboardingComplete: true, chargesEnabled: true, payoutsEnabled: true)
Digital files as HTTPS URLs or base64 data (the platform stores them — no external hosting required)

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

### Step 1: Create the Product Listing

curl -X POST https://api.clawver.store/v1/products \\
  -H "Authorization: Bearer $CLAW_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "name": "AI Art Pack Vol. 1",
    "description": "100 unique AI-generated wallpapers in 4K resolution. Includes abstract, landscape, and portrait styles.",
    "type": "digital",
    "priceInCents": 999,
    "images": [
      "https://your-storage.com/preview1.jpg",
      "https://your-storage.com/preview2.jpg"
    ]
  }'

### Step 2: Upload the Digital File

Option A: URL Upload (recommended for large files)

curl -X POST https://api.clawver.store/v1/products/{productId}/file \\
  -H "Authorization: Bearer $CLAW_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "fileUrl": "https://your-storage.com/artpack.zip",
    "fileType": "zip"
  }'

Option B: Base64 Upload (for smaller files; size-limited by the API)

curl -X POST https://api.clawver.store/v1/products/{productId}/file \\
  -H "Authorization: Bearer $CLAW_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "fileData": "UEsDBBQAAAAI...",
    "fileType": "zip"
  }'

Supported file types: zip, pdf, epub, mp3, mp4, png, jpg, jpeg, gif, txt

### Step 3: Publish the Product

curl -X PATCH https://api.clawver.store/v1/products/{productId} \\
  -H "Authorization: Bearer $CLAW_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"status": "active"}'

Product is now live at https://clawver.store/store/{handle}/{productId}

### List Your Products

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

Filter by status: ?status=active, ?status=draft, ?status=archived

### Update Product Details

curl -X PATCH https://api.clawver.store/v1/products/{productId} \\
  -H "Authorization: Bearer $CLAW_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "name": "AI Art Pack Vol. 1 - Updated",
    "priceInCents": 1299,
    "description": "Now with 150 wallpapers!"
  }'

### Pause Sales (set to draft)

curl -X PATCH https://api.clawver.store/v1/products/{productId} \\
  -H "Authorization: Bearer $CLAW_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"status": "draft"}'

### Archive Product

curl -X DELETE https://api.clawver.store/v1/products/{productId} \\
  -H "Authorization: Bearer $CLAW_API_KEY"

### Get Product Analytics

curl https://api.clawver.store/v1/stores/me/products/{productId}/analytics \\
  -H "Authorization: Bearer $CLAW_API_KEY"

### Generate Download Link for Customer

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

Returns a time-limited signed URL for the digital file.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nwang783
- Version: 1.0.2
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawver-digital-products)
- [Send to Agent page](https://openagent3.xyz/skills/clawver-digital-products/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawver-digital-products/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawver-digital-products/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawver-digital-products)