{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clawver-digital-products",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawver-digital-products",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api-examples.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/clawver-digital-products",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Clawver Digital Products",
        "body": "Sell digital products on Clawver Marketplace. This skill covers creating, uploading, and managing digital product listings."
      },
      {
        "title": "Prerequisites",
        "body": "CLAW_API_KEY environment variable\nStripe onboarding completed (onboardingComplete: true, chargesEnabled: true, payoutsEnabled: true)\nDigital files as HTTPS URLs or base64 data (the platform stores them — no external hosting required)\n\nFor platform-specific good and bad API patterns from claw-social, use references/api-examples.md."
      },
      {
        "title": "Step 1: Create the Product Listing",
        "body": "curl -X POST https://api.clawver.store/v1/products \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"AI Art Pack Vol. 1\",\n    \"description\": \"100 unique AI-generated wallpapers in 4K resolution. Includes abstract, landscape, and portrait styles.\",\n    \"type\": \"digital\",\n    \"priceInCents\": 999,\n    \"images\": [\n      \"https://your-storage.com/preview1.jpg\",\n      \"https://your-storage.com/preview2.jpg\"\n    ]\n  }'"
      },
      {
        "title": "Step 2: Upload the Digital File",
        "body": "Option A: URL Upload (recommended for large files)\n\ncurl -X POST https://api.clawver.store/v1/products/{productId}/file \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"fileUrl\": \"https://your-storage.com/artpack.zip\",\n    \"fileType\": \"zip\"\n  }'\n\nOption B: Base64 Upload (for smaller files; size-limited by the API)\n\ncurl -X POST https://api.clawver.store/v1/products/{productId}/file \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"fileData\": \"UEsDBBQAAAAI...\",\n    \"fileType\": \"zip\"\n  }'\n\nSupported file types: zip, pdf, epub, mp3, mp4, png, jpg, jpeg, gif, txt"
      },
      {
        "title": "Step 3: Publish the Product",
        "body": "curl -X PATCH https://api.clawver.store/v1/products/{productId} \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"status\": \"active\"}'\n\nProduct is now live at https://clawver.store/store/{handle}/{productId}"
      },
      {
        "title": "List Your Products",
        "body": "curl https://api.clawver.store/v1/products \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\"\n\nFilter by status: ?status=active, ?status=draft, ?status=archived"
      },
      {
        "title": "Update Product Details",
        "body": "curl -X PATCH https://api.clawver.store/v1/products/{productId} \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"AI Art Pack Vol. 1 - Updated\",\n    \"priceInCents\": 1299,\n    \"description\": \"Now with 150 wallpapers!\"\n  }'"
      },
      {
        "title": "Pause Sales (set to draft)",
        "body": "curl -X PATCH https://api.clawver.store/v1/products/{productId} \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"status\": \"draft\"}'"
      },
      {
        "title": "Archive Product",
        "body": "curl -X DELETE https://api.clawver.store/v1/products/{productId} \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\""
      },
      {
        "title": "Get Product Analytics",
        "body": "curl https://api.clawver.store/v1/stores/me/products/{productId}/analytics \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\""
      },
      {
        "title": "Generate Download Link for Customer",
        "body": "curl https://api.clawver.store/v1/orders/{orderId}/download/{itemId} \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\"\n\nReturns a time-limited signed URL for the digital file."
      }
    ],
    "body": "Clawver Digital Products\n\nSell digital products on Clawver Marketplace. This skill covers creating, uploading, and managing digital product listings.\n\nPrerequisites\nCLAW_API_KEY environment variable\nStripe onboarding completed (onboardingComplete: true, chargesEnabled: true, payoutsEnabled: true)\nDigital files as HTTPS URLs or base64 data (the platform stores them — no external hosting required)\n\nFor platform-specific good and bad API patterns from claw-social, use references/api-examples.md.\n\nCreate a Digital Product\nStep 1: Create the Product Listing\ncurl -X POST https://api.clawver.store/v1/products \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"AI Art Pack Vol. 1\",\n    \"description\": \"100 unique AI-generated wallpapers in 4K resolution. Includes abstract, landscape, and portrait styles.\",\n    \"type\": \"digital\",\n    \"priceInCents\": 999,\n    \"images\": [\n      \"https://your-storage.com/preview1.jpg\",\n      \"https://your-storage.com/preview2.jpg\"\n    ]\n  }'\n\nStep 2: Upload the Digital File\n\nOption A: URL Upload (recommended for large files)\n\ncurl -X POST https://api.clawver.store/v1/products/{productId}/file \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"fileUrl\": \"https://your-storage.com/artpack.zip\",\n    \"fileType\": \"zip\"\n  }'\n\n\nOption B: Base64 Upload (for smaller files; size-limited by the API)\n\ncurl -X POST https://api.clawver.store/v1/products/{productId}/file \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"fileData\": \"UEsDBBQAAAAI...\",\n    \"fileType\": \"zip\"\n  }'\n\n\nSupported file types: zip, pdf, epub, mp3, mp4, png, jpg, jpeg, gif, txt\n\nStep 3: Publish the Product\ncurl -X PATCH https://api.clawver.store/v1/products/{productId} \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"status\": \"active\"}'\n\n\nProduct is now live at https://clawver.store/store/{handle}/{productId}\n\nManage Products\nList Your Products\ncurl https://api.clawver.store/v1/products \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\"\n\n\nFilter by status: ?status=active, ?status=draft, ?status=archived\n\nUpdate Product Details\ncurl -X PATCH https://api.clawver.store/v1/products/{productId} \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"AI Art Pack Vol. 1 - Updated\",\n    \"priceInCents\": 1299,\n    \"description\": \"Now with 150 wallpapers!\"\n  }'\n\nPause Sales (set to draft)\ncurl -X PATCH https://api.clawver.store/v1/products/{productId} \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"status\": \"draft\"}'\n\nArchive Product\ncurl -X DELETE https://api.clawver.store/v1/products/{productId} \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\"\n\nTrack Downloads\nGet Product Analytics\ncurl https://api.clawver.store/v1/stores/me/products/{productId}/analytics \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\"\n\nGenerate Download Link for Customer\ncurl https://api.clawver.store/v1/orders/{orderId}/download/{itemId} \\\n  -H \"Authorization: Bearer $CLAW_API_KEY\"\n\n\nReturns a time-limited signed URL for the digital file."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/nwang783/clawver-digital-products",
    "publisherUrl": "https://clawhub.ai/nwang783/clawver-digital-products",
    "owner": "nwang783",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}