← 返回 Skills 市场
nwang783

Clawver Digital Products

作者 nwang783 · GitHub ↗ · v1.0.2
cross-platform ✓ 安全检测通过
1862
总下载
2
收藏
5
当前安装
3
版本数
在 OpenClaw 中安装
/install clawver-digital-products
功能描述
Create and sell digital products on Clawver. Upload files, set pricing, publish listings, track downloads. Use when selling digital goods like art packs, ebooks, templates, software, or downloadable content.
使用说明 (SKILL.md)

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.

Create a Digital Product

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}

Manage Products

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"

Track Downloads

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.

安全使用建议
This skill appears coherent for interacting with the Clawver API. Before installing: (1) confirm the CLAW_API_KEY you supply is scoped/minimal and can be revoked if needed; (2) avoid sharing sensitive personal data or private files via base64 or public URLs unless you control the destination; (3) verify Stripe onboarding and payout requirements on your Clawver account (the skill mentions those as prerequisites but doesn't manage them); and (4) treat signed download links and uploaded files as potentially public—review retention and access controls on Clawver. If you want higher assurance, ask the publisher for an official source or code and verify the API hostname matches the service you expect (api.clawver.store).
功能分析
Type: OpenClaw Skill Name: clawver-digital-products Version: 1.0.2 The skill bundle is designed to interact with the 'Clawver Digital Products' API for managing digital product listings. All `curl` commands target `https://api.clawver.store` and use the `$CLAW_API_KEY` for authentication, which aligns with the stated purpose. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts to subvert the agent's intended behavior. The instructions in `SKILL.md` and `references/api-examples.md` are clear and focused on legitimate API usage.
能力评估
Purpose & Capability
Name and description match the runtime instructions (creating products, uploading files, publishing, tracking). The single required env var (CLAW_API_KEY) is appropriate for an API-backed marketplace integration.
Instruction Scope
SKILL.md contains curl examples that call api.clawver.store endpoints and describes acceptable inputs (HTTPS URLs or base64). It does not instruct the agent to read unrelated files, system config, or additional environment variables.
Install Mechanism
No install spec or code files are present (instruction-only). Nothing is downloaded or installed by the skill itself, which minimizes risk.
Credentials
Only CLAW_API_KEY is required and declared as primaryEnv. No additional secrets or unrelated credentials are requested.
Persistence & Privilege
Skill is not always-on, does not request elevated persistence, and does not modify other skills or system configuration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clawver-digital-products
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clawver-digital-products 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
- Updated prerequisites: clarified Stripe requirements and digital file hosting policy. - Expanded supported file types to include jpeg, gif, and txt. - Added reference to platform-specific API examples in a new `references/api-examples.md` file. - Minor clarifications throughout documentation.
v1.0.1
- Updated documentation to remove inline API response examples for brevity. - Clarified file upload size limits and removed fixed size values. - Simplified product creation and management steps. - Streamlined analytics and download instructions. - Incremented version to 1.1.0.
v1.0.0
Initial release of Clawver Digital Products skill. - Enables creation, management, and sale of digital products (art packs, ebooks, software, etc.) on Clawver. - Supports product listing, file upload (via URL or base64), publishing, updating, and archiving. - Includes analytics tracking for downloads, sales, and reviews. - Provides best practices for digital product setup and tips for optimizing listings. - Requires Stripe onboarding and CLAW_API_KEY environment variable.
元数据
Slug clawver-digital-products
版本 1.0.2
许可证
累计安装 5
当前安装数 5
历史版本数 3
常见问题

Clawver Digital Products 是什么?

Create and sell digital products on Clawver. Upload files, set pricing, publish listings, track downloads. Use when selling digital goods like art packs, ebooks, templates, software, or downloadable content. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1862 次。

如何安装 Clawver Digital Products?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawver-digital-products」即可一键安装,无需额外配置。

Clawver Digital Products 是免费的吗?

是的,Clawver Digital Products 完全免费(开源免费),可自由下载、安装和使用。

Clawver Digital Products 支持哪些平台?

Clawver Digital Products 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Clawver Digital Products?

由 nwang783(@nwang783)开发并维护,当前版本 v1.0.2。

💬 留言讨论