SkillzMarket
by @hiich
Search and call monetized AI skills from Skillz Market with automatic USDC payments on Base. Use when the user wants to find paid AI services, call external skills with cryptocurrency payments, or integrate with the Skillz Market ecosystem.
clawhub install skillzmarketπ About This Skill
name: skillzmarket description: Search and call monetized AI skills from Skillz Market with automatic USDC payments on Base. Use when the user wants to find paid AI services, call external skills with cryptocurrency payments, or integrate with the Skillz Market ecosystem. metadata: {"openclaw":{"requires":{"bins":["npx"],"env":["SKILLZ_PRIVATE_KEY"]},"primaryEnv":"SKILLZ_PRIVATE_KEY"}}
Skillz Market
Search and call monetized AI skills with automatic cryptocurrency payments via x402.
Quick Start
List all available skills:
npx tsx {baseDir}/skillz-cli.ts list
Search for skills:
npx tsx {baseDir}/skillz-cli.ts search "echo"
Get skill details:
npx tsx {baseDir}/skillz-cli.ts info "echo-service"
Call a skill (requires SKILLZ_PRIVATE_KEY):
npx tsx {baseDir}/skillz-cli.ts call "echo-service" '{"message":"hello"}'
Commands
list [--verified] - List all available skills (optionally filter by verified only)search - Search for skills by keywordinfo - Get skill details by slugcall - Call a skill with automatic x402 paymentdirect - Call any x402-enabled endpoint directlyConfiguration
Your wallet private key is required for x402 payments. Set it in OpenClaw config (~/.openclaw/openclaw.json):
{
"skills": {
"entries": {
"skillzmarket": {
"apiKey": "0xYOUR_PRIVATE_KEY"
}
}
}
}
> Note: OpenClaw uses apiKey as the standard config field for skill credentials. This maps to the SKILLZ_PRIVATE_KEY environment variable that the skill uses internally.
Alternatively, set the environment variable directly:
export SKILLZ_PRIVATE_KEY=0x...
Environment Variables
SKILLZ_PRIVATE_KEY - Wallet private key for x402 paymentsSKILLZ_API_URL - API endpoint (default: https://api.skillz.market)π‘ Examples
List all available skills:
npx tsx {baseDir}/skillz-cli.ts list
Search for skills:
npx tsx {baseDir}/skillz-cli.ts search "echo"
Get skill details:
npx tsx {baseDir}/skillz-cli.ts info "echo-service"
Call a skill (requires SKILLZ_PRIVATE_KEY):
npx tsx {baseDir}/skillz-cli.ts call "echo-service" '{"message":"hello"}'
βοΈ Configuration
Your wallet private key is required for x402 payments. Set it in OpenClaw config (~/.openclaw/openclaw.json):
{
"skills": {
"entries": {
"skillzmarket": {
"apiKey": "0xYOUR_PRIVATE_KEY"
}
}
}
}
> Note: OpenClaw uses apiKey as the standard config field for skill credentials. This maps to the SKILLZ_PRIVATE_KEY environment variable that the skill uses internally.
Alternatively, set the environment variable directly:
export SKILLZ_PRIVATE_KEY=0x...