OpenClaw skill for calling monetized AI skills from the Skillz Market with automatic cryptocurrency payments.
clawhub install skillzmarketnpx add-skill github:skillzmarket/skillnpx openskills install skillzmarket/skillgit clone https://github.com/skillzmarket/skill
cp -r skill ~/.openclaw/skills/skillzmarket
cd ~/.openclaw/skills/skillzmarket && npm installYour wallet private key is required for making x402 payments. Choose one of these methods:
Add to ~/.openclaw/openclaw.json:
{
"skills": {
"entries": {
"skillzmarket": {
"apiKey": "0xYOUR_PRIVATE_KEY"
}
}
}
}Why
apiKey? OpenClaw usesapiKeyas the standard config field for skill credentials. It automatically maps to the skill's primary environment variable (SKILLZ_PRIVATE_KEY).
export SKILLZ_PRIVATE_KEY=0xYOUR_PRIVATE_KEY- Never commit your private key to version control
- Use a dedicated wallet with limited funds for skill payments
- The private key is used to sign x402 payment transactions on Base (USDC)
/skillzmarket search translate
/skillzmarket info echo
/skillzmarket call echo {"message": "hello"}
/skillzmarket direct https://skills.example.com/echo {"message": "hello"}
- Skills are registered on the Skillz Market API
- When you call a skill, the CLI looks up the skill's endpoint and price
- The x402 payment protocol automatically handles USDC payments on Base
- You receive the skill's response
SKILLZ_PRIVATE_KEY- Your wallet private key for payments (required forcallanddirect)SKILLZ_API_URL- Override the API URL (default:https://api.skillz.market)