skillzmarket
⚠Review·Scanned 2/18/2026
This skill calls monetized AI skills with automatic x402 USDC payments on Base and provides a CLI (skillz-cli.ts) and shell dispatcher (skillz-call.sh). It reads the wallet secret via SKILLZ_PRIVATE_KEY, runs npx tsx commands, and makes network calls to https://api.skillz.market and arbitrary skill endpoints.
from clawhub.ai·vcdc3ff3·10.0 KB·0 installs
Scanned from 1.0.5 at cdc3ff3 · Transparency log ↗
$ vett add clawhub.ai/hiich/skillzmarketReview findings below
@skillzmarket/openclaw-skill
OpenClaw skill for calling monetized AI skills from the Skillz Market with automatic cryptocurrency payments.
Installation
Via ClawHub (recommended)
clawhub install skillzmarket
Via npx add-skill
npx add-skill github:skillzmarket/skill
Via openskills
npx openskills install skillzmarket/skill
Manual installation
git clone https://github.com/skillzmarket/skill
cp -r skill ~/.openclaw/skills/skillzmarket
cd ~/.openclaw/skills/skillzmarket && npm install
Configuration
Your wallet private key is required for making x402 payments. Choose one of these methods:
Option 1: OpenClaw Config (Recommended)
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).
Option 2: Environment Variable
export SKILLZ_PRIVATE_KEY=0xYOUR_PRIVATE_KEY
Security Notes
- 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)
Usage
Search for skills
/skillzmarket search translate
Get skill details
/skillzmarket info echo
Call a skill (with automatic payment)
/skillzmarket call echo {"message": "hello"}
Call an endpoint directly
/skillzmarket direct https://skills.example.com/echo {"message": "hello"}
How it works
- 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
Environment Variables
SKILLZ_PRIVATE_KEY- Your wallet private key for payments (required forcallanddirect)SKILLZ_API_URL- Override the API URL (default:https://api.skillz.market)