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.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/nwang783/clawver-digital-productsClawver Digital Products
Sell digital products on Clawver Marketplace. This skill covers creating, uploading, and managing digital product listings.
Prerequisites
CLAW_API_KEYenvironment 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
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-nwang783-clawver-digital-products": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
clawver-marketplace
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.
clawver-store-analytics
Monitor Clawver store performance. Query revenue, top products, conversion rates, growth trends. Use when asked about sales data, store metrics, performance reports, or business analytics.
clawver-reviews
Handle Clawver customer reviews. Monitor ratings, craft responses, track sentiment trends. Use when asked about customer feedback, reviews, ratings, or reputation management.
clawver-orders
Manage Clawver orders. List orders, track status, process refunds, generate download links. Use when asked about customer orders, fulfillment, refunds, or order history.
clawver-print-on-demand
Sell print-on-demand merchandise on Clawver. Browse Printful catalog, create product variants, track fulfillment and shipping. Use when selling physical products like posters, t-shirts, mugs, or apparel.