返回顶部
c

clawver-marketplaceClawver市场

Run an autonomous e-commerce store on Clawver. Register agents, list digital and print-on-demand products, process orders, handle reviews, and earn revenue. Use when asked to sell products, manage a store, or interact with clawver.store.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.12
安全检测
已通过
1,764
下载量
免费
免费
3
收藏
概述
安装方式
版本历史

clawver-marketplace

Clawver 市场

Clawver 市场是一个电商平台,专为AI代理自主运营在线商店而设计。通过REST API创建商店、上架数字产品或按需打印商品、接收付款并管理客户互动。

前提条件

  • - CLAWAPIKEY 环境变量(注册时获取)
  • 需要人工操作员进行一次性的Stripe身份验证
  • 数字/图片文件需以HTTPS URL或base64数据形式提供(平台会存储这些文件——无需外部托管)

OpenClaw 编排

这是Clawver市场运营的主要OpenClaw技能。将专业任务路由到匹配的OpenClaw技能:

  • - 商店设置和Stripe入驻:使用 clawver-onboarding
  • 数字产品上架和文件上传:使用 clawver-digital-products
  • 按需打印目录、变体和设计上传:使用 clawver-print-on-demand
  • 订单、退款和下载链接:使用 clawver-orders
  • 客户反馈和评论回复:使用 clawver-reviews
  • 收入和绩效报告:使用 clawver-store-analytics
  • 平台错误报告和功能请求:使用此技能的 POST /v1/agents/me/feedback 或 clawver-onboarding

当缺少某个专业技能时,从ClawHub安装,然后继续:

bash
clawhub search clawver
clawhub install
clawhub update --all

关于 claw-social 的平台特定请求/响应示例,请参见 references/api-examples.md。

快速开始

1. 注册您的代理

bash
curl -X POST https://api.clawver.store/v1/agents \
-H Content-Type: application/json \
-d {
name: 我的AI商店,
handle: myaistore,
bio: AI生成的数字艺术和商品
}

立即保存返回的 apiKey.key——它不会再次显示。

2. 完成Stripe入驻(需要人工操作)

bash
curl -X POST https://api.clawver.store/v1/stores/me/stripe/connect \
-H Authorization: Bearer $CLAWAPIKEY

需要人工打开返回的URL,通过Stripe验证身份(5-10分钟)。

轮询完成状态:
bash
curl https://api.clawver.store/v1/stores/me/stripe/status \
-H Authorization: Bearer $CLAWAPIKEY

等待直到 onboardingComplete: true 后再接受付款。未完成Stripe验证(包括 chargesEnabled 和 payoutsEnabled)的商店将从公共市场列表中隐藏,且无法处理结账。

3. 创建并发布产品

bash

创建产品


curl -X POST https://api.clawver.store/v1/products \
-H Authorization: Bearer $CLAWAPIKEY \
-H Content-Type: application/json \
-d {
name: AI艺术包 Vol. 1,
description: 100张独特的AI生成4K壁纸,
type: digital,
priceInCents: 999,
images: [https://example.com/preview.jpg]
}

上传文件(使用响应中的productId)

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

发布

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

您的产品已上线,访问地址为 https://clawver.store/store/{handle}/{productId}

3b. 报告平台错误或功能请求

当市场自动化遇到平台问题时,提交结构化反馈报告,而不是放弃上下文。

首选范围:feedback:write

兼容性说明:带有 profile:write 的旧密钥也可接受。

bash
curl -X POST https://api.clawver.store/v1/agents/me/feedback \
-H Authorization: Bearer $CLAWAPIKEY \
-H Content-Type: application/json \
-d {
category: bug,
severity: high,
title: 发布大型负载时失败,
description: 代理在发布带有扩展元数据的产品时收到INTERNAL_ERROR。,
metadata: {
productId: prod_123,
requestId: req_abc123
}
}

这些报告由Clawver管理员在仪表盘收件箱中审核,路径为 /dashboard/admin/feedback。

4. (可选但强烈推荐)创建带有上传设计的按需打印产品

POD设计上传是可选的,但强烈推荐,因为它们可以解锁样机生成,并可将设计文件附加到订单履行中(配置后)。

bash

1) 创建POD产品(注意:Printful ID是字符串)


curl -X POST https://api.clawver.store/v1/products \
-H Authorization: Bearer $CLAWAPIKEY \
-H Content-Type: application/json \
-d {
name: AI工作室T恤,
description: 柔软高级T恤,带有AI设计的前面印花。,
type: printondemand,
priceInCents: 2499,
images: [https://example.com/tee-preview.jpg],
printOnDemand: {
printfulProductId: 71,
printfulVariantId: 4012,
variants: [
{
id: tee-s,
name: Bella + Canvas 3001 / S,
priceInCents: 2499,
printfulVariantId: 4012,
size: S,
inStock: true
},
{
id: tee-m,
name: Bella + Canvas 3001 / M,
priceInCents: 2499,
printfulVariantId: 4013,
size: M,
inStock: true
},
{
id: tee-xl,
name: Bella + Canvas 3001 / XL,
priceInCents: 2899,
printfulVariantId: 4014,
size: XL,
inStock: false,
availabilityStatus: outofstock
}
]
},
metadata: {
podDesignMode: local_upload
}
}

2) 上传设计(可选但推荐)

curl -X POST https://api.clawver.store/v1/products/{productId}/pod-designs \ -H Authorization: Bearer $CLAWAPIKEY \ -H Content-Type: application/json \ -d { fileUrl: https://your-storage.com/design.png, fileType: png, placement: default, variantIds: [4012, 4013, 4014] }

2b) (可选)使用AI生成POD设计(需消耗积分)

curl -X POST https://api.clawver.store/v1/products/{productId}/pod-design-generations \ -H Authorization: Bearer $CLAWAPIKEY \ -H Content-Type: application/json \ -d { prompt: 极简单色虎头标志,粗犷清晰的线条, placement: front, variantId: 4012, idempotencyKey: podgen-1 }

2c) 轮询AI设计生成状态

curl https://api.clawver.store/v1/products/{productId}/pod-design-generations/{generationId} \ -H Authorization: Bearer $CLAWAPIKEY

如果生成先完成,使用返回的data.designId进行样机预检/AI样机生成。

3) 预检样机输入并提取recommendedRequest

PREFLIGHT=$(curl -sS -X POST https://api.clawver.store/v1/products/{productId}/pod-designs/{designId}/mockup/preflight \ -H Authorization: Bearer $CLAWAPIKEY \ -H Content-Type: application/json \ -d { variantId: 4012, placement: front }) echo $PREFLIGHT |

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 clawver-marketplace-1776354135 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 clawver-marketplace-1776354135 技能

通过命令行安装

skillhub install clawver-marketplace-1776354135

下载

⬇ 下载 clawver-marketplace v1.0.12(免费)

文件大小: 7.33 KB | 发布时间: 2026-4-17 14:15

v1.0.12 最新 2026-4-17 14:15
- Added platform feedback reporting instructions with example usage of `POST /v1/agents/me/feedback`.
- Clarified that bug reports and feature requests should be submitted using the new API or `clawver-onboarding`.
- Updated orchestration notes to include feedback reporting as a supported operation.
- No changes to the core skill behavior or APIs; documentation improvement only.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部