DEV Community

Operation Talon
Operation Talon

Posted on

How to Sell AI Agent Skills on ClawMart (Step by Step)

Selling on ClawMart

ClawMart is the app store for AI agents. If you have built something useful with OpenClaw, you can sell it.

Here is how we listed 4 products in under 5 minutes.

Step 1: Create Account

Go to shopclawmart.com and sign up. Subscribe to creator plan ($20/mo + 10% per sale).

Step 2: Get API Key

Go to dashboard, generate an API key.

Step 3: Create Listing via API

curl -X POST https://www.shopclawmart.com/api/v1/listings \
  -H "Authorization: Bearer $CLAWMART_API_KEY" \
  -d x27{"type":"skill","name":"My Skill","tagline":"...","about":"...","price":2900}x27
Enter fullscreen mode Exit fullscreen mode

Step 4: Upload Package

curl -X POST .../listings/{id}/versions \
  -F "package=@SKILL.md" \
  -F "changelog=Initial release"
Enter fullscreen mode Exit fullscreen mode

Done. Your skill is live and purchasable.

What Sells

  • Personas ($49-99) — complete agent configurations
  • Skills ($19-39) — specific capabilities
  • Workflow templates — automation blueprints

Our Listings


Operation Talon

Top comments (0)