Clawd market
Skill csmoove530/clawd-market
Terminal-native marketplace for Claude Code skills - Built for vibe coders, powered by x402 + USDC on Base L2
npx -y skills add csmoove530/clawd-marketAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
4.9 KB, ~1.3k tokens by cl100k_base, as published. Nobody here has run it
Creating and Publishing a Skill to CLAWD Market
This guide shows how to create a Claude Code skill and publish it to CLAWD Market.
Example Skill Structure
my-awesome-skill/
├── SKILL.md # Required: skill metadata
├── README.md # Optional: documentation
├── src/
│ └── index.ts # Your skill code
└── package.json # Optional: if you need dependencies
1. Create SKILL.md
---
name: my-awesome-skill
version: 1.0.0
description: Generates awesome boilerplate code for any project type
author: Your Name
tags: codegen, boilerplate, productivity
---
# My Awesome Skill
Generates production-ready boilerplate code for any project type.
## Usage
Just tell Claude what kind of project you want to create:
- "Create a React app with TypeScript and Tailwind"
- "Generate an Express API with authentication"
- "Bootstrap a Python Flask project"
## Features
- 🚀 Instant project scaffolding
- 📦 Dependency management
- 🔒 Security best practices
- 📝 Comprehensive documentation
2. Add Your Code (Optional)
If your skill includes code to execute:
// src/index.ts
export function generateBoilerplate(projectType: string) {
// Your skill logic here
return {
files: [...],
dependencies: [...],
};
}
3. Create README.md
# My Awesome Skill
Detailed documentation for users who want to learn more.
## Installation
Available via CLAWD Market:
`I need the my-awesome-skill`
## Examples
...
## License
MIT
4. Package Your Skill
# Create a ZIP file of your skill
cd my-awesome-skill
zip -r my-awesome-skill.zip .
# Or use tar
tar -czf my-awesome-skill.tar.gz .
5. Publish to CLAWD Market
Via Claude Code:
User: /clawd publish ./my-awesome-skill.zip --price 10
Claude: Publishing my-awesome-skill to CLAWD Market...
Parsing SKILL.md...
├── Name: my-awesome-skill
├── Description: "Generates awesome boilerplate code..."
├── Tags: codegen, boilerplate, productivity
└── Version: 1.0.0
Validating files...
├── SKILL.md ✓
├── README.md ✓
├── src/index.ts ✓
└── Total size: 45 KB
Payment setup...
├── x402 wallet: 0x7a3f...
└── Price: $10.00 USDC (you receive: $9.90)
✓ Skill published successfully!
Slug: my-awesome-skill
URL: clawdmarket.com/skills/my-awesome-skill
Start earning! You'll receive 99% ($9.90) per sale.
Via API:
# First, base64 encode your ZIP
BASE64_FILE=$(base64 -i my-awesome-skill.zip)
# Then publish
curl -X POST http://localhost:3000/api/v1/skills \
-H "Content-Type: application/json" \
-d '{
"slug": "my-awesome-skill",
"name": "My Awesome Skill",
"description": "Generates awesome boilerplate code for any project type",
"tags": ["codegen", "boilerplate", "productivity"],
"version": "1.0.0",
"priceUSDC": "10.00",
"sellerWallet": "0xYourWalletAddress",
"fileData": "'$BASE64_FILE'"
}'
6. Track Your Sales
User: /clawd analytics
Claude: Analytics for 0x7a3f...
Revenue: $297.00 USDC (30 sales)
Skills: 1
• my-awesome-skill - $10.00 (30 sales, 12 reviews)
⭐ 4.9 average rating
Best Practices
Pricing
- $1-3: Simple utilities, formatters, helpers
- $5-10: Specialized workflows, integrations
- $15-25: Comprehensive toolkits, frameworks
- $30+: Enterprise-grade, domain-specific expertise
Description
- Clearly state what problem it solves
- Include concrete examples
- Mention any prerequisites
- Highlight unique features
Tags
Use relevant, searchable tags:
- Language/framework:
typescript,python,react - Category:
testing,deployment,documentation - Function:
codegen,automation,analysis
Versioning
Follow semantic versioning (major.minor.patch):
1.0.0: Initial release1.1.0: New feature (backwards compatible)1.0.1: Bug fix2.0.0: Breaking change
Updates
Buyers get free updates. To release an update:
# Update version in SKILL.md
version: 1.1.0
# Re-package and publish
zip -r my-awesome-skill-v1.1.0.zip .
/clawd publish ./my-awesome-skill-v1.1.0.zip --update
Marketing Your Skill
Get Reviews
- Encourage users to review after purchase
- Respond to feedback
- Iterate based on user needs
Build Reputation
- Maintain multiple high-quality skills
- Keep skills updated
- Provide great documentation
Social Proof
- Share on Twitter/Discord with
/clawdtag - Write blog posts about your skill
- Create demo videos
Revenue Example
30 sales/month at $10 = $300 gross
- You receive: $297 (99%)
- Platform fee: $3 (1%)
100 sales/month at $10 = $1,000 gross
- You receive: $990
- Platform fee: $10
Support
Questions about publishing? Join our Discord or open an issue!